var WasmJS = function(Module) { Module = Module || {}; var Module; if (!Module) Module = (typeof WasmJS !== "undefined" ? WasmJS : null) || {}; var moduleOverrides = {}; for (var key in Module) { if (Module.hasOwnProperty(key)) { moduleOverrides[key] = Module[key]; } } var ENVIRONMENT_IS_WEB = false; var ENVIRONMENT_IS_WORKER = false; var ENVIRONMENT_IS_NODE = false; var ENVIRONMENT_IS_SHELL = false; 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) { if (!Module["print"]) Module["print"] = console.log; if (!Module["printErr"]) Module["printErr"] = console.warn; var nodeFS; var nodePath; Module["read"] = function read(filename, binary) { if (!nodeFS) nodeFS = require("fs"); if (!nodePath) nodePath = require("path"); filename = nodePath["normalize"](filename); var ret = nodeFS["readFileSync"](filename); return binary ? ret : ret.toString(); }; Module["readBinary"] = function readBinary(filename) { var ret = Module["read"](filename, true); if (!ret.buffer) { ret = new Uint8Array(ret); } assert(ret.buffer); return ret; }; Module["load"] = function load(f) { globalEval(read(f)); }; if (!Module["thisProgram"]) { if (process["argv"].length > 1) { Module["thisProgram"] = process["argv"][1].replace(/\\/g, "/"); } else { Module["thisProgram"] = "unknown-program"; } } Module["arguments"] = process["argv"].slice(2); if (typeof module !== "undefined") { module["exports"] = Module; } process["on"]("uncaughtException", (function(ex) { if (!(ex instanceof ExitStatus)) { throw ex; } })); Module["inspect"] = (function() { return "[Emscripten Module object]"; }); } else if (ENVIRONMENT_IS_SHELL) { if (!Module["print"]) Module["print"] = print; if (typeof printErr != "undefined") Module["printErr"] = printErr; if (typeof read != "undefined") { Module["read"] = read; } else { Module["read"] = function read() { throw "no read() available (jsc?)"; }; } Module["readBinary"] = function readBinary(f) { if (typeof readbuffer === "function") { return new Uint8Array(readbuffer(f)); } var data = read(f, "binary"); assert(typeof data === "object"); return data; }; if (typeof scriptArgs != "undefined") { Module["arguments"] = scriptArgs; } else if (typeof arguments != "undefined") { Module["arguments"] = arguments; } } else if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { Module["read"] = function read(url) { var xhr = new XMLHttpRequest; xhr.open("GET", url, false); xhr.send(null); return xhr.responseText; }; 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) { 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) { console.log(x); }; if (!Module["printErr"]) Module["printErr"] = function printErr(x) { console.warn(x); }; } else { var TRY_USE_DUMP = false; if (!Module["print"]) Module["print"] = TRY_USE_DUMP && typeof dump !== "undefined" ? (function(x) { dump(x); }) : (function(x) {}); } if (ENVIRONMENT_IS_WORKER) { Module["load"] = importScripts; } if (typeof Module["setWindowTitle"] === "undefined") { Module["setWindowTitle"] = (function(title) { document.title = title; }); } } else { throw "Unknown runtime environment. Where are we?"; } function globalEval(x) { eval.call(null, x); } if (!Module["load"] && Module["read"]) { Module["load"] = function load(f) { globalEval(Module["read"](f)); }; } if (!Module["print"]) { Module["print"] = (function() {}); } if (!Module["printErr"]) { Module["printErr"] = Module["print"]; } if (!Module["arguments"]) { Module["arguments"] = []; } if (!Module["thisProgram"]) { Module["thisProgram"] = "./this.program"; } Module.print = Module["print"]; Module.printErr = Module["printErr"]; Module["preRun"] = []; Module["postRun"] = []; for (var key in moduleOverrides) { if (moduleOverrides.hasOwnProperty(key)) { Module[key] = moduleOverrides[key]; } } moduleOverrides = undefined; var Runtime = { setTempRet0: (function(value) { tempRet0 = value; }), getTempRet0: (function() { return tempRet0; }), stackSave: (function() { return STACKTOP; }), stackRestore: (function(stackTop) { STACKTOP = stackTop; }), getNativeTypeSize: (function(type) { switch (type) { case "i1": case "i8": return 1; case "i16": return 2; case "i32": return 4; case "i64": return 8; case "float": return 4; case "double": return 8; default: { if (type[type.length - 1] === "*") { return Runtime.QUANTUM_SIZE; } else if (type[0] === "i") { var bits = parseInt(type.substr(1)); assert(bits % 8 === 0); return bits / 8; } else { return 0; } } } }), getNativeFieldSize: (function(type) { return Math.max(Runtime.getNativeTypeSize(type), Runtime.QUANTUM_SIZE); }), STACK_ALIGN: 16, prepVararg: (function(ptr, type) { if (type === "double" || type === "i64") { if (ptr & 7) { assert((ptr & 7) === 4); ptr += 4; } } else { assert((ptr & 3) === 0); } return ptr; }), getAlignSize: (function(type, size, vararg) { if (!vararg && (type == "i64" || type == "double")) return 8; if (!type) return Math.min(size, 8); return Math.min(size || (type ? Runtime.getNativeFieldSize(type) : 0), Runtime.QUANTUM_SIZE); }), dynCall: (function(sig, ptr, args) { if (args && args.length) { return Module["dynCall_" + sig].apply(null, [ ptr ].concat(args)); } else { return Module["dynCall_" + sig].call(null, ptr); } }), functionPointers: [], addFunction: (function(func) { for (var i = 0; i < Runtime.functionPointers.length; i++) { if (!Runtime.functionPointers[i]) { Runtime.functionPointers[i] = func; return 2 * (1 + i); } } throw "Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS."; }), removeFunction: (function(index) { Runtime.functionPointers[(index - 2) / 2] = null; }), warnOnce: (function(text) { if (!Runtime.warnOnce.shown) Runtime.warnOnce.shown = {}; if (!Runtime.warnOnce.shown[text]) { Runtime.warnOnce.shown[text] = 1; Module.printErr(text); } }), funcWrappers: {}, getFuncWrapper: (function(func, sig) { assert(sig); if (!Runtime.funcWrappers[sig]) { Runtime.funcWrappers[sig] = {}; } var sigCache = Runtime.funcWrappers[sig]; if (!sigCache[func]) { 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 { sigCache[func] = function dynCall_wrapper() { return Runtime.dynCall(sig, func, Array.prototype.slice.call(arguments)); }; } } return sigCache[func]; }), getCompilerSetting: (function(name) { throw "You must build with -s RETAIN_COMPILER_SETTINGS=1 for Runtime.getCompilerSetting or emscripten_get_compiler_setting to work"; }), 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; }), 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 : +(low >>> 0) + +(high | 0) * +4294967296; return ret; }), GLOBAL_BASE: 8, QUANTUM_SIZE: 4, __dummy__: 0 }; Module["Runtime"] = Runtime; var ABORT = false; var EXITSTATUS = 0; function assert(condition, text) { if (!condition) { abort("Assertion failed: " + text); } } function getCFunc(ident) { var func = Module["_" + ident]; if (!func) { try { func = eval("_" + ident); } catch (e) {} } assert(func, "Cannot call unknown function " + ident + " (perhaps LLVM optimizations or closure removed it?)"); return func; } var cwrap, ccall; ((function() { var JSfuncs = { "stackSave": (function() { Runtime.stackSave(); }), "stackRestore": (function() { Runtime.stackRestore(); }), "arrayToC": (function(arr) { var ret = Runtime.stackAlloc(arr.length); writeArrayToMemory(arr, ret); return ret; }), "stringToC": (function(str) { var ret = 0; if (str !== null && str !== undefined && str !== 0) { ret = Runtime.stackAlloc((str.length << 2) + 1); writeStringToMemory(str, ret); } return ret; }) }; var toC = { "string": JSfuncs["stringToC"], "array": JSfuncs["arrayToC"] }; ccall = function ccallFunc(ident, returnType, argTypes, args, opts) { var func = getCFunc(ident); var cArgs = []; var stack = 0; if (args) { for (var i = 0; i < args.length; i++) { var converter = toC[argTypes[i]]; if (converter) { if (stack === 0) stack = Runtime.stackSave(); cArgs[i] = converter(args[i]); } else { cArgs[i] = args[i]; } } } var ret = func.apply(null, cArgs); if (returnType === "string") ret = Pointer_stringify(ret); if (stack !== 0) { if (opts && opts.async) { EmterpreterAsync.asyncFinalizers.push((function() { Runtime.stackRestore(stack); })); return; } Runtime.stackRestore(stack); } return ret; }; var sourceRegex = /^function\s*[a-zA-Z$_0-9]*\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; function parseJSFunc(jsfunc) { var parsed = jsfunc.toString().match(sourceRegex).slice(1); return { arguments: parsed[0], body: parsed[1], returnValue: parsed[2] }; } var JSsource = null; function ensureJSsource() { if (!JSsource) { JSsource = {}; for (var fun in JSfuncs) { if (JSfuncs.hasOwnProperty(fun)) { JSsource[fun] = parseJSFunc(JSfuncs[fun]); } } } } cwrap = function cwrap(ident, returnType, argTypes) { argTypes = argTypes || []; var cfunc = getCFunc(ident); var numericArgs = argTypes.every((function(type) { return type === "number"; })); var numericRet = returnType !== "string"; if (numericRet && numericArgs) { return cfunc; } var argNames = argTypes.map((function(x, i) { return "$" + i; })); var funcstr = "(function(" + argNames.join(",") + ") {"; var nargs = argTypes.length; if (!numericArgs) { ensureJSsource(); funcstr += "var stack = " + JSsource["stackSave"].body + ";"; for (var i = 0; i < nargs; i++) { var arg = argNames[i], type = argTypes[i]; if (type === "number") continue; var convertCode = JSsource[type + "ToC"]; funcstr += "var " + convertCode.arguments + " = " + arg + ";"; funcstr += convertCode.body + ";"; funcstr += arg + "=(" + convertCode.returnValue + ");"; } } var cfuncname = parseJSFunc((function() { return cfunc; })).returnValue; funcstr += "var ret = " + cfuncname + "(" + argNames.join(",") + ");"; if (!numericRet) { var strgfy = parseJSFunc((function() { return Pointer_stringify; })).returnValue; funcstr += "ret = " + strgfy + "(ret);"; } if (!numericArgs) { ensureJSsource(); funcstr += JSsource["stackRestore"].body.replace("()", "(stack)") + ";"; } funcstr += "return ret})"; return eval(funcstr); }; }))(); Module["ccall"] = ccall; Module["cwrap"] = cwrap; function setValue(ptr, value, type, noSafe) { type = type || "i8"; if (type.charAt(type.length - 1) === "*") type = "i32"; switch (type) { case "i1": HEAP8[ptr >> 0] = value; break; case "i8": HEAP8[ptr >> 0] = value; break; case "i16": HEAP16[ptr >> 1] = value; break; case "i32": HEAP32[ptr >> 2] = value; break; case "i64": tempI64 = [ value >>> 0, (tempDouble = value, +Math_abs(tempDouble) >= +1 ? tempDouble > +0 ? (Math_min(+Math_floor(tempDouble / +4294967296), +4294967295) | 0) >>> 0 : ~~+Math_ceil((tempDouble - +(~~tempDouble >>> 0)) / +4294967296) >>> 0 : 0) ], HEAP32[ptr >> 2] = tempI64[0], HEAP32[ptr + 4 >> 2] = tempI64[1]; break; case "float": HEAPF32[ptr >> 2] = value; break; case "double": HEAPF64[ptr >> 3] = value; break; default: abort("invalid type for setValue: " + type); } } Module["setValue"] = setValue; function getValue(ptr, type, noSafe) { type = type || "i8"; if (type.charAt(type.length - 1) === "*") type = "i32"; switch (type) { case "i1": return HEAP8[ptr >> 0]; case "i8": return HEAP8[ptr >> 0]; case "i16": return HEAP16[ptr >> 1]; case "i32": return HEAP32[ptr >> 2]; case "i64": return HEAP32[ptr >> 2]; case "float": return HEAPF32[ptr >> 2]; case "double": return HEAPF64[ptr >> 3]; default: abort("invalid type for setValue: " + type); } return null; } Module["getValue"] = getValue; var ALLOC_NORMAL = 0; var ALLOC_STACK = 1; var ALLOC_STATIC = 2; var ALLOC_DYNAMIC = 3; var ALLOC_NONE = 4; Module["ALLOC_NORMAL"] = ALLOC_NORMAL; Module["ALLOC_STACK"] = ALLOC_STACK; Module["ALLOC_STATIC"] = ALLOC_STATIC; Module["ALLOC_DYNAMIC"] = ALLOC_DYNAMIC; Module["ALLOC_NONE"] = ALLOC_NONE; function allocate(slab, types, allocator, ptr) { var zeroinit, size; if (typeof slab === "number") { zeroinit = true; size = slab; } else { zeroinit = false; size = slab.length; } var singleType = typeof types === "string" ? types : null; var ret; if (allocator == ALLOC_NONE) { ret = ptr; } else { 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) { var ptr = ret, stop; assert((ret & 3) == 0); stop = ret + (size & ~3); for (; ptr < stop; ptr += 4) { HEAP32[ptr >> 2] = 0; } stop = ret + size; while (ptr < stop) { HEAP8[ptr++ >> 0] = 0; } return ret; } if (singleType === "i8") { if (slab.subarray || slab.slice) { HEAPU8.set(slab, ret); } else { HEAPU8.set(new Uint8Array(slab), ret); } return ret; } var i = 0, type, typeSize, previousType; while (i < size) { var curr = slab[i]; if (typeof curr === "function") { curr = Runtime.getFunctionIndex(curr); } type = singleType || types[i]; if (type === 0) { i++; continue; } if (type == "i64") type = "i32"; setValue(ret + i, curr, type); if (previousType !== type) { typeSize = Runtime.getNativeTypeSize(type); previousType = type; } i += typeSize; } return ret; } Module["allocate"] = allocate; function getMemory(size) { if (!staticSealed) return Runtime.staticAlloc(size); if (typeof _sbrk !== "undefined" && !_sbrk.called || !runtimeInitialized) return Runtime.dynamicAlloc(size); return _malloc(size); } Module["getMemory"] = getMemory; function Pointer_stringify(ptr, length) { if (length === 0 || !ptr) return ""; var hasUtf = 0; var t; var i = 0; while (1) { t = HEAPU8[ptr + i >> 0]; hasUtf |= t; if (t == 0 && !length) break; i++; if (length && i == length) break; } if (!length) length = i; var ret = ""; if (hasUtf < 128) { var MAX_CHUNK = 1024; var curr; while (length > 0) { curr = String.fromCharCode.apply(String, HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK))); ret = ret ? ret + curr : curr; ptr += MAX_CHUNK; length -= MAX_CHUNK; } return ret; } return Module["UTF8ToString"](ptr); } Module["Pointer_stringify"] = Pointer_stringify; function AsciiToString(ptr) { var str = ""; while (1) { var ch = HEAP8[ptr++ >> 0]; if (!ch) return str; str += String.fromCharCode(ch); } } Module["AsciiToString"] = AsciiToString; function stringToAscii(str, outPtr) { return writeAsciiToMemory(str, outPtr, false); } Module["stringToAscii"] = stringToAscii; var UTF8Decoder = typeof TextDecoder !== "undefined" ? new TextDecoder("utf8") : undefined; function UTF8ArrayToString(u8Array, idx) { var endPtr = idx; while (u8Array[endPtr]) ++endPtr; 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) { u0 = u8Array[idx++]; if (!u0) return str; if (!(u0 & 128)) { str += String.fromCharCode(u0); continue; } u1 = u8Array[idx++] & 63; if ((u0 & 224) == 192) { str += String.fromCharCode((u0 & 31) << 6 | u1); continue; } u2 = u8Array[idx++] & 63; if ((u0 & 240) == 224) { u0 = (u0 & 15) << 12 | u1 << 6 | u2; } else { u3 = u8Array[idx++] & 63; if ((u0 & 248) == 240) { u0 = (u0 & 7) << 18 | u1 << 12 | u2 << 6 | u3; } else { u4 = u8Array[idx++] & 63; if ((u0 & 252) == 248) { 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 < 65536) { str += String.fromCharCode(u0); } else { var ch = u0 - 65536; str += String.fromCharCode(55296 | ch >> 10, 56320 | ch & 1023); } } } } Module["UTF8ArrayToString"] = UTF8ArrayToString; function UTF8ToString(ptr) { return UTF8ArrayToString(HEAPU8, ptr); } Module["UTF8ToString"] = UTF8ToString; function stringToUTF8Array(str, outU8Array, outIdx, maxBytesToWrite) { if (!(maxBytesToWrite > 0)) return 0; var startIdx = outIdx; var endIdx = outIdx + maxBytesToWrite - 1; for (var i = 0; i < str.length; ++i) { var u = str.charCodeAt(i); if (u >= 55296 && u <= 57343) u = 65536 + ((u & 1023) << 10) | str.charCodeAt(++i) & 1023; if (u <= 127) { if (outIdx >= endIdx) break; outU8Array[outIdx++] = u; } else if (u <= 2047) { if (outIdx + 1 >= endIdx) break; outU8Array[outIdx++] = 192 | u >> 6; outU8Array[outIdx++] = 128 | u & 63; } else if (u <= 65535) { if (outIdx + 2 >= endIdx) break; outU8Array[outIdx++] = 224 | u >> 12; outU8Array[outIdx++] = 128 | u >> 6 & 63; outU8Array[outIdx++] = 128 | u & 63; } else if (u <= 2097151) { if (outIdx + 3 >= endIdx) break; outU8Array[outIdx++] = 240 | u >> 18; outU8Array[outIdx++] = 128 | u >> 12 & 63; outU8Array[outIdx++] = 128 | u >> 6 & 63; outU8Array[outIdx++] = 128 | u & 63; } else if (u <= 67108863) { if (outIdx + 4 >= endIdx) break; outU8Array[outIdx++] = 248 | u >> 24; outU8Array[outIdx++] = 128 | u >> 18 & 63; outU8Array[outIdx++] = 128 | u >> 12 & 63; outU8Array[outIdx++] = 128 | u >> 6 & 63; outU8Array[outIdx++] = 128 | u & 63; } else { if (outIdx + 5 >= endIdx) break; outU8Array[outIdx++] = 252 | u >> 30; outU8Array[outIdx++] = 128 | u >> 24 & 63; outU8Array[outIdx++] = 128 | u >> 18 & 63; outU8Array[outIdx++] = 128 | u >> 12 & 63; outU8Array[outIdx++] = 128 | u >> 6 & 63; outU8Array[outIdx++] = 128 | u & 63; } } outU8Array[outIdx] = 0; return outIdx - startIdx; } Module["stringToUTF8Array"] = stringToUTF8Array; function stringToUTF8(str, outPtr, maxBytesToWrite) { return stringToUTF8Array(str, HEAPU8, outPtr, maxBytesToWrite); } Module["stringToUTF8"] = stringToUTF8; function lengthBytesUTF8(str) { var len = 0; for (var i = 0; i < str.length; ++i) { var u = str.charCodeAt(i); if (u >= 55296 && u <= 57343) u = 65536 + ((u & 1023) << 10) | str.charCodeAt(++i) & 1023; if (u <= 127) { ++len; } else if (u <= 2047) { len += 2; } else if (u <= 65535) { len += 3; } else if (u <= 2097151) { len += 4; } else if (u <= 67108863) { len += 5; } else { len += 6; } } return len; } Module["lengthBytesUTF8"] = lengthBytesUTF8; var UTF16Decoder = typeof TextDecoder !== "undefined" ? new TextDecoder("utf-16le") : undefined; function demangle(func) { var hasLibcxxabi = !!Module["___cxa_demangle"]; if (hasLibcxxabi) { try { var buf = _malloc(func.length); writeStringToMemory(func.substr(1), buf); var status = _malloc(4); var ret = Module["___cxa_demangle"](buf, 0, 0, status); if (getValue(status, "i32") === 0 && ret) { return Pointer_stringify(ret); } } catch (e) {} finally { if (buf) _free(buf); if (status) _free(status); if (ret) _free(ret); } return func; } 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 + "]"; })); } function jsStackTrace() { var err = new Error; if (!err.stack) { try { throw new Error(0); } catch (e) { err = e; } if (!err.stack) { return "(no stack trace available)"; } } return err.stack.toString(); } function stackTrace() { var js = jsStackTrace(); if (Module["extraStackTrace"]) js += "\n" + Module["extraStackTrace"](); return demangleAll(js); } Module["stackTrace"] = stackTrace; var PAGE_SIZE = 4096; function alignMemoryPage(x) { if (x % 4096 > 0) { x += 4096 - x % 4096; } return x; } var HEAP; var buffer; var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, 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 = 0, STATICTOP = 0, staticSealed = false; var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; var DYNAMIC_BASE = 0, DYNAMICTOP = 0; if (!Module["reallocBuffer"]) Module["reallocBuffer"] = (function(size) { var ret; try { if (ArrayBuffer.transfer) { ret = ArrayBuffer.transfer(buffer, size); } else { var oldHEAP8 = HEAP8; ret = new ArrayBuffer(size); var temp = new Int8Array(ret); temp.set(oldHEAP8); } } catch (e) { return false; } var success = _emscripten_replace_memory(ret); if (!success) return false; return ret; }); function enlargeMemory() { var LIMIT = Math.pow(2, 31); if (DYNAMICTOP >= LIMIT) return false; while (TOTAL_MEMORY <= DYNAMICTOP) { if (TOTAL_MEMORY < LIMIT / 2) { TOTAL_MEMORY = alignMemoryPage(2 * TOTAL_MEMORY); } else { var last = TOTAL_MEMORY; TOTAL_MEMORY = alignMemoryPage((3 * TOTAL_MEMORY + LIMIT) / 4); if (TOTAL_MEMORY <= last) return false; } } TOTAL_MEMORY = Math.max(TOTAL_MEMORY, 16 * 1024 * 1024); if (TOTAL_MEMORY >= LIMIT) return false; var replacement = Module["reallocBuffer"](TOTAL_MEMORY); if (!replacement) return false; updateGlobalBuffer(replacement); updateGlobalBufferViews(); return true; } var byteLength; try { byteLength = Function.prototype.call.bind(Object.getOwnPropertyDescriptor(ArrayBuffer.prototype, "byteLength").get); byteLength(new ArrayBuffer(4)); } catch (e) { byteLength = (function(buffer) { return buffer.byteLength; }); } 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; } } totalMemory = Math.max(totalMemory, 16 * 1024 * 1024); if (totalMemory !== TOTAL_MEMORY) { TOTAL_MEMORY = totalMemory; } if (Module["buffer"]) { buffer = Module["buffer"]; } else { buffer = new ArrayBuffer(TOTAL_MEMORY); } updateGlobalBufferViews(); HEAP32[0] = 1668509029; HEAP16[1] = 25459; if (HEAPU8[2] !== 115 || HEAPU8[3] !== 99) throw "Runtime error: expected the system to be little-endian!"; Module["HEAP"] = HEAP; Module["buffer"] = buffer; Module["HEAP8"] = HEAP8; Module["HEAP16"] = HEAP16; Module["HEAP32"] = HEAP32; Module["HEAPU8"] = HEAPU8; Module["HEAPU16"] = HEAPU16; Module["HEAPU32"] = HEAPU32; Module["HEAPF32"] = HEAPF32; Module["HEAPF64"] = HEAPF64; function callRuntimeCallbacks(callbacks) { while (callbacks.length > 0) { var callback = callbacks.shift(); if (typeof callback == "function") { callback(); continue; } var func = callback.func; if (typeof func === "number") { if (callback.arg === undefined) { Runtime.dynCall("v", func); } else { Runtime.dynCall("vi", func, [ callback.arg ]); } } else { func(callback.arg === undefined ? null : callback.arg); } } } var __ATPRERUN__ = []; var __ATINIT__ = []; var __ATMAIN__ = []; var __ATEXIT__ = []; var __ATPOSTRUN__ = []; var runtimeInitialized = false; var runtimeExited = false; function preRun() { if (Module["preRun"]) { if (typeof Module["preRun"] == "function") Module["preRun"] = [ Module["preRun"] ]; while (Module["preRun"].length) { addOnPreRun(Module["preRun"].shift()); } } callRuntimeCallbacks(__ATPRERUN__); } function ensureInitRuntime() { if (runtimeInitialized) return; runtimeInitialized = true; callRuntimeCallbacks(__ATINIT__); } function preMain() { callRuntimeCallbacks(__ATMAIN__); } function exitRuntime() { callRuntimeCallbacks(__ATEXIT__); runtimeExited = true; } function postRun() { if (Module["postRun"]) { if (typeof Module["postRun"] == "function") Module["postRun"] = [ Module["postRun"] ]; while (Module["postRun"].length) { addOnPostRun(Module["postRun"].shift()); } } callRuntimeCallbacks(__ATPOSTRUN__); } function addOnPreRun(cb) { __ATPRERUN__.unshift(cb); } Module["addOnPreRun"] = addOnPreRun; function addOnInit(cb) { __ATINIT__.unshift(cb); } Module["addOnInit"] = addOnInit; function addOnPreMain(cb) { __ATMAIN__.unshift(cb); } Module["addOnPreMain"] = addOnPreMain; function addOnExit(cb) { __ATEXIT__.unshift(cb); } Module["addOnExit"] = addOnExit; function addOnPostRun(cb) { __ATPOSTRUN__.unshift(cb); } Module["addOnPostRun"] = addOnPostRun; 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); if (dontAddNull) u8array.length = numBytesWritten; return u8array; } Module["intArrayFromString"] = intArrayFromString; function intArrayToString(array) { var ret = []; for (var i = 0; i < array.length; i++) { var chr = array[i]; if (chr > 255) { chr &= 255; } ret.push(String.fromCharCode(chr)); } return ret.join(""); } Module["intArrayToString"] = intArrayToString; 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; } } Module["writeStringToMemory"] = writeStringToMemory; function writeArrayToMemory(array, buffer) { for (var i = 0; i < array.length; i++) { HEAP8[buffer++ >> 0] = array[i]; } } Module["writeArrayToMemory"] = writeArrayToMemory; function writeAsciiToMemory(str, buffer, dontAddNull) { for (var i = 0; i < str.length; ++i) { HEAP8[buffer++ >> 0] = str.charCodeAt(i); } if (!dontAddNull) HEAP8[buffer >> 0] = 0; } Module["writeAsciiToMemory"] = writeAsciiToMemory; if (!Math["imul"] || Math["imul"](4294967295, 5) !== -5) Math["imul"] = function imul(a, b) { var ah = a >>> 16; var al = a & 65535; var bh = b >>> 16; var bl = b & 65535; return al * bl + (ah * bl + al * bh << 16) | 0; }; Math.imul = Math["imul"]; if (!Math["clz32"]) Math["clz32"] = (function(x) { x = x >>> 0; for (var i = 0; i < 32; i++) { if (x & 1 << 31 - i) return i; } return 32; }); 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; var Math_tan = Math.tan; var Math_acos = Math.acos; var Math_asin = Math.asin; var Math_atan = Math.atan; var Math_atan2 = Math.atan2; var Math_exp = Math.exp; var Math_log = Math.log; var Math_sqrt = Math.sqrt; var Math_ceil = Math.ceil; var Math_floor = Math.floor; var Math_pow = Math.pow; var Math_imul = Math.imul; var Math_fround = Math.fround; var Math_min = Math.min; var Math_clz32 = Math.clz32; var Math_trunc = Math.trunc; var runDependencies = 0; var runDependencyWatcher = null; var dependenciesFulfilled = null; function getUniqueRunDependency(id) { return id; } function addRunDependency(id) { runDependencies++; if (Module["monitorRunDependencies"]) { Module["monitorRunDependencies"](runDependencies); } } Module["addRunDependency"] = addRunDependency; function removeRunDependency(id) { runDependencies--; if (Module["monitorRunDependencies"]) { Module["monitorRunDependencies"](runDependencies); } if (runDependencies == 0) { if (runDependencyWatcher !== null) { clearInterval(runDependencyWatcher); runDependencyWatcher = null; } if (dependenciesFulfilled) { var callback = dependenciesFulfilled; dependenciesFulfilled = null; callback(); } } } Module["removeRunDependency"] = removeRunDependency; Module["preloadedImages"] = {}; Module["preloadedAudios"] = {}; var ASM_CONSTS = [ (function() { { return Module["providedTotalMemory"]; } }), (function($0, $1) { { return Module["lookupImport"](Pointer_stringify($0), Pointer_stringify($1)); } }), (function($0, $1) { { Module["info"].parent["HEAP32"][$0 >> 2] = $1; } }), (function($0, $1) { { Module["info"].parent["HEAPF32"][$0 >> 2] = $1; } }), (function($0, $1) { { Module["info"].parent["HEAPF64"][$0 >> 3] = $1; } }), (function() { { return !!Module["outside"]["WASM_JS_DEBUG"]; } }), (function() { { Module["asmExports"] = {}; } }), (function($0) { { var name = Pointer_stringify($0); Module["asmExports"][name] = (function() { Module["tempArguments"] = Array.prototype.slice.call(arguments); Module["_call_from_js"]($0); return Module["tempReturn"]; }); } }), (function($0, $1, $2) { { var mod = Pointer_stringify($0); var base = Pointer_stringify($1); var name = Pointer_stringify($2); assert(Module["lookupImport"](mod, base), "checking import " + name + " = " + mod + "." + base); } }), (function() { { Module["outside"]["extraStackTrace"] = (function() { return Pointer_stringify(Module["_interpreter_stack_trace"]()); }); } }), (function() { { return Module["tempArguments"].length; } }), (function($0) { { return Module["tempArguments"][$0]; } }), (function() { { Module["tempReturn"] = undefined; } }), (function($0) { { Module["tempReturn"] = $0; } }), (function($0) { { Module["outside"]["newBuffer"] = new ArrayBuffer($0); } }), (function($0, $1, $2) { { var source = Module["HEAP8"].subarray($1, $1 + $2); var target = new Int8Array(Module["outside"]["newBuffer"]); target.set(source, $0); } }), (function() { { Module["tempArguments"] = []; } }), (function($0, $1) { { var mod = Pointer_stringify($0); var base = Pointer_stringify($1); var tempArguments = Module["tempArguments"]; Module["tempArguments"] = null; var lookup = Module["lookupImport"](mod, base); return lookup.apply(null, tempArguments); } }), (function($0) { { Module["tempArguments"].push($0); } }), (function($0, $1, $2, $3, $4) { { var addr = $0; var bytes = $1; var isFloat = $2; var isSigned = $3; var out64 = $4; var save0 = HEAP32[0]; var save1 = HEAP32[1]; for (var i = 0; i < bytes; i++) { HEAPU8[i] = Module["info"].parent["HEAPU8"][addr + i]; } var ret; if (!isFloat) { if (bytes === 1) ret = isSigned ? HEAP8[0] : HEAPU8[0]; else if (bytes === 2) ret = isSigned ? HEAP16[0] : HEAPU16[0]; else if (bytes === 4) ret = isSigned ? HEAP32[0] : HEAPU32[0]; else if (bytes === 8) { for (var i = 0; i < bytes; i++) { HEAPU8[out64 + i] = HEAPU8[i]; } } else abort(); } else { if (bytes === 4) ret = HEAPF32[0]; else if (bytes === 8) ret = HEAPF64[0]; else abort(); } HEAP32[0] = save0; HEAP32[1] = save1; return ret; } }), (function($0) { { return Module["info"].parent["HEAP8"][$0]; } }), (function($0) { { return Module["info"].parent["HEAPU8"][$0]; } }), (function($0) { { return Module["info"].parent["HEAP16"][$0 >> 1]; } }), (function($0) { { return Module["info"].parent["HEAPU16"][$0 >> 1]; } }), (function($0) { { return Module["info"].parent["HEAP32"][$0 >> 2]; } }), (function($0) { { return Module["info"].parent["HEAPU32"][$0 >> 2]; } }), (function($0) { { return Module["info"].parent["HEAPF32"][$0 >> 2]; } }), (function($0) { { return Module["info"].parent["HEAPF64"][$0 >> 3]; } }), (function($0, $1, $2, $3) { { var addr = $0; var bytes = $1; var isFloat = $2; var value = $3; var save0 = HEAP32[0]; var save1 = HEAP32[1]; if (!isFloat) { if (bytes === 1) HEAPU8[0] = value; else if (bytes === 2) HEAPU16[0] = value; else if (bytes === 4) HEAPU32[0] = value; else abort(); } else { if (bytes === 4) HEAPF32[0] = value; else if (bytes === 8) HEAPF64[0] = value; else abort(); } for (var i = 0; i < bytes; i++) { Module["info"].parent["HEAPU8"][addr + i] = HEAPU8[i]; } HEAP32[0] = save0; HEAP32[1] = save1; } }), (function($0, $1) { { Module["info"].parent["HEAP8"][$0] = $1; } }), (function($0, $1) { { Module["info"].parent["HEAP16"][$0 >> 1] = $1; } }), (function($0) { { var size = $0; var buffer; try { buffer = new ArrayBuffer(size); } catch (e) { return; } var oldHEAP8 = Module["outside"]["HEAP8"]; var temp = new Int8Array(buffer); temp.set(oldHEAP8); Module["outside"]["buffer"] = buffer; } }), (function($0) { { abort("wasm trap: " + Pointer_stringify($0)); } }) ]; function _emscripten_asm_const_diiid(code, a0, a1, a2, a3) { return ASM_CONSTS[code](a0, a1, a2, a3); } function _emscripten_asm_const_dii(code, a0, a1) { return ASM_CONSTS[code](a0, a1); } function _emscripten_asm_const_di(code, a0) { return ASM_CONSTS[code](a0); } function _emscripten_asm_const_i(code) { return ASM_CONSTS[code](); } function _emscripten_asm_const_diiiii(code, a0, a1, a2, a3, a4) { return ASM_CONSTS[code](a0, a1, a2, a3, a4); } function _emscripten_asm_const_iid(code, a0, a1) { return ASM_CONSTS[code](a0, a1); } function _emscripten_asm_const_ii(code, a0) { return ASM_CONSTS[code](a0); } function _emscripten_asm_const_did(code, a0, a1) { return ASM_CONSTS[code](a0, a1); } function _emscripten_asm_const_iiii(code, a0, a1, a2) { return ASM_CONSTS[code](a0, a1, a2); } function _emscripten_asm_const_v(code) { return ASM_CONSTS[code](); } function _emscripten_asm_const_iii(code, a0, a1) { return ASM_CONSTS[code](a0, a1); } function _emscripten_asm_const_id(code, a0) { return ASM_CONSTS[code](a0); } STATIC_BASE = 8; STATICTOP = STATIC_BASE + 53504; __ATINIT__.push({ func: (function() { __GLOBAL__I_000101(); }) }, { func: (function() { __GLOBAL__sub_I_wasm_js_cpp(); }) }, { func: (function() { __GLOBAL__sub_I_pass_cpp(); }) }, { func: (function() { __GLOBAL__sub_I_parser_cpp(); }) }, { func: (function() { __GLOBAL__sub_I_simple_ast_cpp(); }) }, { func: (function() { __GLOBAL__sub_I_optimizer_shared_cpp(); }) }, { func: (function() { __GLOBAL__sub_I_threads_cpp(); }) }, { func: (function() { __GLOBAL__sub_I_shared_constants_cpp(); }) }, { func: (function() { __GLOBAL__sub_I_wasm_cpp(); }) }, { func: (function() { __GLOBAL__sub_I_iostream_cpp(); }) }); allocate([ 244, 41, 0, 0, 45, 67, 0, 0, 28, 42, 0, 0, 65, 70, 0, 0, 128, 2, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 135, 70, 0, 0, 112, 2, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 200, 74, 0, 0, 168, 7, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 69, 75, 0, 0, 28, 42, 0, 0, 228, 74, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 103, 75, 0, 0, 244, 41, 0, 0, 228, 81, 0, 0, 28, 42, 0, 0, 131, 81, 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 6, 82, 0, 0, 28, 42, 0, 0, 63, 82, 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 160, 82, 0, 0, 244, 41, 0, 0, 76, 84, 0, 0, 244, 41, 0, 0, 126, 84, 0, 0, 28, 42, 0, 0, 89, 84, 0, 0, 160, 0, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 208, 94, 0, 0, 28, 42, 0, 0, 158, 94, 0, 0, 184, 0, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 132, 94, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 228, 99, 0, 0, 28, 42, 0, 0, 64, 99, 0, 0, 224, 0, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 180, 98, 0, 0, 232, 0, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 87, 101, 0, 0, 224, 2, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 122, 104, 0, 0, 28, 42, 0, 0, 24, 104, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 177, 103, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 56, 103, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 152, 0, 0, 0, 2, 0, 0, 0, 48, 1, 0, 0, 2, 16, 0, 0, 28, 42, 0, 0, 245, 102, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 144, 105, 0, 0, 28, 42, 0, 0, 12, 105, 0, 0, 112, 1, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 73, 109, 0, 0, 244, 41, 0, 0, 11, 110, 0, 0, 28, 42, 0, 0, 134, 109, 0, 0, 144, 1, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 98, 110, 0, 0, 28, 42, 0, 0, 159, 110, 0, 0, 144, 1, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 36, 111, 0, 0, 28, 42, 0, 0, 111, 121, 0, 0, 240, 1, 0, 0, 0, 0, 0, 0, 116, 42, 0, 0, 76, 121, 0, 0, 0, 0, 0, 0, 232, 1, 0, 0, 144, 42, 0, 0, 94, 121, 0, 0, 244, 41, 0, 0, 180, 121, 0, 0, 28, 42, 0, 0, 116, 122, 0, 0, 16, 2, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 72, 122, 0, 0, 244, 41, 0, 0, 233, 122, 0, 0, 28, 42, 0, 0, 4, 130, 0, 0, 152, 0, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 20, 130, 0, 0, 24, 2, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 45, 130, 0, 0, 24, 2, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 59, 149, 0, 0, 88, 2, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 41, 149, 0, 0, 28, 42, 0, 0, 101, 149, 0, 0, 88, 2, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 143, 149, 0, 0, 244, 41, 0, 0, 192, 149, 0, 0, 172, 42, 0, 0, 241, 149, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 72, 2, 0, 0, 3, 244, 255, 255, 172, 42, 0, 0, 32, 150, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 96, 2, 0, 0, 3, 244, 255, 255, 172, 42, 0, 0, 79, 150, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 72, 2, 0, 0, 3, 244, 255, 255, 172, 42, 0, 0, 126, 150, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 96, 2, 0, 0, 3, 244, 255, 255, 172, 42, 0, 0, 173, 150, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 128, 2, 0, 0, 2, 0, 0, 0, 176, 2, 0, 0, 2, 8, 0, 0, 28, 42, 0, 0, 221, 150, 0, 0, 120, 2, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 246, 150, 0, 0, 112, 2, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 53, 151, 0, 0, 120, 2, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 77, 151, 0, 0, 112, 2, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 101, 151, 0, 0, 80, 3, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 121, 151, 0, 0, 160, 7, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 143, 151, 0, 0, 80, 3, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 201, 151, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 144, 3, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 13, 152, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 168, 3, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 35, 152, 0, 0, 172, 42, 0, 0, 60, 152, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 208, 3, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 128, 152, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 168, 3, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 164, 152, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 8, 4, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 232, 152, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 4, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 254, 152, 0, 0, 172, 42, 0, 0, 23, 153, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 72, 4, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 91, 153, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 4, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 177, 154, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 136, 4, 0, 0, 2, 0, 0, 0, 144, 4, 0, 0, 0, 8, 0, 0, 244, 41, 0, 0, 24, 155, 0, 0, 244, 41, 0, 0, 246, 154, 0, 0, 172, 42, 0, 0, 43, 155, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 136, 4, 0, 0, 2, 0, 0, 0, 192, 4, 0, 0, 0, 8, 0, 0, 244, 41, 0, 0, 112, 155, 0, 0, 172, 42, 0, 0, 146, 155, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 232, 4, 0, 0, 0, 8, 0, 0, 244, 41, 0, 0, 215, 155, 0, 0, 172, 42, 0, 0, 236, 155, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 232, 4, 0, 0, 0, 8, 0, 0, 172, 42, 0, 0, 49, 156, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 48, 5, 0, 0, 2, 0, 0, 0, 244, 41, 0, 0, 77, 156, 0, 0, 172, 42, 0, 0, 98, 156, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 48, 5, 0, 0, 2, 0, 0, 0, 172, 42, 0, 0, 126, 156, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 48, 5, 0, 0, 2, 0, 0, 0, 172, 42, 0, 0, 154, 156, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 48, 5, 0, 0, 2, 0, 0, 0, 172, 42, 0, 0, 197, 156, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 184, 5, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 11, 157, 0, 0, 172, 42, 0, 0, 47, 157, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 224, 5, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 117, 157, 0, 0, 172, 42, 0, 0, 148, 157, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 8, 6, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 218, 157, 0, 0, 172, 42, 0, 0, 243, 157, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 48, 6, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 57, 158, 0, 0, 172, 42, 0, 0, 82, 158, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 88, 6, 0, 0, 2, 0, 0, 0, 244, 41, 0, 0, 103, 158, 0, 0, 172, 42, 0, 0, 254, 158, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 88, 6, 0, 0, 2, 0, 0, 0, 28, 42, 0, 0, 127, 158, 0, 0, 144, 6, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 162, 158, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 176, 6, 0, 0, 2, 0, 0, 0, 244, 41, 0, 0, 197, 158, 0, 0, 28, 42, 0, 0, 220, 158, 0, 0, 144, 6, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 19, 159, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 176, 6, 0, 0, 2, 0, 0, 0, 172, 42, 0, 0, 53, 159, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 176, 6, 0, 0, 2, 0, 0, 0, 172, 42, 0, 0, 87, 159, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 176, 6, 0, 0, 2, 0, 0, 0, 28, 42, 0, 0, 122, 159, 0, 0, 80, 3, 0, 0, 0, 0, 0, 0, 172, 42, 0, 0, 144, 159, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 88, 7, 0, 0, 2, 0, 0, 0, 244, 41, 0, 0, 162, 159, 0, 0, 172, 42, 0, 0, 183, 159, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 80, 3, 0, 0, 2, 0, 0, 0, 88, 7, 0, 0, 2, 0, 0, 0, 28, 42, 0, 0, 201, 159, 0, 0, 80, 3, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 222, 159, 0, 0, 80, 3, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 136, 160, 0, 0, 244, 41, 0, 0, 74, 163, 0, 0, 28, 42, 0, 0, 170, 163, 0, 0, 192, 7, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 87, 163, 0, 0, 208, 7, 0, 0, 0, 0, 0, 0, 244, 41, 0, 0, 120, 163, 0, 0, 28, 42, 0, 0, 133, 163, 0, 0, 176, 7, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 155, 164, 0, 0, 168, 7, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 219, 164, 0, 0, 192, 7, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 183, 164, 0, 0, 248, 7, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 253, 164, 0, 0, 192, 7, 0, 0, 0, 0, 0, 0, 88, 42, 0, 0, 84, 106, 0, 0, 88, 42, 0, 0, 37, 165, 0, 0, 28, 42, 0, 0, 40, 165, 0, 0, 192, 7, 0, 0, 0, 0, 0, 0, 28, 42, 0, 0, 77, 165, 0, 0, 176, 7, 0, 0, 0, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 196, 255, 255, 255, 196, 255, 255, 255, 16, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 100, 8, 0, 0, 156, 8, 0, 0, 176, 8, 0, 0, 120, 8, 0, 0, 60, 0, 0, 0, 0, 0, 0, 0, 128, 2, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 196, 255, 255, 255, 196, 255, 255, 255, 128, 2, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 104, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 9, 0, 0, 0, 3, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 10, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 17, 0, 0, 0, 21, 0, 0, 0, 12, 0, 0, 0, 4, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 13, 0, 0, 0, 5, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 152, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 168, 0, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 248, 0, 0, 0, 8, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 56, 0, 0, 0, 248, 255, 255, 255, 8, 1, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 192, 255, 255, 255, 192, 255, 255, 255, 8, 1, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 252, 9, 0, 0, 96, 10, 0, 0, 156, 10, 0, 0, 176, 10, 0, 0, 196, 10, 0, 0, 216, 10, 0, 0, 136, 10, 0, 0, 116, 10, 0, 0, 36, 10, 0, 0, 16, 10, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 224, 2, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 56, 0, 0, 0, 248, 255, 255, 255, 224, 2, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 192, 255, 255, 255, 192, 255, 255, 255, 224, 2, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 128, 2, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 192, 255, 255, 255, 192, 255, 255, 255, 128, 2, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 0, 176, 2, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 200, 255, 255, 255, 200, 255, 255, 255, 176, 2, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 3, 193, 0, 0, 235, 196, 0, 0, 0, 0, 0, 0, 96, 1, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 120, 1, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 19, 0, 0, 0, 9, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 152, 1, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 21, 0, 0, 0, 10, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 4, 0, 0, 0, 8, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 176, 1, 0, 0, 48, 0, 0, 0, 52, 0, 0, 0, 23, 0, 0, 0, 11, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 5, 0, 0, 0, 9, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 200, 1, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 25, 0, 0, 0, 12, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 26, 0, 0, 0, 10, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 248, 1, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 28, 0, 0, 0, 13, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 29, 0, 0, 0, 11, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 24, 2, 0, 0, 24, 0, 0, 0, 63, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 40, 2, 0, 0, 24, 0, 0, 0, 64, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 56, 2, 0, 0, 24, 0, 0, 0, 65, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 66, 130, 0, 0, 84, 130, 0, 0, 170, 136, 0, 0, 177, 136, 0, 0, 182, 136, 0, 0, 189, 136, 0, 0, 198, 136, 0, 0, 203, 136, 0, 0, 210, 136, 0, 0, 217, 136, 0, 0, 222, 136, 0, 0, 228, 136, 0, 0, 233, 136, 0, 0, 156, 12, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 229, 200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 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, 16, 13, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 237, 200, 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, 16, 13, 0, 0, 136, 13, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 245, 204, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 2, 0, 0, 192, 3, 0, 0, 192, 4, 0, 0, 192, 5, 0, 0, 192, 6, 0, 0, 192, 7, 0, 0, 192, 8, 0, 0, 192, 9, 0, 0, 192, 10, 0, 0, 192, 11, 0, 0, 192, 12, 0, 0, 192, 13, 0, 0, 192, 14, 0, 0, 192, 15, 0, 0, 192, 16, 0, 0, 192, 17, 0, 0, 192, 18, 0, 0, 192, 19, 0, 0, 192, 20, 0, 0, 192, 21, 0, 0, 192, 22, 0, 0, 192, 23, 0, 0, 192, 24, 0, 0, 192, 25, 0, 0, 192, 26, 0, 0, 192, 27, 0, 0, 192, 28, 0, 0, 192, 29, 0, 0, 192, 30, 0, 0, 192, 31, 0, 0, 192, 0, 0, 0, 179, 1, 0, 0, 195, 2, 0, 0, 195, 3, 0, 0, 195, 4, 0, 0, 195, 5, 0, 0, 195, 6, 0, 0, 195, 7, 0, 0, 195, 8, 0, 0, 195, 9, 0, 0, 195, 10, 0, 0, 195, 11, 0, 0, 195, 12, 0, 0, 195, 13, 0, 0, 211, 14, 0, 0, 195, 15, 0, 0, 195, 0, 0, 12, 187, 1, 0, 12, 195, 2, 0, 12, 195, 3, 0, 12, 195, 4, 0, 12, 211, 10, 0, 0, 0, 100, 0, 0, 0, 232, 3, 0, 0, 16, 39, 0, 0, 160, 134, 1, 0, 64, 66, 15, 0, 128, 150, 152, 0, 0, 225, 245, 5, 95, 112, 137, 0, 255, 9, 47, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 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, 204, 43, 0, 0, 100, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 81, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 90, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 93, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 81, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 90, 0, 0, 0, 123, 0, 0, 0, 124, 0, 0, 0, 125, 0, 0, 0, 126, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 101, 0, 0, 0, 102, 0, 0, 0, 103, 0, 0, 0, 104, 0, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 107, 0, 0, 0, 108, 0, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 119, 0, 0, 0, 120, 0, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 93, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 101, 0, 0, 0, 102, 0, 0, 0, 103, 0, 0, 0, 104, 0, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 107, 0, 0, 0, 108, 0, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 119, 0, 0, 0, 120, 0, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 123, 0, 0, 0, 124, 0, 0, 0, 125, 0, 0, 0, 126, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 19, 0, 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 31, 0, 0, 0, 37, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 47, 0, 0, 0, 53, 0, 0, 0, 59, 0, 0, 0, 61, 0, 0, 0, 67, 0, 0, 0, 71, 0, 0, 0, 73, 0, 0, 0, 79, 0, 0, 0, 83, 0, 0, 0, 89, 0, 0, 0, 97, 0, 0, 0, 101, 0, 0, 0, 103, 0, 0, 0, 107, 0, 0, 0, 109, 0, 0, 0, 113, 0, 0, 0, 127, 0, 0, 0, 131, 0, 0, 0, 137, 0, 0, 0, 139, 0, 0, 0, 149, 0, 0, 0, 151, 0, 0, 0, 157, 0, 0, 0, 163, 0, 0, 0, 167, 0, 0, 0, 173, 0, 0, 0, 179, 0, 0, 0, 181, 0, 0, 0, 191, 0, 0, 0, 193, 0, 0, 0, 197, 0, 0, 0, 199, 0, 0, 0, 211, 0, 0, 0, 1, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 19, 0, 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 31, 0, 0, 0, 37, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 47, 0, 0, 0, 53, 0, 0, 0, 59, 0, 0, 0, 61, 0, 0, 0, 67, 0, 0, 0, 71, 0, 0, 0, 73, 0, 0, 0, 79, 0, 0, 0, 83, 0, 0, 0, 89, 0, 0, 0, 97, 0, 0, 0, 101, 0, 0, 0, 103, 0, 0, 0, 107, 0, 0, 0, 109, 0, 0, 0, 113, 0, 0, 0, 121, 0, 0, 0, 127, 0, 0, 0, 131, 0, 0, 0, 137, 0, 0, 0, 139, 0, 0, 0, 143, 0, 0, 0, 149, 0, 0, 0, 151, 0, 0, 0, 157, 0, 0, 0, 163, 0, 0, 0, 167, 0, 0, 0, 169, 0, 0, 0, 173, 0, 0, 0, 179, 0, 0, 0, 181, 0, 0, 0, 187, 0, 0, 0, 191, 0, 0, 0, 193, 0, 0, 0, 197, 0, 0, 0, 199, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 0, 88, 2, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 0, 0, 0, 0, 112, 2, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 32, 0, 0, 0, 4, 0, 0, 0, 12, 0, 0, 0, 3, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 120, 2, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 14, 0, 0, 0, 11, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 12, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 14, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 128, 2, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 248, 255, 255, 255, 248, 255, 255, 255, 128, 2, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 152, 2, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 248, 255, 255, 255, 248, 255, 255, 255, 152, 2, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 176, 2, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 252, 255, 255, 255, 252, 255, 255, 255, 176, 2, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 200, 2, 0, 0, 76, 0, 0, 0, 77, 0, 0, 0, 252, 255, 255, 255, 252, 255, 255, 255, 200, 2, 0, 0, 78, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 70, 0, 0, 0, 80, 0, 0, 0, 15, 0, 0, 0, 11, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 37, 0, 0, 0, 34, 0, 0, 0, 12, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 16, 3, 0, 0, 68, 0, 0, 0, 81, 0, 0, 0, 16, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 38, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 32, 0, 0, 0, 4, 0, 0, 0, 12, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 70, 0, 0, 0, 82, 0, 0, 0, 17, 0, 0, 0, 11, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 12, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 18, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 48, 3, 0, 0, 68, 0, 0, 0, 83, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 19, 0, 0, 0, 3, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 64, 3, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 1, 0, 0, 0, 9, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 96, 3, 0, 0, 87, 0, 0, 0, 88, 0, 0, 0, 86, 0, 0, 0, 2, 0, 0, 0, 10, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 112, 3, 0, 0, 89, 0, 0, 0, 90, 0, 0, 0, 86, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 176, 3, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 86, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 232, 3, 0, 0, 93, 0, 0, 0, 94, 0, 0, 0, 86, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 23, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 40, 4, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 86, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 25, 0, 0, 0, 9, 0, 0, 0, 26, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 96, 4, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 86, 0, 0, 0, 43, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 248, 255, 255, 255, 96, 4, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 152, 4, 0, 0, 99, 0, 0, 0, 100, 0, 0, 0, 86, 0, 0, 0, 51, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 2, 0, 0, 0, 248, 255, 255, 255, 152, 4, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 57, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 73, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 97, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 98, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 89, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 97, 0, 0, 0, 110, 0, 0, 0, 117, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 101, 0, 0, 0, 98, 0, 0, 0, 114, 0, 0, 0, 117, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 99, 0, 0, 0, 104, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 112, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 108, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 117, 0, 0, 0, 103, 0, 0, 0, 117, 0, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 101, 0, 0, 0, 112, 0, 0, 0, 116, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 99, 0, 0, 0, 116, 0, 0, 0, 111, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 111, 0, 0, 0, 118, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 101, 0, 0, 0, 99, 0, 0, 0, 101, 0, 0, 0, 109, 0, 0, 0, 98, 0, 0, 0, 101, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 97, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 101, 0, 0, 0, 98, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 97, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 112, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 117, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 117, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 101, 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 99, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 111, 0, 0, 0, 118, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 101, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 111, 0, 0, 0, 110, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 101, 0, 0, 0, 100, 0, 0, 0, 110, 0, 0, 0, 101, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 104, 0, 0, 0, 117, 0, 0, 0, 114, 0, 0, 0, 115, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 97, 0, 0, 0, 116, 0, 0, 0, 117, 0, 0, 0, 114, 0, 0, 0, 100, 0, 0, 0, 97, 0, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 117, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 111, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 101, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 104, 0, 0, 0, 117, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 114, 0, 0, 0, 105, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 97, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 47, 0, 0, 0, 37, 0, 0, 0, 121, 0, 0, 0, 37, 0, 0, 0, 89, 0, 0, 0, 45, 0, 0, 0, 37, 0, 0, 0, 109, 0, 0, 0, 45, 0, 0, 0, 37, 0, 0, 0, 100, 0, 0, 0, 37, 0, 0, 0, 73, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 32, 0, 0, 0, 37, 0, 0, 0, 112, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 37, 0, 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 77, 0, 0, 0, 58, 0, 0, 0, 37, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 200, 4, 0, 0, 101, 0, 0, 0, 102, 0, 0, 0, 86, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 240, 4, 0, 0, 103, 0, 0, 0, 104, 0, 0, 0, 86, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 16, 5, 0, 0, 105, 0, 0, 0, 106, 0, 0, 0, 86, 0, 0, 0, 59, 0, 0, 0, 60, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 61, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 56, 5, 0, 0, 107, 0, 0, 0, 108, 0, 0, 0, 86, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 64, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 88, 5, 0, 0, 109, 0, 0, 0, 110, 0, 0, 0, 86, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 67, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 120, 5, 0, 0, 111, 0, 0, 0, 112, 0, 0, 0, 86, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 70, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 152, 5, 0, 0, 113, 0, 0, 0, 114, 0, 0, 0, 86, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 192, 5, 0, 0, 115, 0, 0, 0, 116, 0, 0, 0, 86, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 232, 5, 0, 0, 117, 0, 0, 0, 118, 0, 0, 0, 86, 0, 0, 0, 1, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 16, 6, 0, 0, 119, 0, 0, 0, 120, 0, 0, 0, 86, 0, 0, 0, 2, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 56, 6, 0, 0, 121, 0, 0, 0, 122, 0, 0, 0, 86, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 96, 6, 0, 0, 123, 0, 0, 0, 124, 0, 0, 0, 86, 0, 0, 0, 19, 0, 0, 0, 5, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 184, 6, 0, 0, 125, 0, 0, 0, 126, 0, 0, 0, 86, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 12, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 128, 6, 0, 0, 125, 0, 0, 0, 127, 0, 0, 0, 86, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 12, 0, 0, 0, 73 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); allocate([ 232, 6, 0, 0, 128, 0, 0, 0, 129, 0, 0, 0, 86, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 74, 0, 0, 0, 75, 0, 0, 0, 14, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 40, 7, 0, 0, 130, 0, 0, 0, 131, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 56, 7, 0, 0, 132, 0, 0, 0, 133, 0, 0, 0, 86, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 1, 0, 0, 0, 22, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 128, 7, 0, 0, 134, 0, 0, 0, 135, 0, 0, 0, 86, 0, 0, 0, 77, 0, 0, 0, 78, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, 144, 7, 0, 0, 136, 0, 0, 0, 137, 0, 0, 0, 86, 0, 0, 0, 79, 0, 0, 0, 80, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 102, 0, 0, 0, 97, 0, 0, 0, 108, 0, 0, 0, 115, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 116, 0, 0, 0, 114, 0, 0, 0, 117, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 3, 0, 0, 125, 0, 0, 0, 138, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 96, 7, 0, 0, 125, 0, 0, 0, 139, 0, 0, 0, 86, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 5, 0, 0, 0, 26, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 200, 6, 0, 0, 125, 0, 0, 0, 140, 0, 0, 0, 86, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 81, 0, 0, 0, 82, 0, 0, 0, 18, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 125, 0, 0, 0, 141, 0, 0, 0, 86, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 20, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 144, 6, 0, 0, 125, 0, 0, 0, 142, 0, 0, 0, 86, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 11, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 12, 0, 0, 0, 73, 0, 0, 0, 2, 0, 0, 0, 65, 163, 0, 0, 0, 0, 0, 0, 176, 7, 0, 0, 143, 0, 0, 0, 144, 0, 0, 0, 145, 0, 0, 0, 146, 0, 0, 0, 27, 0, 0, 0, 6, 0, 0, 0, 1, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 216, 7, 0, 0, 143, 0, 0, 0, 147, 0, 0, 0, 145, 0, 0, 0, 146, 0, 0, 0, 27, 0, 0, 0, 7, 0, 0, 0, 2, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 232, 7, 0, 0, 148, 0, 0, 0, 149, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 24, 8, 0, 0, 143, 0, 0, 0, 150, 0, 0, 0, 145, 0, 0, 0, 146, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 143, 0, 0, 0, 151, 0, 0, 0, 145, 0, 0, 0, 146, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 56, 8, 0, 0, 143, 0, 0, 0, 152, 0, 0, 0, 145, 0, 0, 0, 146, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 72, 8, 0, 0, 143, 0, 0, 0, 153, 0, 0, 0, 145, 0, 0, 0, 146, 0, 0, 0, 27, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 3, 32, 2, 32, 2, 32, 2, 32, 2, 32, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 1, 96, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 8, 216, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 213, 8, 213, 8, 213, 8, 213, 8, 213, 8, 213, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 8, 197, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 4, 192, 8, 214, 8, 214, 8, 214, 8, 214, 8, 214, 8, 214, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 8, 198, 4, 192, 4, 192, 4, 192, 4, 192, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 115, 116, 91, 48, 93, 32, 61, 61, 32, 84, 79, 80, 76, 69, 86, 69, 76, 0, 115, 114, 99, 47, 97, 115, 109, 50, 119, 97, 115, 109, 46, 104, 0, 112, 114, 111, 99, 101, 115, 115, 65, 115, 109, 0, 97, 115, 109, 70, 117, 110, 99, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 68, 69, 70, 85, 78, 0, 97, 108, 109, 111, 115, 116, 32, 97, 115, 109, 0, 98, 111, 100, 121, 91, 48, 93, 91, 48, 93, 32, 61, 61, 32, 83, 84, 65, 84, 32, 38, 38, 32, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 83, 84, 82, 73, 78, 71, 32, 38, 38, 32, 40, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 49, 93, 45, 62, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 40, 41, 32, 61, 61, 32, 73, 83, 116, 114, 105, 110, 103, 40, 34, 117, 115, 101, 32, 97, 115, 109, 34, 41, 32, 124, 124, 32, 98, 111, 100, 121, 91, 48, 93, 91, 49, 93, 91, 49, 93, 45, 62, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 40, 41, 32, 61, 61, 32, 73, 83, 116, 114, 105, 110, 103, 40, 34, 97, 108, 109, 111, 115, 116, 32, 97, 115, 109, 34, 41, 41, 0, 118, 97, 108, 117, 101, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 32, 61, 61, 32, 79, 82, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 51, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 51, 93, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 32, 61, 61, 32, 80, 76, 85, 83, 0, 105, 109, 112, 111, 114, 116, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 49, 93, 91, 49, 93, 32, 61, 61, 32, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 50, 93, 91, 48, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 38, 38, 32, 118, 97, 108, 117, 101, 91, 50, 93, 91, 48, 93, 91, 49, 93, 45, 62, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 32, 61, 61, 32, 48, 0, 118, 97, 108, 117, 101, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 0, 105, 110, 118, 97, 108, 105, 100, 32, 118, 105, 101, 119, 32, 105, 109, 112, 111, 114, 116, 0, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 105, 110, 118, 97, 108, 105, 100, 32, 115, 104, 111, 114, 116, 32, 118, 105, 101, 119, 32, 105, 109, 112, 111, 114, 116, 0, 118, 105, 101, 119, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 118, 105, 101, 119, 115, 46, 101, 110, 100, 40, 41, 0, 105, 110, 118, 97, 108, 105, 100, 32, 118, 97, 114, 32, 101, 108, 101, 109, 101, 110, 116, 0, 112, 97, 105, 114, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 95, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 95, 114, 101, 112, 108, 97, 99, 101, 95, 109, 101, 109, 111, 114, 121, 0, 33, 119, 97, 115, 109, 46, 99, 104, 101, 99, 107, 70, 117, 110, 99, 116, 105, 111, 110, 40, 118, 97, 108, 117, 101, 41, 0, 119, 97, 115, 109, 46, 99, 104, 101, 99, 107, 70, 117, 110, 99, 116, 105, 111, 110, 40, 118, 97, 108, 117, 101, 41, 0, 87, 97, 115, 109, 86, 97, 108, 105, 100, 97, 116, 111, 114, 40, 41, 46, 118, 97, 108, 105, 100, 97, 116, 101, 40, 119, 97, 115, 109, 41, 0, 10, 102, 117, 110, 99, 58, 32, 0, 99, 117, 114, 114, 91, 48, 93, 32, 61, 61, 32, 83, 84, 65, 84, 0, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 0, 99, 117, 114, 114, 91, 48, 93, 32, 61, 61, 32, 65, 83, 83, 73, 71, 78, 32, 38, 38, 32, 99, 117, 114, 114, 91, 50, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 32, 38, 38, 32, 99, 111, 110, 116, 105, 110, 117, 101, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 0, 112, 97, 114, 101, 110, 116, 76, 97, 98, 101, 108, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 97, 115, 109, 32, 112, 97, 114, 115, 105, 110, 103, 46, 46, 46, 10, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 112, 114, 111, 118, 105, 100, 101, 100, 84, 111, 116, 97, 108, 77, 101, 109, 111, 114, 121, 39, 93, 59, 32, 125, 0, 69, 114, 114, 111, 114, 58, 32, 112, 114, 111, 118, 105, 100, 101, 100, 32, 109, 101, 109, 111, 114, 121, 32, 105, 115, 32, 110, 111, 116, 32, 97, 32, 109, 117, 108, 116, 105, 112, 108, 101, 32, 111, 102, 32, 116, 104, 101, 32, 54, 52, 107, 32, 119, 97, 115, 109, 32, 112, 97, 103, 101, 32, 115, 105, 122, 101, 10, 0, 119, 97, 115, 109, 105, 110, 103, 46, 46, 46, 10, 0, 109, 97, 112, 112, 105, 110, 103, 32, 103, 108, 111, 98, 97, 108, 115, 46, 46, 46, 10, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 108, 111, 111, 107, 117, 112, 73, 109, 112, 111, 114, 116, 39, 93, 40, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 44, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 49, 41, 41, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 54, 52, 39, 93, 91, 36, 48, 32, 62, 62, 32, 51, 93, 32, 61, 32, 36, 49, 32, 125, 0, 119, 97, 115, 109, 45, 115, 45, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 112, 97, 114, 115, 105, 110, 103, 46, 46, 46, 10, 0, 119, 97, 115, 109, 45, 98, 105, 110, 97, 114, 121, 32, 112, 97, 114, 115, 105, 110, 103, 46, 46, 46, 10, 0, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 105, 110, 103, 32, 109, 111, 100, 117, 108, 101, 58, 32, 10, 0, 103, 101, 110, 101, 114, 97, 116, 105, 110, 103, 32, 101, 120, 112, 111, 114, 116, 115, 46, 46, 46, 10, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 97, 115, 109, 69, 120, 112, 111, 114, 116, 115, 39, 93, 32, 61, 32, 123, 125, 59, 32, 125, 0, 123, 32, 118, 97, 114, 32, 110, 97, 109, 101, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 97, 115, 109, 69, 120, 112, 111, 114, 116, 115, 39, 93, 91, 110, 97, 109, 101, 93, 32, 61, 32, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 32, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 65, 114, 114, 97, 121, 46, 112, 114, 111, 116, 111, 116, 121, 112, 101, 46, 115, 108, 105, 99, 101, 46, 99, 97, 108, 108, 40, 97, 114, 103, 117, 109, 101, 110, 116, 115, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 95, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 39, 93, 40, 36, 48, 41, 59, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 59, 32, 125, 59, 32, 125, 0, 123, 32, 118, 97, 114, 32, 109, 111, 100, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 59, 32, 118, 97, 114, 32, 98, 97, 115, 101, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 49, 41, 59, 32, 118, 97, 114, 32, 110, 97, 109, 101, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 50, 41, 59, 32, 97, 115, 115, 101, 114, 116, 40, 77, 111, 100, 117, 108, 101, 91, 39, 108, 111, 111, 107, 117, 112, 73, 109, 112, 111, 114, 116, 39, 93, 40, 109, 111, 100, 44, 32, 98, 97, 115, 101, 41, 44, 32, 39, 99, 104, 101, 99, 107, 105, 110, 103, 32, 105, 109, 112, 111, 114, 116, 32, 39, 32, 43, 32, 110, 97, 109, 101, 32, 43, 32, 39, 32, 61, 32, 39, 32, 43, 32, 109, 111, 100, 32, 43, 32, 39, 46, 39, 32, 43, 32, 98, 97, 115, 101, 41, 59, 32, 125, 0, 99, 114, 101, 97, 116, 105, 110, 103, 32, 105, 110, 115, 116, 97, 110, 99, 101, 46, 46, 46, 10, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 101, 120, 116, 114, 97, 83, 116, 97, 99, 107, 84, 114, 97, 99, 101, 39, 93, 32, 61, 32, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 32, 123, 32, 114, 101, 116, 117, 114, 110, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 77, 111, 100, 117, 108, 101, 91, 39, 95, 105, 110, 116, 101, 114, 112, 114, 101, 116, 101, 114, 95, 115, 116, 97, 99, 107, 95, 116, 114, 97, 99, 101, 39, 93, 40, 41, 41, 59, 32, 125, 59, 32, 125, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 32, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 106, 115, 46, 99, 112, 112, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 46, 108, 101, 110, 103, 116, 104, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 91, 36, 48, 93, 32, 125, 0, 99, 97, 108, 108, 95, 102, 114, 111, 109, 95, 106, 115, 32, 114, 101, 116, 117, 114, 110, 105, 110, 103, 32, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 32, 61, 32, 117, 110, 100, 101, 102, 105, 110, 101, 100, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 82, 101, 116, 117, 114, 110, 39, 93, 32, 61, 32, 36, 48, 32, 125, 0, 105, 115, 83, 116, 114, 105, 110, 103, 40, 41, 0, 103, 101, 116, 73, 83, 116, 114, 105, 110, 103, 0, 115, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 105, 115, 116, 114, 105, 110, 103, 46, 104, 0, 73, 83, 116, 114, 105, 110, 103, 0, 33, 119, 97, 115, 109, 58, 58, 84, 104, 114, 101, 97, 100, 80, 111, 111, 108, 58, 58, 105, 115, 82, 117, 110, 110, 105, 110, 103, 40, 41, 0, 115, 101, 116, 0, 115, 105, 122, 101, 0, 110, 117, 109, 87, 111, 114, 107, 101, 114, 115, 32, 62, 61, 32, 49, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 109, 111, 100, 117, 108, 101, 45, 98, 117, 105, 108, 100, 105, 110, 103, 46, 104, 0, 79, 112, 116, 105, 109, 105, 122, 105, 110, 103, 73, 110, 99, 114, 101, 109, 101, 110, 116, 97, 108, 77, 111, 100, 117, 108, 101, 66, 117, 105, 108, 100, 101, 114, 0, 105, 115, 78, 117, 109, 98, 101, 114, 40, 41, 0, 103, 101, 116, 78, 117, 109, 98, 101, 114, 0, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 101, 110, 100, 40, 41, 0, 97, 108, 108, 111, 99, 97, 116, 101, 71, 108, 111, 98, 97, 108, 0, 110, 101, 120, 116, 71, 108, 111, 98, 97, 108, 32, 60, 32, 109, 97, 120, 71, 108, 111, 98, 97, 108, 0, 105, 109, 112, 111, 114, 116, 101, 100, 91, 48, 93, 32, 61, 61, 32, 68, 79, 84, 0, 109, 111, 100, 117, 108, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 77, 97, 116, 104, 95, 105, 109, 117, 108, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 99, 108, 122, 51, 50, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 97, 98, 115, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 102, 108, 111, 111, 114, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 99, 101, 105, 108, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 77, 97, 116, 104, 95, 115, 113, 114, 116, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 109, 111, 100, 117, 108, 101, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 116, 101, 109, 112, 68, 111, 117, 98, 108, 101, 80, 116, 114, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 108, 108, 118, 109, 95, 99, 116, 116, 122, 95, 105, 51, 50, 46, 105, 115, 78, 117, 108, 108, 40, 41, 0, 103, 101, 116, 67, 83, 116, 114, 105, 110, 103, 0, 110, 101, 120, 116, 70, 117, 110, 99, 116, 105, 111, 110, 32, 60, 32, 110, 117, 109, 70, 117, 110, 99, 116, 105, 111, 110, 115, 0, 113, 117, 101, 117, 101, 70, 117, 110, 99, 116, 105, 111, 110, 0, 110, 101, 120, 116, 70, 117, 110, 99, 116, 105, 111, 110, 32, 61, 61, 32, 110, 117, 109, 70, 117, 110, 99, 116, 105, 111, 110, 115, 0, 102, 105, 110, 105, 115, 104, 0, 67, 111, 117, 108, 100, 32, 110, 111, 116, 32, 102, 105, 110, 100, 32, 112, 97, 115, 115, 58, 32, 0, 70, 97, 116, 97, 108, 58, 32, 0, 111, 112, 101, 114, 97, 110, 100, 115, 32, 38, 38, 32, 111, 112, 101, 114, 97, 110, 100, 115, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 103, 101, 116, 66, 117, 105, 108, 116, 105, 110, 70, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 0, 105, 105, 0, 102, 102, 0, 100, 100, 0, 105, 110, 100, 101, 120, 32, 60, 32, 117, 115, 101, 100, 69, 108, 101, 109, 101, 110, 116, 115, 0, 73, 109, 112, 111, 114, 116, 101, 100, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 109, 117, 115, 116, 32, 110, 111, 116, 32, 104, 97, 118, 101, 32, 105, 54, 52, 32, 114, 101, 116, 117, 114, 110, 32, 116, 121, 112, 101, 0, 73, 109, 112, 111, 114, 116, 101, 100, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 109, 117, 115, 116, 32, 110, 111, 116, 32, 104, 97, 118, 101, 32, 105, 54, 52, 32, 112, 97, 114, 97, 109, 101, 116, 101, 114, 115, 0, 32, 61, 61, 32, 0, 58, 32, 0, 44, 32, 111, 110, 32, 10, 0, 110, 97, 109, 101, 46, 115, 116, 114, 0, 115, 114, 99, 47, 119, 97, 115, 109, 46, 104, 0, 91, 119, 97, 115, 109, 45, 118, 97, 108, 105, 100, 97, 116, 111, 114, 32, 101, 114, 114, 111, 114, 32, 105, 110, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 0, 93, 32, 0, 91, 119, 97, 115, 109, 45, 118, 97, 108, 105, 100, 97, 116, 111, 114, 32, 101, 114, 114, 111, 114, 32, 105, 110, 32, 109, 111, 100, 117, 108, 101, 93, 32, 0, 69, 120, 112, 111, 114, 116, 101, 100, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 109, 117, 115, 116, 32, 110, 111, 116, 32, 104, 97, 118, 101, 32, 105, 54, 52, 32, 114, 101, 116, 117, 114, 110, 32, 116, 121, 112, 101, 0, 69, 120, 112, 111, 114, 116, 101, 100, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 109, 117, 115, 116, 32, 110, 111, 116, 32, 104, 97, 118, 101, 32, 105, 54, 52, 32, 112, 97, 114, 97, 109, 101, 116, 101, 114, 115, 0, 103, 108, 111, 98, 97, 108, 32, 105, 110, 105, 116, 32, 109, 117, 115, 116, 32, 98, 101, 32, 118, 97, 108, 105, 100, 0, 103, 108, 111, 98, 97, 108, 32, 105, 110, 105, 116, 32, 109, 117, 115, 116, 32, 104, 97, 118, 101, 32, 99, 111, 114, 114, 101, 99, 116, 32, 116, 121, 112, 101, 0, 117, 110, 101, 120, 112, 101, 99, 116, 101, 100, 32, 102, 97, 108, 115, 101, 58, 32, 0, 32, 33, 61, 32, 0, 98, 114, 101, 97, 107, 32, 116, 97, 114, 103, 101, 116, 115, 0, 97, 108, 108, 32, 98, 114, 101, 97, 107, 32, 116, 97, 114, 103, 101, 116, 115, 32, 109, 117, 115, 116, 32, 98, 101, 32, 118, 97, 108, 105, 100, 0, 32, 45, 32, 0, 98, 108, 111, 99, 107, 43, 98, 114, 101, 97, 107, 115, 32, 109, 117, 115, 116, 32, 104, 97, 118, 101, 32, 114, 105, 103, 104, 116, 32, 116, 121, 112, 101, 32, 105, 102, 32, 98, 114, 101, 97, 107, 115, 32, 114, 101, 116, 117, 114, 110, 32, 97, 32, 118, 97, 108, 117, 101, 0, 105, 110, 116, 40, 95, 105, 100, 41, 32, 61, 61, 32, 105, 110, 116, 40, 84, 58, 58, 83, 112, 101, 99, 105, 102, 105, 99, 73, 100, 41, 0, 99, 97, 115, 116, 0, 105, 102, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 32, 109, 117, 115, 116, 32, 98, 101, 32, 118, 97, 108, 105, 100, 0, 98, 114, 101, 97, 107, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 32, 109, 117, 115, 116, 32, 98, 101, 32, 105, 51, 50, 0, 98, 114, 95, 116, 97, 98, 108, 101, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 32, 109, 117, 115, 116, 32, 98, 101, 32, 105, 51, 50, 0, 99, 97, 108, 108, 32, 116, 97, 114, 103, 101, 116, 32, 109, 117, 115, 116, 32, 101, 120, 105, 115, 116, 0, 99, 97, 108, 108, 32, 112, 97, 114, 97, 109, 32, 110, 117, 109, 98, 101, 114, 32, 109, 117, 115, 116, 32, 109, 97, 116, 99, 104, 0, 99, 97, 108, 108, 32, 112, 97, 114, 97, 109, 32, 116, 121, 112, 101, 115, 32, 109, 117, 115, 116, 32, 109, 97, 116, 99, 104, 0, 40, 111, 110, 32, 97, 114, 103, 117, 109, 101, 110, 116, 32, 0, 41, 10, 0, 99, 97, 108, 108, 95, 105, 109, 112, 111, 114, 116, 32, 116, 97, 114, 103, 101, 116, 32, 109, 117, 115, 116, 32, 101, 120, 105, 115, 116, 0, 99, 97, 108, 108, 95, 105, 110, 100, 105, 114, 101, 99, 116, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 101, 120, 105, 115, 116, 0, 105, 110, 100, 105, 114, 101, 99, 116, 32, 99, 97, 108, 108, 32, 116, 97, 114, 103, 101, 116, 32, 109, 117, 115, 116, 32, 98, 101, 32, 97, 110, 32, 105, 51, 50, 0, 115, 101, 116, 95, 108, 111, 99, 97, 108, 32, 105, 110, 100, 101, 120, 32, 109, 117, 115, 116, 32, 98, 101, 32, 115, 109, 97, 108, 108, 32, 101, 110, 111, 117, 103, 104, 0, 115, 101, 116, 95, 108, 111, 99, 97, 108, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 115, 101, 116, 95, 108, 111, 99, 97, 108, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 109, 97, 116, 99, 104, 32, 102, 117, 110, 99, 116, 105, 111, 110, 0, 108, 111, 97, 100, 32, 112, 111, 105, 110, 116, 101, 114, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 105, 51, 50, 0, 98, 97, 100, 32, 97, 108, 105, 103, 110, 109, 101, 110, 116, 58, 32, 0, 115, 116, 111, 114, 101, 32, 112, 111, 105, 110, 116, 101, 114, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 105, 51, 50, 0, 115, 116, 111, 114, 101, 32, 118, 97, 108, 117, 101, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 109, 97, 116, 99, 104, 0, 117, 110, 97, 114, 105, 101, 115, 32, 109, 117, 115, 116, 32, 110, 111, 116, 32, 114, 101, 99, 101, 105, 118, 101, 32, 97, 32, 110, 111, 110, 101, 32, 97, 115, 32, 116, 104, 101, 105, 114, 32, 105, 110, 112, 117, 116, 0, 101, 113, 122, 32, 109, 117, 115, 116, 32, 114, 101, 116, 117, 114, 110, 32, 105, 51, 50, 0, 110, 111, 110, 45, 99, 111, 110, 118, 101, 114, 115, 105, 111, 110, 32, 117, 110, 97, 114, 105, 101, 115, 32, 109, 117, 115, 116, 32, 114, 101, 116, 117, 114, 110, 32, 116, 104, 101, 32, 115, 97, 109, 101, 32, 116, 121, 112, 101, 0, 101, 113, 122, 32, 105, 110, 112, 117, 116, 32, 109, 117, 115, 116, 32, 98, 101, 32, 105, 51, 50, 32, 111, 114, 32, 105, 54, 52, 0, 101, 120, 116, 101, 110, 100, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 119, 114, 97, 112, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 116, 114, 117, 110, 99, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 102, 51, 50, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 102, 54, 52, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 99, 111, 110, 118, 101, 114, 116, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 112, 114, 111, 109, 111, 116, 101, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 100, 101, 109, 111, 116, 101, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 105, 51, 50, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 105, 54, 52, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 98, 101, 32, 99, 111, 114, 114, 101, 99, 116, 0, 98, 105, 110, 97, 114, 121, 32, 99, 104, 105, 108, 100, 32, 116, 121, 112, 101, 115, 32, 109, 117, 115, 116, 32, 98, 101, 32, 101, 113, 117, 97, 108, 0, 103, 114, 111, 119, 95, 109, 101, 109, 111, 114, 121, 32, 109, 117, 115, 116, 32, 104, 97, 118, 101, 32, 49, 32, 111, 112, 101, 114, 97, 110, 100, 0, 103, 114, 111, 119, 95, 109, 101, 109, 111, 114, 121, 32, 109, 117, 115, 116, 32, 104, 97, 118, 101, 32, 105, 51, 50, 32, 111, 112, 101, 114, 97, 110, 100, 0, 102, 117, 110, 99, 116, 105, 111, 110, 32, 98, 111, 100, 121, 32, 116, 121, 112, 101, 32, 109, 117, 115, 116, 32, 109, 97, 116, 99, 104, 44, 32, 105, 102, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 114, 101, 116, 117, 114, 110, 115, 0, 102, 117, 110, 99, 116, 105, 111, 110, 32, 114, 101, 115, 117, 108, 116, 32, 109, 117, 115, 116, 32, 109, 97, 116, 99, 104, 44, 32, 105, 102, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 114, 101, 116, 117, 114, 110, 115, 0, 109, 101, 109, 111, 114, 121, 32, 109, 97, 120, 32, 62, 61, 32, 105, 110, 105, 116, 105, 97, 108, 0, 109, 97, 120, 32, 109, 101, 109, 111, 114, 121, 32, 109, 117, 115, 116, 32, 98, 101, 32, 60, 61, 32, 52, 71, 66, 0, 115, 101, 103, 109, 101, 110, 116, 32, 111, 102, 102, 115, 101, 116, 32, 105, 115, 32, 115, 109, 97, 108, 108, 32, 101, 110, 111, 117, 103, 104, 0, 116, 111, 116, 97, 108, 32, 115, 101, 103, 109, 101, 110, 116, 115, 32, 109, 117, 115, 116, 32, 98, 101, 32, 115, 109, 97, 108, 108, 32, 101, 110, 111, 117, 103, 104, 0, 117, 110, 101, 120, 112, 101, 99, 116, 101, 100, 32, 116, 114, 117, 101, 58, 32, 0, 109, 111, 100, 117, 108, 101, 32, 101, 120, 112, 111, 114, 116, 115, 32, 109, 117, 115, 116, 32, 98, 101, 32, 102, 111, 117, 110, 100, 0, 109, 111, 100, 117, 108, 101, 32, 101, 120, 112, 111, 114, 116, 115, 32, 109, 117, 115, 116, 32, 98, 101, 32, 117, 110, 105, 113, 117, 101, 0, 115, 116, 97, 114, 116, 32, 109, 117, 115, 116, 32, 98, 101, 32, 102, 111, 117, 110, 100, 0, 115, 116, 97, 114, 116, 32, 109, 117, 115, 116, 32, 104, 97, 118, 101, 32, 48, 32, 112, 97, 114, 97, 109, 115, 0, 115, 116, 97, 114, 116, 32, 109, 117, 115, 116, 32, 110, 111, 116, 32, 114, 101, 116, 117, 114, 110, 32, 97, 32, 118, 97, 108, 117, 101, 0, 34, 40, 110, 117, 108, 108, 41, 34, 0, 91, 93, 0, 110, 117, 108, 108, 0, 34, 58, 32, 0, 102, 117, 110, 99, 45, 62, 108, 111, 99, 97, 108, 73, 110, 100, 105, 99, 101, 115, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 102, 117, 110, 99, 45, 62, 112, 97, 114, 97, 109, 115, 46, 115, 105, 122, 101, 40, 41, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 98, 117, 105, 108, 100, 101, 114, 46, 104, 0, 97, 100, 100, 80, 97, 114, 97, 109, 0, 102, 117, 110, 99, 45, 62, 108, 111, 99, 97, 108, 73, 110, 100, 105, 99, 101, 115, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 102, 117, 110, 99, 45, 62, 112, 97, 114, 97, 109, 115, 46, 115, 105, 122, 101, 40, 41, 32, 43, 32, 102, 117, 110, 99, 45, 62, 118, 97, 114, 115, 46, 115, 105, 122, 101, 40, 41, 0, 97, 100, 100, 86, 97, 114, 0, 97, 115, 109, 50, 119, 97, 115, 109, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 115, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 97, 114, 115, 101, 114, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 115, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 32, 38, 38, 32, 105, 110, 115, 116, 97, 110, 99, 101, 32, 61, 61, 32, 110, 117, 108, 108, 112, 116, 114, 0, 112, 114, 101, 112, 97, 114, 101, 50, 119, 97, 115, 109, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 33, 33, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 87, 65, 83, 77, 95, 74, 83, 95, 68, 69, 66, 85, 71, 39, 93, 32, 125, 0, 47, 47, 32, 69, 77, 83, 67, 82, 73, 80, 84, 69, 78, 95, 83, 84, 65, 82, 84, 95, 70, 85, 78, 67, 83, 0, 114, 101, 116, 117, 114, 110, 32, 116, 114, 117, 101, 59, 0, 102, 117, 110, 99, 116, 105, 111, 110, 32, 0, 115, 116, 114, 115, 116, 114, 40, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 83, 116, 97, 114, 116, 32, 43, 32, 49, 44, 32, 34, 102, 117, 110, 99, 116, 105, 111, 110, 32, 34, 41, 32, 61, 61, 32, 48, 0, 112, 114, 111, 99, 101, 115, 115, 0, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 69, 110, 100, 32, 62, 32, 103, 114, 111, 119, 116, 104, 70, 117, 110, 99, 83, 116, 97, 114, 116, 32, 43, 32, 53, 0, 97, 32, 60, 61, 32, 115, 116, 100, 58, 58, 110, 117, 109, 101, 114, 105, 99, 95, 108, 105, 109, 105, 116, 115, 60, 97, 100, 100, 114, 101, 115, 115, 95, 116, 62, 58, 58, 109, 97, 120, 40, 41, 0, 65, 100, 100, 114, 101, 115, 115, 0, 115, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 115, 45, 112, 97, 114, 115, 101, 114, 46, 104, 0, 112, 97, 114, 115, 101, 0, 115, 116, 97, 99, 107, 32, 105, 115, 32, 110, 111, 116, 32, 101, 109, 112, 116, 121, 0, 78, 52, 119, 97, 115, 109, 49, 52, 80, 97, 114, 115, 101, 69, 120, 99, 101, 112, 116, 105, 111, 110, 69, 0, 101, 120, 112, 101, 99, 116, 101, 100, 32, 108, 105, 115, 116, 0, 101, 120, 112, 101, 99, 116, 101, 100, 32, 115, 116, 114, 105, 110, 103, 0, 32, 41, 0, 101, 120, 112, 101, 99, 116, 101, 100, 32, 109, 111, 114, 101, 32, 101, 108, 101, 109, 101, 110, 116, 115, 32, 105, 110, 32, 108, 105, 115, 116, 0, 109, 111, 100, 117, 108, 101, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 77, 79, 68, 85, 76, 69, 0, 83, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 0, 33, 105, 115, 76, 105, 115, 116, 95, 0, 115, 116, 114, 0, 99, 95, 115, 116, 114, 0, 119, 114, 105, 116, 101, 32, 62, 61, 32, 100, 97, 116, 97, 46, 100, 97, 116, 97, 40, 41, 0, 115, 116, 114, 105, 110, 103, 84, 111, 66, 105, 110, 97, 114, 121, 0, 97, 99, 116, 117, 97, 108, 32, 60, 61, 32, 100, 97, 116, 97, 46, 115, 105, 122, 101, 40, 41, 0, 117, 110, 107, 110, 111, 119, 110, 32, 102, 117, 110, 99, 116, 105, 111, 110, 0, 102, 117, 110, 99, 46, 105, 115, 76, 105, 115, 116, 40, 41, 0, 112, 97, 114, 115, 101, 84, 121, 112, 101, 0, 117, 110, 107, 110, 111, 119, 110, 32, 116, 121, 112, 101, 0, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 77, 97, 112, 46, 99, 111, 117, 110, 116, 40, 110, 97, 109, 101, 41, 0, 103, 101, 116, 70, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 0, 110, 111, 32, 110, 97, 109, 101, 32, 102, 111, 114, 32, 105, 109, 112, 111, 114, 116, 0, 98, 97, 100, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 116, 121, 112, 101, 32, 102, 111, 114, 32, 105, 109, 112, 111, 114, 116, 0, 98, 97, 100, 32, 105, 109, 112, 111, 114, 116, 32, 101, 108, 101, 109, 101, 110, 116, 0, 114, 101, 115, 117, 108, 116, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 82, 69, 83, 85, 76, 84, 0, 112, 97, 114, 115, 101, 73, 109, 112, 111, 114, 116, 0, 98, 97, 100, 32, 109, 111, 100, 117, 108, 101, 32, 101, 108, 101, 109, 101, 110, 116, 32, 0, 117, 110, 107, 110, 111, 119, 110, 32, 109, 111, 100, 117, 108, 101, 32, 101, 108, 101, 109, 101, 110, 116, 0, 98, 97, 100, 32, 102, 117, 110, 99, 32, 100, 101, 99, 108, 97, 114, 97, 116, 105, 111, 110, 0, 110, 111, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 116, 121, 112, 101, 32, 91, 105, 110, 116, 101, 114, 110, 97, 108, 32, 101, 114, 114, 111, 114, 63, 93, 0, 97, 98, 111, 114, 116, 95, 111, 110, 32, 0, 98, 97, 100, 32, 116, 121, 112, 101, 32, 102, 111, 114, 32, 0, 32, 118, 115, 32, 118, 97, 108, 117, 101, 32, 116, 121, 112, 101, 32, 0, 119, 97, 107, 97, 32, 0, 103, 101, 116, 95, 108, 111, 99, 97, 108, 0, 115, 101, 116, 95, 108, 111, 99, 97, 108, 0, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 0, 115, 101, 116, 95, 103, 108, 111, 98, 97, 108, 0, 108, 111, 97, 100, 0, 115, 116, 111, 114, 101, 0, 117, 110, 97, 114, 121, 0, 104, 111, 115, 116, 0, 110, 111, 110, 101, 0, 105, 51, 50, 0, 105, 54, 52, 0, 102, 51, 50, 0, 102, 54, 52, 0, 108, 101, 102, 116, 32, 38, 38, 32, 114, 105, 103, 104, 116, 0, 102, 105, 110, 97, 108, 105, 122, 101, 0, 98, 97, 100, 32, 99, 111, 110, 115, 116, 0, 109, 111, 100, 105, 102, 105, 101, 114, 32, 63, 32, 112, 111, 115, 105, 116, 105, 118, 101, 91, 52, 93, 32, 61, 61, 32, 39, 48, 39, 32, 38, 38, 32, 112, 111, 115, 105, 116, 105, 118, 101, 91, 53, 93, 32, 61, 61, 32, 39, 120, 39, 32, 58, 32, 49, 0, 115, 114, 99, 47, 112, 97, 114, 115, 105, 110, 103, 46, 104, 0, 112, 97, 114, 115, 101, 67, 111, 110, 115, 116, 0, 114, 101, 116, 45, 62, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 116, 121, 112, 101, 0, 78, 83, 116, 51, 95, 95, 50, 49, 57, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 105, 110, 103, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 98, 117, 102, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 99, 69, 69, 69, 69, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 105, 51, 50, 0, 99, 97, 115, 116, 84, 111, 70, 51, 50, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 105, 54, 52, 0, 99, 97, 115, 116, 84, 111, 70, 54, 52, 0, 101, 120, 116, 114, 97, 91, 49, 93, 32, 61, 61, 32, 39, 54, 39, 0, 109, 97, 107, 101, 76, 111, 97, 100, 0, 101, 120, 116, 114, 97, 91, 49, 93, 32, 61, 61, 32, 39, 50, 39, 0, 101, 113, 0, 98, 97, 100, 32, 111, 102, 102, 115, 101, 116, 0, 98, 97, 100, 32, 108, 111, 97, 100, 32, 97, 116, 116, 114, 105, 98, 117, 116, 101, 0, 109, 97, 107, 101, 83, 116, 111, 114, 101, 0, 98, 97, 100, 32, 115, 116, 111, 114, 101, 32, 97, 116, 116, 114, 105, 98, 117, 116, 101, 0, 108, 97, 98, 101, 108, 83, 116, 97, 99, 107, 46, 98, 97, 99, 107, 40, 41, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 110, 97, 109, 101, 0, 109, 97, 107, 101, 66, 108, 111, 99, 107, 0, 105, 110, 118, 97, 108, 105, 100, 32, 108, 97, 98, 101, 108, 0, 112, 111, 112, 95, 98, 97, 99, 107, 0, 105, 109, 112, 111, 114, 116, 115, 77, 97, 112, 46, 99, 111, 117, 110, 116, 40, 110, 97, 109, 101, 41, 0, 103, 101, 116, 73, 109, 112, 111, 114, 116, 0, 105, 110, 118, 97, 108, 105, 100, 32, 99, 97, 108, 108, 95, 105, 110, 100, 105, 114, 101, 99, 116, 32, 116, 121, 112, 101, 0, 108, 111, 99, 97, 108, 32, 97, 99, 99, 101, 115, 115, 32, 105, 110, 32, 110, 111, 110, 45, 102, 117, 110, 99, 116, 105, 111, 110, 32, 115, 99, 111, 112, 101, 0, 98, 97, 100, 32, 108, 111, 99, 97, 108, 32, 110, 97, 109, 101, 0, 98, 97, 100, 32, 108, 111, 99, 97, 108, 32, 105, 110, 100, 101, 120, 0, 108, 111, 99, 97, 108, 73, 110, 100, 105, 99, 101, 115, 46, 99, 111, 117, 110, 116, 40, 110, 97, 109, 101, 41, 32, 62, 32, 48, 0, 103, 101, 116, 76, 111, 99, 97, 108, 73, 110, 100, 101, 120, 0, 98, 97, 100, 32, 103, 108, 111, 98, 97, 108, 32, 110, 97, 109, 101, 0, 98, 97, 100, 32, 103, 108, 111, 98, 97, 108, 32, 105, 110, 100, 101, 120, 0, 105, 32, 60, 32, 103, 108, 111, 98, 97, 108, 115, 46, 115, 105, 122, 101, 40, 41, 0, 103, 101, 116, 71, 108, 111, 98, 97, 108, 0, 105, 102, 45, 116, 114, 117, 101, 0, 105, 102, 45, 101, 108, 115, 101, 0, 105, 102, 84, 114, 117, 101, 0, 108, 111, 111, 112, 45, 111, 117, 116, 0, 108, 111, 111, 112, 45, 105, 110, 0, 105, 102, 84, 114, 117, 101, 32, 38, 38, 32, 105, 102, 70, 97, 108, 115, 101, 0, 116, 111, 116, 97, 108, 32, 109, 101, 109, 111, 114, 121, 32, 109, 117, 115, 116, 32, 98, 101, 32, 60, 61, 32, 52, 71, 66, 0, 99, 117, 114, 114, 91, 48, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 83, 69, 71, 77, 69, 78, 84, 0, 112, 97, 114, 115, 101, 77, 101, 109, 111, 114, 121, 0, 115, 91, 50, 93, 45, 62, 115, 116, 114, 40, 41, 32, 61, 61, 32, 77, 69, 77, 79, 82, 89, 0, 112, 97, 114, 115, 101, 69, 120, 112, 111, 114, 116, 0, 109, 101, 109, 111, 114, 121, 32, 101, 120, 112, 111, 114, 116, 101, 100, 32, 98, 117, 116, 32, 110, 111, 32, 109, 101, 109, 111, 114, 121, 0, 105, 32, 61, 61, 32, 115, 46, 115, 105, 122, 101, 40, 41, 0, 112, 97, 114, 115, 101, 71, 108, 111, 98, 97, 108, 0, 117, 110, 102, 97, 109, 105, 108, 105, 97, 114, 32, 115, 101, 99, 116, 105, 111, 110, 58, 32, 0, 112, 111, 115, 32, 43, 32, 110, 97, 109, 101, 83, 105, 122, 101, 32, 45, 32, 49, 32, 60, 32, 105, 110, 112, 117, 116, 46, 115, 105, 122, 101, 40, 41, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 98, 105, 110, 97, 114, 121, 46, 104, 0, 114, 101, 97, 100, 0, 112, 111, 115, 32, 61, 61, 32, 98, 101, 102, 111, 114, 101, 32, 43, 32, 115, 101, 99, 116, 105, 111, 110, 83, 105, 122, 101, 0, 61, 61, 32, 114, 101, 97, 100, 72, 101, 97, 100, 101, 114, 0, 115, 117, 114, 112, 114, 105, 115, 105, 110, 103, 32, 118, 97, 108, 117, 101, 0, 60, 61, 61, 0, 103, 101, 116, 73, 110, 116, 51, 50, 58, 32, 0, 32, 61, 61, 62, 0, 103, 101, 116, 73, 110, 116, 49, 54, 58, 32, 0, 117, 110, 101, 120, 112, 101, 99, 116, 101, 100, 32, 101, 110, 100, 32, 111, 102, 32, 105, 110, 112, 117, 116, 0, 103, 101, 116, 73, 110, 116, 56, 58, 32, 0, 32, 40, 97, 116, 32, 0, 103, 101, 116, 85, 51, 50, 76, 69, 66, 58, 32, 0, 115, 116, 100, 58, 58, 105, 115, 95, 115, 105, 103, 110, 101, 100, 60, 84, 62, 58, 58, 118, 97, 108, 117, 101, 32, 38, 38, 32, 108, 97, 115, 116, 32, 38, 38, 32, 34, 100, 114, 111, 112, 112, 101, 100, 32, 98, 105, 116, 115, 32, 111, 110, 108, 121, 32, 118, 97, 108, 105, 100, 32, 102, 111, 114, 32, 115, 105, 103, 110, 101, 100, 32, 76, 69, 66, 34, 0, 115, 105, 122, 101, 95, 116, 40, 115, 104, 105, 102, 116, 41, 32, 60, 32, 115, 105, 122, 101, 111, 102, 40, 84, 41, 32, 42, 32, 56, 32, 38, 38, 32, 34, 76, 69, 66, 32, 111, 118, 101, 114, 102, 108, 111, 119, 34, 0, 78, 83, 116, 51, 95, 95, 50, 49, 55, 98, 97, 100, 95, 102, 117, 110, 99, 116, 105, 111, 110, 95, 99, 97, 108, 108, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 55, 87, 97, 115, 109, 66, 105, 110, 97, 114, 121, 66, 117, 105, 108, 100, 101, 114, 57, 103, 101, 116, 85, 51, 50, 76, 69, 66, 69, 118, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 52, 95, 69, 69, 70, 104, 118, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 104, 118, 69, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 55, 87, 97, 115, 109, 66, 105, 110, 97, 114, 121, 66, 117, 105, 108, 100, 101, 114, 57, 103, 101, 116, 85, 51, 50, 76, 69, 66, 69, 118, 69, 85, 108, 118, 69, 95, 0, 112, 111, 115, 32, 43, 32, 115, 101, 99, 116, 105, 111, 110, 83, 105, 122, 101, 32, 60, 61, 32, 105, 110, 112, 117, 116, 46, 115, 105, 122, 101, 40, 41, 0, 61, 61, 32, 114, 101, 97, 100, 83, 116, 97, 114, 116, 0, 61, 61, 32, 114, 101, 97, 100, 77, 101, 109, 111, 114, 121, 0, 61, 61, 32, 114, 101, 97, 100, 83, 105, 103, 110, 97, 116, 117, 114, 101, 115, 0, 110, 117, 109, 58, 32, 0, 114, 101, 97, 100, 32, 111, 110, 101, 0, 102, 111, 114, 109, 32, 61, 61, 32, 66, 105, 110, 97, 114, 121, 67, 111, 110, 115, 116, 115, 58, 58, 84, 121, 112, 101, 70, 111, 114, 109, 115, 58, 58, 66, 97, 115, 105, 99, 0, 114, 101, 97, 100, 83, 105, 103, 110, 97, 116, 117, 114, 101, 115, 0, 110, 117, 109, 32, 112, 97, 114, 97, 109, 115, 58, 32, 0, 110, 117, 109, 82, 101, 115, 117, 108, 116, 115, 32, 61, 61, 32, 49, 0, 61, 61, 32, 114, 101, 97, 100, 73, 109, 112, 111, 114, 116, 115, 0, 105, 109, 112, 111, 114, 116, 36, 0, 105, 110, 100, 101, 120, 32, 60, 32, 119, 97, 115, 109, 46, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 46, 115, 105, 122, 101, 40, 41, 0, 114, 101, 97, 100, 73, 109, 112, 111, 114, 116, 115, 0, 99, 117, 114, 114, 45, 62, 116, 121, 112, 101, 45, 62, 110, 97, 109, 101, 46, 105, 115, 40, 41, 0, 105, 32, 60, 32, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 46, 115, 105, 122, 101, 40, 41, 0, 103, 101, 116, 73, 110, 108, 105, 110, 101, 83, 116, 114, 105, 110, 103, 58, 32, 0, 61, 61, 32, 114, 101, 97, 100, 70, 117, 110, 99, 116, 105, 111, 110, 83, 105, 103, 110, 97, 116, 117, 114, 101, 115, 0, 61, 61, 32, 114, 101, 97, 100, 70, 117, 110, 99, 116, 105, 111, 110, 115, 0, 116, 111, 116, 97, 108, 32, 61, 61, 32, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 46, 115, 105, 122, 101, 40, 41, 0, 114, 101, 97, 100, 70, 117, 110, 99, 116, 105, 111, 110, 115, 0, 114, 101, 97, 100, 32, 111, 110, 101, 32, 97, 116, 32, 0, 115, 105, 122, 101, 32, 62, 32, 48, 0, 114, 101, 97, 100, 105, 110, 103, 0, 112, 114, 111, 99, 101, 115, 115, 105, 110, 103, 32, 102, 117, 110, 99, 116, 105, 111, 110, 58, 32, 0, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 101, 109, 112, 116, 121, 40, 41, 0, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 83, 116, 97, 99, 107, 46, 101, 109, 112, 116, 121, 40, 41, 0, 100, 101, 112, 116, 104, 32, 61, 61, 32, 48, 0, 112, 111, 115, 32, 61, 61, 32, 101, 110, 100, 79, 102, 70, 117, 110, 99, 116, 105, 111, 110, 0, 118, 97, 114, 36, 0, 122, 122, 32, 114, 101, 99, 117, 114, 115, 101, 32, 105, 110, 116, 111, 32, 0, 32, 97, 116, 32, 0, 114, 101, 97, 100, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 115, 101, 101, 105, 110, 103, 32, 0, 98, 97, 100, 32, 99, 111, 100, 101, 32, 48, 120, 0, 122, 122, 32, 114, 101, 99, 117, 114, 115, 101, 32, 102, 114, 111, 109, 32, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 66, 108, 111, 99, 107, 0, 101, 110, 100, 32, 62, 61, 32, 115, 116, 97, 114, 116, 0, 118, 105, 115, 105, 116, 66, 108, 111, 99, 107, 0, 10, 32, 122, 122, 32, 66, 108, 111, 99, 107, 32, 101, 108, 101, 109, 101, 110, 116, 32, 0, 108, 97, 98, 101, 108, 36, 0, 112, 111, 115, 32, 62, 32, 48, 0, 117, 110, 103, 101, 116, 73, 110, 116, 56, 0, 117, 110, 103, 101, 116, 73, 110, 116, 56, 32, 40, 97, 116, 32, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 73, 102, 0, 108, 97, 115, 116, 83, 101, 112, 97, 114, 97, 116, 111, 114, 32, 61, 61, 32, 66, 105, 110, 97, 114, 121, 67, 111, 110, 115, 116, 115, 58, 58, 69, 110, 100, 0, 118, 105, 115, 105, 116, 73, 102, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 76, 111, 111, 112, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 66, 114, 101, 97, 107, 0, 97, 114, 105, 116, 121, 32, 61, 61, 32, 48, 32, 124, 124, 32, 97, 114, 105, 116, 121, 32, 61, 61, 32, 49, 0, 118, 105, 115, 105, 116, 66, 114, 101, 97, 107, 0, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 45, 32, 49, 32, 45, 32, 111, 102, 102, 115, 101, 116, 32, 60, 32, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 0, 103, 101, 116, 66, 114, 101, 97, 107, 78, 97, 109, 101, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 83, 119, 105, 116, 99, 104, 0, 118, 105, 115, 105, 116, 83, 119, 105, 116, 99, 104, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 67, 97, 108, 108, 0, 105, 110, 100, 101, 120, 32, 60, 32, 102, 117, 110, 99, 116, 105, 111, 110, 84, 121, 112, 101, 115, 46, 115, 105, 122, 101, 40, 41, 0, 118, 105, 115, 105, 116, 67, 97, 108, 108, 0, 110, 117, 109, 32, 61, 61, 32, 97, 114, 105, 116, 121, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 67, 97, 108, 108, 73, 109, 112, 111, 114, 116, 0, 118, 105, 115, 105, 116, 67, 97, 108, 108, 73, 109, 112, 111, 114, 116, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 67, 97, 108, 108, 73, 109, 112, 111, 114, 116, 32, 0, 32, 119, 105, 116, 104, 32, 116, 121, 112, 101, 32, 0, 32, 97, 110, 100, 32, 0, 32, 112, 97, 114, 97, 109, 115, 10, 0, 105, 32, 60, 32, 105, 109, 112, 111, 114, 116, 115, 46, 115, 105, 122, 101, 40, 41, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 67, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 0, 118, 105, 115, 105, 116, 67, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 71, 101, 116, 76, 111, 99, 97, 108, 32, 0, 99 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 10244); allocate([ 117, 114, 114, 45, 62, 105, 110, 100, 101, 120, 32, 60, 32, 99, 117, 114, 114, 70, 117, 110, 99, 116, 105, 111, 110, 45, 62, 103, 101, 116, 78, 117, 109, 76, 111, 99, 97, 108, 115, 40, 41, 0, 118, 105, 115, 105, 116, 71, 101, 116, 76, 111, 99, 97, 108, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 83, 101, 116, 76, 111, 99, 97, 108, 0, 118, 105, 115, 105, 116, 83, 101, 116, 76, 111, 99, 97, 108, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 71, 101, 116, 71, 108, 111, 98, 97, 108, 32, 0, 99, 117, 114, 114, 45, 62, 105, 110, 100, 101, 120, 32, 60, 32, 119, 97, 115, 109, 46, 103, 108, 111, 98, 97, 108, 115, 46, 115, 105, 122, 101, 40, 41, 0, 118, 105, 115, 105, 116, 71, 101, 116, 71, 108, 111, 98, 97, 108, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 83, 101, 116, 71, 108, 111, 98, 97, 108, 0, 118, 105, 115, 105, 116, 83, 101, 116, 71, 108, 111, 98, 97, 108, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 83, 101, 108, 101, 99, 116, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 82, 101, 116, 117, 114, 110, 0, 118, 105, 115, 105, 116, 82, 101, 116, 117, 114, 110, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 78, 111, 112, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 85, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 66, 105, 110, 97, 114, 121, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 85, 110, 97, 114, 121, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 67, 111, 110, 115, 116, 0, 118, 97, 108, 117, 101, 32, 60, 32, 48, 32, 38, 38, 32, 34, 115, 105, 103, 110, 45, 101, 120, 116, 101, 110, 100, 32, 115, 104, 111, 117, 108, 100, 32, 112, 114, 111, 100, 117, 99, 101, 115, 32, 97, 32, 110, 101, 103, 97, 116, 105, 118, 101, 32, 118, 97, 108, 117, 101, 34, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 55, 87, 97, 115, 109, 66, 105, 110, 97, 114, 121, 66, 117, 105, 108, 100, 101, 114, 57, 103, 101, 116, 83, 51, 50, 76, 69, 66, 69, 118, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 52, 95, 69, 69, 70, 97, 118, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 97, 118, 69, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 55, 87, 97, 115, 109, 66, 105, 110, 97, 114, 121, 66, 117, 105, 108, 100, 101, 114, 57, 103, 101, 116, 83, 51, 50, 76, 69, 66, 69, 118, 69, 85, 108, 118, 69, 95, 0, 103, 101, 116, 85, 54, 52, 76, 69, 66, 58, 32, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 55, 87, 97, 115, 109, 66, 105, 110, 97, 114, 121, 66, 117, 105, 108, 100, 101, 114, 57, 103, 101, 116, 83, 54, 52, 76, 69, 66, 69, 118, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 52, 95, 69, 69, 70, 97, 118, 69, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 55, 87, 97, 115, 109, 66, 105, 110, 97, 114, 121, 66, 117, 105, 108, 100, 101, 114, 57, 103, 101, 116, 83, 54, 52, 76, 69, 66, 69, 118, 69, 85, 108, 118, 69, 95, 0, 103, 101, 116, 70, 108, 111, 97, 116, 51, 50, 58, 32, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 102, 51, 50, 0, 103, 101, 116, 70, 108, 111, 97, 116, 54, 52, 58, 32, 0, 103, 101, 116, 73, 110, 116, 54, 52, 58, 32, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 102, 54, 52, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 76, 111, 97, 100, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 83, 116, 111, 114, 101, 0, 122, 122, 32, 110, 111, 100, 101, 58, 32, 72, 111, 115, 116, 0, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 62, 32, 48, 0, 112, 111, 112, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 0, 61, 61, 32, 114, 101, 97, 100, 69, 120, 112, 111, 114, 116, 115, 0, 114, 101, 97, 100, 69, 120, 112, 111, 114, 116, 115, 0, 61, 61, 32, 114, 101, 97, 100, 71, 108, 111, 98, 97, 108, 115, 0, 114, 101, 97, 100, 71, 108, 111, 98, 97, 108, 115, 0, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 61, 61, 32, 114, 101, 97, 100, 68, 97, 116, 97, 83, 101, 103, 109, 101, 110, 116, 115, 0, 61, 61, 32, 114, 101, 97, 100, 70, 117, 110, 99, 116, 105, 111, 110, 84, 97, 98, 108, 101, 0, 61, 61, 32, 114, 101, 97, 100, 78, 97, 109, 101, 115, 0, 110, 117, 109, 32, 61, 61, 32, 102, 117, 110, 99, 116, 105, 111, 110, 115, 46, 115, 105, 122, 101, 40, 41, 0, 114, 101, 97, 100, 78, 97, 109, 101, 115, 0, 110, 117, 109, 76, 111, 99, 97, 108, 115, 32, 61, 61, 32, 48, 0, 105, 110, 100, 101, 120, 32, 60, 32, 119, 97, 115, 109, 46, 102, 117, 110, 99, 116, 105, 111, 110, 115, 46, 115, 105, 122, 101, 40, 41, 0, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 115, 0, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 0, 90, 49, 49, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 69, 49, 57, 74, 83, 69, 120, 116, 101, 114, 110, 97, 108, 73, 110, 116, 101, 114, 102, 97, 99, 101, 0, 78, 52, 119, 97, 115, 109, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 49, 55, 69, 120, 116, 101, 114, 110, 97, 108, 73, 110, 116, 101, 114, 102, 97, 99, 101, 69, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 110, 101, 119, 66, 117, 102, 102, 101, 114, 39, 93, 32, 61, 32, 110, 101, 119, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 36, 48, 41, 59, 32, 125, 0, 123, 32, 118, 97, 114, 32, 115, 111, 117, 114, 99, 101, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 72, 69, 65, 80, 56, 39, 93, 46, 115, 117, 98, 97, 114, 114, 97, 121, 40, 36, 49, 44, 32, 36, 49, 32, 43, 32, 36, 50, 41, 59, 32, 118, 97, 114, 32, 116, 97, 114, 103, 101, 116, 32, 61, 32, 110, 101, 119, 32, 73, 110, 116, 56, 65, 114, 114, 97, 121, 40, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 110, 101, 119, 66, 117, 102, 102, 101, 114, 39, 93, 41, 59, 32, 116, 97, 114, 103, 101, 116, 46, 115, 101, 116, 40, 115, 111, 117, 114, 99, 101, 44, 32, 36, 48, 41, 59, 32, 125, 0, 99, 97, 108, 108, 105, 110, 103, 32, 105, 109, 112, 111, 114, 116, 32, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 91, 93, 59, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 46, 112, 117, 115, 104, 40, 36, 48, 41, 32, 125, 0, 123, 32, 118, 97, 114, 32, 109, 111, 100, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 59, 32, 118, 97, 114, 32, 98, 97, 115, 101, 32, 61, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 49, 41, 59, 32, 118, 97, 114, 32, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 39, 93, 32, 61, 32, 110, 117, 108, 108, 59, 32, 118, 97, 114, 32, 108, 111, 111, 107, 117, 112, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 108, 111, 111, 107, 117, 112, 73, 109, 112, 111, 114, 116, 39, 93, 40, 109, 111, 100, 44, 32, 98, 97, 115, 101, 41, 59, 32, 114, 101, 116, 117, 114, 110, 32, 108, 111, 111, 107, 117, 112, 46, 97, 112, 112, 108, 121, 40, 110, 117, 108, 108, 44, 32, 116, 101, 109, 112, 65, 114, 103, 117, 109, 101, 110, 116, 115, 41, 59, 32, 125, 0, 99, 97, 108, 108, 105, 110, 103, 32, 105, 109, 112, 111, 114, 116, 32, 114, 101, 116, 117, 114, 110, 105, 110, 103, 32, 0, 123, 32, 118, 97, 114, 32, 97, 100, 100, 114, 32, 61, 32, 36, 48, 59, 32, 118, 97, 114, 32, 98, 121, 116, 101, 115, 32, 61, 32, 36, 49, 59, 32, 118, 97, 114, 32, 105, 115, 70, 108, 111, 97, 116, 32, 61, 32, 36, 50, 59, 32, 118, 97, 114, 32, 105, 115, 83, 105, 103, 110, 101, 100, 32, 61, 32, 36, 51, 59, 32, 118, 97, 114, 32, 111, 117, 116, 54, 52, 32, 61, 32, 36, 52, 59, 32, 118, 97, 114, 32, 115, 97, 118, 101, 48, 32, 61, 32, 72, 69, 65, 80, 51, 50, 91, 48, 93, 59, 32, 118, 97, 114, 32, 115, 97, 118, 101, 49, 32, 61, 32, 72, 69, 65, 80, 51, 50, 91, 49, 93, 59, 32, 102, 111, 114, 32, 40, 118, 97, 114, 32, 105, 32, 61, 32, 48, 59, 32, 105, 32, 60, 32, 98, 121, 116, 101, 115, 59, 32, 105, 43, 43, 41, 32, 123, 32, 72, 69, 65, 80, 85, 56, 91, 105, 93, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 34, 105, 110, 102, 111, 34, 93, 46, 112, 97, 114, 101, 110, 116, 91, 34, 72, 69, 65, 80, 85, 56, 34, 93, 91, 97, 100, 100, 114, 32, 43, 32, 105, 93, 59, 32, 125, 32, 118, 97, 114, 32, 114, 101, 116, 59, 32, 105, 102, 32, 40, 33, 105, 115, 70, 108, 111, 97, 116, 41, 32, 123, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 49, 41, 32, 114, 101, 116, 32, 61, 32, 105, 115, 83, 105, 103, 110, 101, 100, 32, 63, 32, 72, 69, 65, 80, 56, 91, 48, 93, 32, 58, 32, 72, 69, 65, 80, 85, 56, 91, 48, 93, 59, 32, 101, 108, 115, 101, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 50, 41, 32, 114, 101, 116, 32, 61, 32, 105, 115, 83, 105, 103, 110, 101, 100, 32, 63, 32, 72, 69, 65, 80, 49, 54, 91, 48, 93, 32, 58, 32, 72, 69, 65, 80, 85, 49, 54, 91, 48, 93, 59, 32, 101, 108, 115, 101, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 52, 41, 32, 114, 101, 116, 32, 61, 32, 105, 115, 83, 105, 103, 110, 101, 100, 32, 63, 32, 72, 69, 65, 80, 51, 50, 91, 48, 93, 32, 58, 32, 72, 69, 65, 80, 85, 51, 50, 91, 48, 93, 59, 32, 101, 108, 115, 101, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 56, 41, 32, 123, 32, 102, 111, 114, 32, 40, 118, 97, 114, 32, 105, 32, 61, 32, 48, 59, 32, 105, 32, 60, 32, 98, 121, 116, 101, 115, 59, 32, 105, 43, 43, 41, 32, 123, 32, 72, 69, 65, 80, 85, 56, 91, 111, 117, 116, 54, 52, 32, 43, 32, 105, 93, 32, 61, 32, 72, 69, 65, 80, 85, 56, 91, 105, 93, 59, 32, 125, 32, 125, 32, 101, 108, 115, 101, 32, 97, 98, 111, 114, 116, 40, 41, 59, 32, 125, 32, 101, 108, 115, 101, 32, 123, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 52, 41, 32, 114, 101, 116, 32, 61, 32, 72, 69, 65, 80, 70, 51, 50, 91, 48, 93, 59, 32, 101, 108, 115, 101, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 56, 41, 32, 114, 101, 116, 32, 61, 32, 72, 69, 65, 80, 70, 54, 52, 91, 48, 93, 59, 32, 101, 108, 115, 101, 32, 97, 98, 111, 114, 116, 40, 41, 59, 32, 125, 32, 72, 69, 65, 80, 51, 50, 91, 48, 93, 32, 61, 32, 115, 97, 118, 101, 48, 59, 32, 72, 69, 65, 80, 51, 50, 91, 49, 93, 32, 61, 32, 115, 97, 118, 101, 49, 59, 32, 114, 101, 116, 117, 114, 110, 32, 114, 101, 116, 59, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 56, 39, 93, 91, 36, 48, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 56, 39, 93, 91, 36, 48, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 85, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 51, 50, 39, 93, 91, 36, 48, 32, 62, 62, 32, 50, 93, 32, 125, 0, 123, 32, 114, 101, 116, 117, 114, 110, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 70, 54, 52, 39, 93, 91, 36, 48, 32, 62, 62, 32, 51, 93, 32, 125, 0, 123, 32, 118, 97, 114, 32, 97, 100, 100, 114, 32, 61, 32, 36, 48, 59, 32, 118, 97, 114, 32, 98, 121, 116, 101, 115, 32, 61, 32, 36, 49, 59, 32, 118, 97, 114, 32, 105, 115, 70, 108, 111, 97, 116, 32, 61, 32, 36, 50, 59, 32, 118, 97, 114, 32, 118, 97, 108, 117, 101, 32, 61, 32, 36, 51, 59, 32, 118, 97, 114, 32, 115, 97, 118, 101, 48, 32, 61, 32, 72, 69, 65, 80, 51, 50, 91, 48, 93, 59, 32, 118, 97, 114, 32, 115, 97, 118, 101, 49, 32, 61, 32, 72, 69, 65, 80, 51, 50, 91, 49, 93, 59, 32, 105, 102, 32, 40, 33, 105, 115, 70, 108, 111, 97, 116, 41, 32, 123, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 49, 41, 32, 72, 69, 65, 80, 85, 56, 91, 48, 93, 32, 61, 32, 118, 97, 108, 117, 101, 59, 32, 101, 108, 115, 101, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 50, 41, 32, 72, 69, 65, 80, 85, 49, 54, 91, 48, 93, 32, 61, 32, 118, 97, 108, 117, 101, 59, 32, 101, 108, 115, 101, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 52, 41, 32, 72, 69, 65, 80, 85, 51, 50, 91, 48, 93, 32, 61, 32, 118, 97, 108, 117, 101, 59, 32, 101, 108, 115, 101, 32, 97, 98, 111, 114, 116, 40, 41, 59, 32, 125, 32, 101, 108, 115, 101, 32, 123, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 52, 41, 32, 72, 69, 65, 80, 70, 51, 50, 91, 48, 93, 32, 61, 32, 118, 97, 108, 117, 101, 59, 32, 101, 108, 115, 101, 32, 105, 102, 32, 40, 98, 121, 116, 101, 115, 32, 61, 61, 61, 32, 56, 41, 32, 72, 69, 65, 80, 70, 54, 52, 91, 48, 93, 32, 61, 32, 118, 97, 108, 117, 101, 59, 32, 101, 108, 115, 101, 32, 97, 98, 111, 114, 116, 40, 41, 59, 32, 125, 32, 102, 111, 114, 32, 40, 118, 97, 114, 32, 105, 32, 61, 32, 48, 59, 32, 105, 32, 60, 32, 98, 121, 116, 101, 115, 59, 32, 105, 43, 43, 41, 32, 123, 32, 77, 111, 100, 117, 108, 101, 91, 34, 105, 110, 102, 111, 34, 93, 46, 112, 97, 114, 101, 110, 116, 91, 34, 72, 69, 65, 80, 85, 56, 34, 93, 91, 97, 100, 100, 114, 32, 43, 32, 105, 93, 32, 61, 32, 72, 69, 65, 80, 85, 56, 91, 105, 93, 59, 32, 125, 32, 72, 69, 65, 80, 51, 50, 91, 48, 93, 32, 61, 32, 115, 97, 118, 101, 48, 59, 32, 72, 69, 65, 80, 51, 50, 91, 49, 93, 32, 61, 32, 115, 97, 118, 101, 49, 59, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 56, 39, 93, 91, 36, 48, 93, 32, 61, 32, 36, 49, 32, 125, 0, 123, 32, 77, 111, 100, 117, 108, 101, 91, 39, 105, 110, 102, 111, 39, 93, 46, 112, 97, 114, 101, 110, 116, 91, 39, 72, 69, 65, 80, 49, 54, 39, 93, 91, 36, 48, 32, 62, 62, 32, 49, 93, 32, 61, 32, 36, 49, 32, 125, 0, 103, 101, 116, 105, 54, 52, 0, 123, 32, 118, 97, 114, 32, 115, 105, 122, 101, 32, 61, 32, 36, 48, 59, 32, 118, 97, 114, 32, 98, 117, 102, 102, 101, 114, 59, 32, 116, 114, 121, 32, 123, 32, 98, 117, 102, 102, 101, 114, 32, 61, 32, 110, 101, 119, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 115, 105, 122, 101, 41, 59, 32, 125, 32, 99, 97, 116, 99, 104, 40, 101, 41, 32, 123, 32, 114, 101, 116, 117, 114, 110, 59, 32, 125, 32, 118, 97, 114, 32, 111, 108, 100, 72, 69, 65, 80, 56, 32, 61, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 72, 69, 65, 80, 56, 39, 93, 59, 32, 118, 97, 114, 32, 116, 101, 109, 112, 32, 61, 32, 110, 101, 119, 32, 73, 110, 116, 56, 65, 114, 114, 97, 121, 40, 98, 117, 102, 102, 101, 114, 41, 59, 32, 116, 101, 109, 112, 46, 115, 101, 116, 40, 111, 108, 100, 72, 69, 65, 80, 56, 41, 59, 32, 77, 111, 100, 117, 108, 101, 91, 39, 111, 117, 116, 115, 105, 100, 101, 39, 93, 91, 39, 98, 117, 102, 102, 101, 114, 39, 93, 32, 61, 32, 98, 117, 102, 102, 101, 114, 59, 32, 125, 0, 123, 32, 97, 98, 111, 114, 116, 40, 34, 119, 97, 115, 109, 32, 116, 114, 97, 112, 58, 32, 34, 32, 43, 32, 80, 111, 105, 110, 116, 101, 114, 95, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 36, 48, 41, 41, 59, 32, 125, 0, 78, 52, 119, 97, 115, 109, 49, 54, 71, 108, 111, 98, 97, 108, 73, 110, 105, 116, 82, 117, 110, 110, 101, 114, 69, 0, 78, 52, 119, 97, 115, 109, 49, 54, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 73, 78, 83, 95, 49, 54, 71, 108, 111, 98, 97, 108, 73, 110, 105, 116, 82, 117, 110, 110, 101, 114, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 55, 86, 105, 115, 105, 116, 111, 114, 73, 78, 83, 95, 49, 54, 71, 108, 111, 98, 97, 108, 73, 110, 105, 116, 82, 117, 110, 110, 101, 114, 69, 78, 83, 95, 52, 70, 108, 111, 119, 69, 69, 69, 0, 101, 120, 116, 101, 110, 100, 84, 111, 83, 73, 54, 52, 0, 101, 120, 116, 101, 110, 100, 84, 111, 85, 73, 54, 52, 0, 116, 114, 117, 110, 99, 97, 116, 101, 84, 111, 73, 51, 50, 0, 116, 114, 117, 110, 99, 83, 70, 108, 111, 97, 116, 32, 111, 102, 32, 110, 97, 110, 0, 105, 51, 50, 46, 116, 114, 117, 110, 99, 83, 70, 108, 111, 97, 116, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 105, 54, 52, 46, 116, 114, 117, 110, 99, 83, 70, 108, 111, 97, 116, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 102, 51, 50, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 105, 51, 50, 0, 116, 114, 117, 110, 99, 85, 70, 108, 111, 97, 116, 32, 111, 102, 32, 110, 97, 110, 0, 105, 51, 50, 46, 116, 114, 117, 110, 99, 85, 70, 108, 111, 97, 116, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 105, 54, 52, 46, 116, 114, 117, 110, 99, 85, 70, 108, 111, 97, 116, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 99, 97, 115, 116, 84, 111, 73, 51, 50, 0, 101, 120, 116, 101, 110, 100, 84, 111, 70, 54, 52, 0, 116, 121, 112, 101, 32, 61, 61, 32, 87, 97, 115, 109, 84, 121, 112, 101, 58, 58, 102, 54, 52, 0, 99, 97, 115, 116, 84, 111, 73, 54, 52, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 105, 54, 52, 0, 116, 114, 117, 110, 99, 97, 116, 101, 84, 111, 70, 51, 50, 0, 105, 115, 67, 111, 110, 99, 114, 101, 116, 101, 87, 97, 115, 109, 84, 121, 112, 101, 40, 99, 117, 114, 114, 45, 62, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 41, 32, 63, 32, 108, 101, 102, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 108, 101, 102, 116, 45, 62, 116, 121, 112, 101, 32, 58, 32, 116, 114, 117, 101, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 105, 110, 116, 101, 114, 112, 114, 101, 116, 101, 114, 46, 104, 0, 118, 105, 115, 105, 116, 66, 105, 110, 97, 114, 121, 0, 105, 115, 67, 111, 110, 99, 114, 101, 116, 101, 87, 97, 115, 109, 84, 121, 112, 101, 40, 99, 117, 114, 114, 45, 62, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 41, 32, 63, 32, 114, 105, 103, 104, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 114, 105, 103, 104, 116, 45, 62, 116, 121, 112, 101, 32, 58, 32, 116, 114, 117, 101, 0, 105, 51, 50, 46, 100, 105, 118, 95, 115, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 100, 105, 118, 95, 115, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 105, 51, 50, 46, 100, 105, 118, 95, 117, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 114, 101, 109, 95, 115, 32, 98, 121, 32, 48, 0, 105, 51, 50, 46, 114, 101, 109, 95, 117, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 100, 105, 118, 95, 115, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 100, 105, 118, 95, 115, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 105, 54, 52, 46, 100, 105, 118, 95, 117, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 114, 101, 109, 95, 115, 32, 98, 121, 32, 48, 0, 105, 54, 52, 46, 114, 101, 109, 95, 117, 32, 98, 121, 32, 48, 0, 115, 116, 100, 58, 58, 105, 115, 110, 97, 110, 40, 102, 41, 32, 38, 38, 32, 34, 101, 120, 112, 101, 99, 116, 101, 100, 32, 97, 32, 78, 97, 78, 34, 0, 115, 101, 116, 81, 117, 105, 101, 116, 78, 97, 78, 0, 115, 116, 97, 99, 107, 32, 108, 105, 109, 105, 116, 0, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 73, 110, 116, 101, 114, 110, 97, 108, 0, 33, 102, 108, 111, 119, 46, 98, 114, 101, 97, 107, 105, 110, 103, 40, 41, 32, 124, 124, 32, 102, 108, 111, 119, 46, 98, 114, 101, 97, 107, 84, 111, 32, 61, 61, 32, 82, 69, 84, 85, 82, 78, 95, 70, 76, 79, 87, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 114, 101, 115, 117, 108, 116, 32, 61, 61, 32, 114, 101, 116, 46, 116, 121, 112, 101, 0, 70, 117, 110, 99, 116, 105, 111, 110, 32, 96, 0, 96, 32, 101, 120, 112, 101, 99, 116, 115, 32, 0, 32, 112, 97, 114, 97, 109, 101, 116, 101, 114, 115, 44, 32, 103, 111, 116, 32, 0, 32, 97, 114, 103, 117, 109, 101, 110, 116, 115, 46, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 105, 115, 80, 97, 114, 97, 109, 40, 105, 41, 0, 70, 117, 110, 99, 116, 105, 111, 110, 83, 99, 111, 112, 101, 0, 96, 32, 101, 120, 112, 101, 99, 116, 115, 32, 116, 121, 112, 101, 32, 0, 32, 102, 111, 114, 32, 112, 97, 114, 97, 109, 101, 116, 101, 114, 32, 0, 44, 32, 103, 111, 116, 32, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 105, 115, 86, 97, 114, 40, 105, 41, 0, 90, 78, 52, 119, 97, 115, 109, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 50, 48, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 73, 110, 116, 101, 114, 110, 97, 108, 69, 78, 54, 99, 97, 115, 104, 101, 119, 55, 73, 83, 116, 114, 105, 110, 103, 69, 82, 78, 83, 116, 51, 95, 95, 50, 54, 118, 101, 99, 116, 111, 114, 73, 78, 83, 95, 55, 76, 105, 116, 101, 114, 97, 108, 69, 78, 83, 51, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 53, 95, 69, 69, 69, 69, 69, 50, 51, 82, 117, 110, 116, 105, 109, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 0, 78, 52, 119, 97, 115, 109, 49, 54, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 73, 90, 78, 83, 95, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 50, 48, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 73, 110, 116, 101, 114, 110, 97, 108, 69, 78, 54, 99, 97, 115, 104, 101, 119, 55, 73, 83, 116, 114, 105, 110, 103, 69, 82, 78, 83, 116, 51, 95, 95, 50, 54, 118, 101, 99, 116, 111, 114, 73, 78, 83, 95, 55, 76, 105, 116, 101, 114, 97, 108, 69, 78, 83, 52, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 69, 69, 69, 50, 51, 82, 117, 110, 116, 105, 109, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 69, 69, 0, 78, 52, 119, 97, 115, 109, 55, 86, 105, 115, 105, 116, 111, 114, 73, 90, 78, 83, 95, 49, 52, 77, 111, 100, 117, 108, 101, 73, 110, 115, 116, 97, 110, 99, 101, 50, 48, 99, 97, 108, 108, 70, 117, 110, 99, 116, 105, 111, 110, 73, 110, 116, 101, 114, 110, 97, 108, 69, 78, 54, 99, 97, 115, 104, 101, 119, 55, 73, 83, 116, 114, 105, 110, 103, 69, 82, 78, 83, 116, 51, 95, 95, 50, 54, 118, 101, 99, 116, 111, 114, 73, 78, 83, 95, 55, 76, 105, 116, 101, 114, 97, 108, 69, 78, 83, 52, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 69, 69, 69, 50, 51, 82, 117, 110, 116, 105, 109, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 82, 117, 110, 110, 101, 114, 78, 83, 95, 52, 70, 108, 111, 119, 69, 69, 69, 0, 99, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 58, 32, 111, 118, 101, 114, 102, 108, 111, 119, 0, 99, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 58, 32, 98, 97, 100, 32, 116, 121, 112, 101, 0, 99, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 58, 32, 98, 97, 100, 32, 35, 32, 111, 102, 32, 97, 114, 103, 117, 109, 101, 110, 116, 115, 0, 99, 97, 108, 108, 73, 110, 100, 105, 114, 101, 99, 116, 58, 32, 98, 97, 100, 32, 97, 114, 103, 117, 109, 101, 110, 116, 32, 116, 121, 112, 101, 0, 102, 108, 111, 119, 46, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 99, 117, 114, 114, 45, 62, 116, 121, 112, 101, 0, 111, 102, 102, 115, 101, 116, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 102, 105, 110, 97, 108, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 98, 121, 116, 101, 115, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 104, 105, 103, 104, 101, 115, 116, 32, 62, 32, 109, 101, 109, 111, 114, 121, 0, 32, 62, 32, 0, 78, 83, 116, 51, 95, 95, 50, 49, 56, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 99, 69, 69, 69, 69, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 100, 101, 108, 116, 97, 32, 114, 101, 108, 97, 116, 105, 118, 101, 108, 121, 32, 116, 111, 111, 32, 98, 105, 103, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 100, 101, 108, 116, 97, 32, 111, 98, 106, 101, 99, 116, 105, 118, 101, 108, 121, 32, 116, 111, 111, 32, 98, 105, 103, 0, 103, 114, 111, 119, 77, 101, 109, 111, 114, 121, 58, 32, 101, 120, 99, 101, 101, 100, 115, 32, 109, 97, 120, 0, 47, 61, 61, 32, 40, 98, 105, 110, 97, 114, 121, 101, 110, 32, 105, 110, 116, 101, 114, 112, 114, 101, 116, 101, 114, 32, 115, 116, 97, 99, 107, 32, 116, 114, 97, 99, 101, 41, 10, 0, 124, 58, 32, 0, 92, 61, 61, 10, 0, 101, 120, 112, 111, 114, 116, 115, 77, 97, 112, 46, 99, 111, 117, 110, 116, 40, 110, 97, 109, 101, 41, 0, 103, 101, 116, 69, 120, 112, 111, 114, 116, 0, 102, 117, 110, 99, 116, 105, 111, 110, 115, 77, 97, 112, 46, 99, 111, 117, 110, 116, 40, 110, 97, 109, 101, 41, 0, 103, 101, 116, 70, 117, 110, 99, 116, 105, 111, 110, 0, 99, 97, 108, 108, 69, 120, 112, 111, 114, 116, 32, 110, 111, 116, 32, 102, 111, 117, 110, 100, 0, 46, 99, 111, 110, 115, 116, 32, 0, 58, 48, 120, 0, 78, 97, 78, 80, 97, 121, 108, 111, 97, 100, 0, 45, 48, 0, 37, 108, 102, 0, 100, 32, 62, 61, 32, 48, 0, 110, 117, 109, 84, 111, 83, 116, 114, 105, 110, 103, 0, 48, 120, 37, 108, 108, 120, 0, 37, 108, 108, 117, 0, 37, 108, 108, 120, 0, 37, 101, 0, 37, 46, 48, 102, 0, 110, 117, 109, 32, 60, 32, 49, 48, 48, 48, 0, 103, 101, 116, 105, 51, 50, 0, 103, 101, 116, 102, 51, 50, 0, 103, 101, 116, 102, 54, 52, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 48, 112, 114, 111, 99, 101, 115, 115, 65, 115, 109, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 49, 51, 70, 105, 110, 97, 108, 105, 122, 101, 67, 97, 108, 108, 115, 0, 78, 52, 119, 97, 115, 109, 49, 48, 87, 97, 108, 107, 101, 114, 80, 97, 115, 115, 73, 78, 83, 95, 49, 48, 80, 111, 115, 116, 87, 97, 108, 107, 101, 114, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 48, 112, 114, 111, 99, 101, 115, 115, 65, 115, 109, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 49, 51, 70, 105, 110, 97, 108, 105, 122, 101, 67, 97, 108, 108, 115, 78, 83, 95, 55, 86, 105, 115, 105, 116, 111, 114, 73, 83, 53, 95, 118, 69, 69, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 49, 48, 80, 111, 115, 116, 87, 97, 108, 107, 101, 114, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 48, 112, 114, 111, 99, 101, 115, 115, 65, 115, 109, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 49, 51, 70, 105, 110, 97, 108, 105, 122, 101, 67, 97, 108, 108, 115, 78, 83, 95, 55, 86, 105, 115, 105, 116, 111, 114, 73, 83, 52, 95, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 54, 87, 97, 108, 107, 101, 114, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 48, 112, 114, 111, 99, 101, 115, 115, 65, 115, 109, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 49, 51, 70, 105, 110, 97, 108, 105, 122, 101, 67, 97, 108, 108, 115, 78, 83, 95, 55, 86, 105, 115, 105, 116, 111, 114, 73, 83, 52, 95, 118, 69, 69, 69, 69, 0, 78, 52, 119, 97, 115, 109, 55, 86, 105, 115, 105, 116, 111, 114, 73, 90, 78, 83, 95, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 48, 112, 114, 111, 99, 101, 115, 115, 65, 115, 109, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 49, 51, 70, 105, 110, 97, 108, 105, 122, 101, 67, 97, 108, 108, 115, 118, 69, 69, 0, 116, 121, 112, 101, 45, 62, 112, 97, 114, 97, 109, 115, 91, 105, 93, 32, 61, 61, 32, 102, 54, 52, 0, 105, 115, 67, 111, 110, 99, 114, 101, 116, 101, 87, 97, 115, 109, 84, 121, 112, 101, 40, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 41, 0, 109, 97, 107, 101, 67, 111, 110, 115, 116, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 49, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 69, 69, 0, 97, 116, 58, 32, 0, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 33, 61, 32, 109, 97, 112, 112, 101, 100, 71, 108, 111, 98, 97, 108, 115, 46, 101, 110, 100, 40, 41, 0, 116, 97, 114, 103, 101, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 118, 105, 101, 119, 115, 46, 102, 105, 110, 100, 40, 104, 101, 97, 112, 41, 32, 33, 61, 32, 118, 105, 101, 119, 115, 46, 101, 110, 100, 40, 41, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 97, 115, 115, 105, 103, 110, 0, 100, 100, 100, 0, 105, 105, 105, 0, 118, 0, 116, 97, 114, 103, 101, 116, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 98, 97, 100, 32, 117, 110, 97, 114, 121, 0, 97, 115, 116, 91, 50, 93, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 50, 0, 97, 115, 116, 91, 50, 93, 45, 62, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 102, 114, 111, 117, 110, 100, 32, 116, 97, 114, 103, 101, 116, 0, 116, 97, 114, 103, 101, 116, 91, 48, 93, 32, 61, 61, 32, 83, 85, 66, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 48, 93, 32, 61, 61, 32, 66, 73, 78, 65, 82, 89, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 49, 93, 32, 61, 61, 32, 65, 78, 68, 32, 38, 38, 32, 116, 97, 114, 103, 101, 116, 91, 50, 93, 91, 51, 93, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 0, 102, 117, 110, 99, 116, 105, 111, 110, 45, 62, 114, 101, 115, 117, 108, 116, 32, 61, 61, 32, 116, 121, 112, 101, 0, 98, 114, 101, 97, 107, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 62, 32, 48, 0, 99, 111, 110, 116, 105, 110, 117, 101, 83, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 62, 32, 48, 0, 119, 104, 105, 108, 101, 45, 111, 117, 116, 0, 119, 104, 105, 108, 101, 45, 105, 110, 0, 100, 111, 45, 111, 110, 99, 101, 0, 117, 110, 108, 105, 107, 101, 108, 121, 45, 99, 111, 110, 116, 105, 110, 117, 101, 0, 100, 111, 45, 111, 117, 116, 0, 100, 111, 45, 105, 110, 0, 102, 111, 114, 45, 111, 117, 116, 0, 102, 111, 114, 45, 105, 110, 0, 98, 114, 45, 62, 99, 111, 110, 100, 105, 116, 105, 111, 110, 45, 62, 116, 121, 112, 101, 32, 61, 61, 32, 105, 51, 50, 0, 99, 111, 110, 100, 105, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 78, 85, 77, 32, 124, 124, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 91, 48, 93, 32, 61, 61, 32, 85, 78, 65, 82, 89, 95, 80, 82, 69, 70, 73, 88, 0, 115, 119, 105, 116, 99, 104, 45, 100, 101, 102, 97, 117, 108, 116, 0, 105, 110, 100, 101, 120, 32, 62, 61, 32, 109, 105, 110, 0, 105, 110, 100, 101, 120, 32, 62, 61, 32, 48, 0, 115, 119, 105, 116, 99, 104, 45, 99, 97, 115, 101, 0, 99, 111, 110, 102, 117, 115, 105, 110, 103, 32, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 0, 98, 97, 100, 32, 119, 97, 115, 109, 32, 98, 105, 110, 97, 114, 121, 32, 111, 112, 0, 102, 97, 108, 115, 101, 32, 38, 38, 32, 34, 101, 120, 112, 101, 99, 116, 101, 100, 32, 115, 105, 103, 110, 101, 100, 32, 111, 114, 32, 117, 110, 115, 105, 103, 110, 101, 100, 32, 105, 110, 116, 51, 50, 34, 0, 99, 104, 101, 99, 107, 76, 105, 116, 101, 114, 97, 108, 0, 100, 101, 116, 101, 99, 116, 65, 115, 109, 84, 121, 112, 101, 0, 97, 115, 116, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 32, 38, 38, 32, 97, 115, 116, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 110, 111, 116, 101, 73, 109, 112, 111, 114, 116, 101, 100, 70, 117, 110, 99, 116, 105, 111, 110, 67, 97, 108, 108, 0, 116, 121, 112, 101, 36, 0, 108, 97, 98, 101, 108, 36, 98, 114, 101, 97, 107, 36, 0, 108, 97, 98, 101, 108, 36, 99, 111, 110, 116, 105, 110, 117, 101, 36, 0, 102, 109, 111, 100, 40, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 44, 32, 49, 41, 32, 61, 61, 32, 48, 0, 103, 101, 116, 73, 110, 116, 101, 103, 101, 114, 0, 100, 111, 117, 98, 108, 101, 40, 114, 101, 116, 41, 32, 61, 61, 32, 103, 101, 116, 78, 117, 109, 98, 101, 114, 40, 41, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 49, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 50, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 106, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 106, 69, 69, 69, 0, 98, 97, 100, 32, 112, 114, 111, 99, 101, 115, 115, 85, 110, 115, 104, 105, 102, 116, 101, 100, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 50, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 51, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 70, 80, 78, 83, 50, 95, 49, 48, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 69, 83, 53, 95, 106, 69, 69, 69, 0, 90, 78, 52, 119, 97, 115, 109, 49, 53, 65, 115, 109, 50, 87, 97, 115, 109, 66, 117, 105, 108, 100, 101, 114, 49, 53, 112, 114, 111, 99, 101, 115, 115, 70, 117, 110, 99, 116, 105, 111, 110, 69, 78, 54, 99, 97, 115, 104, 101, 119, 51, 82, 101, 102, 69, 69, 51, 36, 95, 51, 0, 59, 0, 112, 117, 115, 104, 95, 98, 97, 99, 107, 0, 103, 101, 116, 65, 114, 114, 97, 121, 0, 115, 114, 99, 32, 62, 32, 115, 116, 97, 114, 116, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 112, 97, 114, 115, 101, 114, 46, 104, 0, 70, 114, 97, 103, 0, 115, 116, 114, 99, 109, 112, 40, 115, 116, 114, 46, 115, 116, 114, 44, 32, 115, 116, 97, 114, 116, 41, 32, 61, 61, 32, 48, 0, 102, 114, 97, 103, 32, 112, 97, 114, 115, 105, 110, 103, 0, 37, 115, 58, 10, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 10, 0, 10, 10, 0, 110, 97, 109, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 83, 69, 80, 65, 82, 65, 84, 79, 82, 32, 38, 38, 32, 110, 97, 109, 101, 46, 115, 116, 114, 91, 48, 93, 32, 61, 61, 32, 39, 40, 39, 0, 112, 97, 114, 115, 101, 70, 117, 110, 99, 116, 105, 111, 110, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 40, 39, 0, 97, 114, 103, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 102, 117, 110, 99, 91, 48, 93, 32, 61, 61, 32, 68, 69, 70, 85, 78, 0, 97, 112, 112, 101, 110, 100, 65, 114, 103, 117, 109, 101, 110, 116, 84, 111, 70, 117, 110, 99, 116, 105, 111, 110, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 123, 39, 0, 112, 97, 114, 115, 101, 66, 114, 97, 99, 107, 101, 116, 101, 100, 66, 108, 111, 99, 107, 0, 59, 125, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 125, 39, 0, 110, 97, 109, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 112, 97, 114, 115, 101, 86, 97, 114, 0, 59, 44, 0, 118, 97, 114, 91, 48, 93, 32, 61, 61, 32, 86, 65, 82, 0, 97, 112, 112, 101, 110, 100, 84, 111, 86, 97, 114, 0, 104, 97, 115, 67, 104, 97, 114, 40, 115, 101, 112, 115, 44, 32, 42, 115, 114, 99, 41, 0, 112, 97, 114, 115, 101, 82, 101, 116, 117, 114, 110, 0, 112, 97, 114, 115, 101, 80, 97, 114, 101, 110, 110, 101, 100, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 41, 39, 0, 110, 101, 120, 116, 46, 116, 121, 112, 101, 32, 61, 61, 32, 75, 69, 89, 87, 79, 82, 68, 32, 38, 38, 32, 110, 101, 120, 116, 46, 115, 116, 114, 32, 61, 61, 32, 87, 72, 73, 76, 69, 0, 112, 97, 114, 115, 101, 68, 111, 0, 112, 97, 114, 115, 101, 83, 119, 105, 116, 99, 104, 0, 118, 97, 108, 117, 101, 46, 116, 121, 112, 101, 32, 61, 61, 32, 79, 80, 69, 82, 65, 84, 79, 82, 0, 118, 97, 108, 117, 101, 46, 115, 116, 114, 32, 61, 61, 32, 77, 73, 78, 85, 83, 0, 118, 97, 108, 117, 101, 50, 46, 105, 115, 78, 117, 109, 98, 101, 114, 40, 41, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 58, 39, 0, 115, 119, 105, 116, 99, 104, 95, 91, 48, 93, 32, 61, 61, 32, 83, 87, 73, 84, 67, 72, 0, 97, 112, 112, 101, 110, 100, 67, 97, 115, 101, 84, 111, 83, 119, 105, 116, 99, 104, 0, 97, 112, 112, 101, 110, 100, 68, 101, 102, 97, 117, 108, 116, 84, 111, 83, 119, 105, 116, 99, 104, 0, 97, 112, 112, 101, 110, 100, 67, 111, 100, 101, 84, 111, 83, 119, 105, 116, 99, 104, 0, 99, 111, 100, 101, 91, 48, 93, 32, 61, 61, 32, 66, 76, 79, 67, 75, 0, 112, 97, 114, 115, 101, 70, 111, 114, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 59, 39, 0, 112, 97, 114, 115, 101, 67, 97, 108, 108, 0, 44, 41, 0, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 80, 97, 114, 116, 115, 83, 116, 97, 99, 107, 46, 98, 97, 99, 107, 40, 41, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 0, 99, 97, 108, 108, 91, 48, 93, 32, 61, 61, 32, 67, 65, 76, 76, 0, 97, 112, 112, 101, 110, 100, 84, 111, 67, 97, 108, 108, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 91, 39, 0, 112, 97, 114, 115, 101, 73, 110, 100, 101, 120, 105, 110, 103, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 93, 39, 0, 42, 115, 114, 99, 32, 61, 61, 32, 39, 46, 39, 0, 112, 97, 114, 115, 101, 68, 111, 116, 116, 105, 110, 103, 0, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 0, 98, 97, 100, 32, 112, 97, 114, 115, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 115, 116, 97, 116, 101, 0, 105, 32, 60, 32, 40, 105, 110, 116, 41, 112, 97, 114, 116, 115, 46, 115, 105, 122, 101, 40, 41, 45, 49, 32, 38, 38, 32, 105, 32, 62, 61, 32, 51, 0, 112, 97, 114, 115, 101, 69, 120, 112, 114, 101, 115, 115, 105, 111, 110, 0, 112, 97, 114, 116, 115, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 49, 0, 105, 115, 78, 111, 100, 101, 0, 103, 101, 116, 78, 111, 100, 101, 0, 33, 105, 115, 78, 111, 100, 101, 0, 103, 101, 116, 79, 112, 0, 107, 101, 121, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 109, 97, 107, 101, 68, 111, 116, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 80, 97, 114, 101, 110, 0, 42, 115, 114, 99, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 66, 114, 97, 99, 101, 0, 44, 93, 0, 97, 114, 114, 97, 121, 91, 48, 93, 32, 61, 61, 32, 65, 82, 82, 65, 89, 0, 97, 112, 112, 101, 110, 100, 84, 111, 65, 114, 114, 97, 121, 0, 112, 97, 114, 115, 101, 65, 102, 116, 101, 114, 67, 117, 114, 108, 121, 0, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 73, 68, 69, 78, 84, 32, 124, 124, 32, 107, 101, 121, 46, 116, 121, 112, 101, 32, 61, 61, 32, 83, 84, 82, 73, 78, 71, 0, 44, 125, 0, 97, 114, 114, 97, 121, 91, 48, 93, 32, 61, 61, 32, 79, 66, 74, 69, 67, 84, 0, 97, 112, 112, 101, 110, 100, 84, 111, 79, 98, 106, 101, 99, 116, 0, 98, 108, 111, 99, 107, 91, 48, 93, 32, 61, 61, 32, 66, 76, 79, 67, 75, 0, 97, 112, 112, 101, 110, 100, 84, 111, 66, 108, 111, 99, 107, 0, 99, 111, 97, 108, 101, 115, 99, 101, 45, 108, 111, 99, 97, 108, 115, 0, 114, 101, 100, 117, 99, 101, 32, 35, 32, 111, 102, 32, 108, 111, 99, 97, 108, 115, 32, 98, 121, 32, 99, 111, 97, 108, 101, 115, 99, 105, 110, 103, 0, 99, 111, 97, 108, 101, 115, 99, 101, 45, 108, 111, 99, 97, 108, 115, 45, 108, 101, 97, 114, 110, 105, 110, 103, 0, 114, 101, 100, 117, 99, 101, 32, 35, 32, 111, 102, 32, 108, 111, 99, 97, 108, 115, 32, 98, 121, 32, 99, 111, 97, 108, 101, 115, 99, 105, 110, 103, 32, 97, 110, 100, 32, 108, 101, 97, 114, 110, 105, 110, 103, 0, 100, 99, 101, 0, 114, 101, 109, 111, 118, 101, 115, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 32, 99, 111, 100, 101, 0, 100, 114, 111, 112, 45, 114, 101, 116, 117, 114, 110, 45, 118, 97, 108, 117, 101, 115, 0, 115, 116, 111, 112, 115, 32, 114, 101, 108, 121, 105, 110, 103, 32, 111, 110, 32, 114, 101, 116, 117, 114, 110, 32, 118, 97, 108, 117, 101, 115, 32, 102, 114, 111, 109, 32, 115, 101, 116, 95, 108, 111, 99, 97, 108, 32, 97, 110, 100, 32, 115, 116, 111, 114, 101, 0, 100, 117, 112, 108, 105, 99, 97, 116, 101, 45, 102, 117, 110, 99, 116, 105, 111, 110, 45, 101, 108, 105, 109, 105, 110, 97, 116, 105, 111, 110, 0, 114, 101, 109, 111, 118, 101, 115, 32, 100, 117, 112, 108, 105, 99, 97, 116, 101, 32, 102, 117, 110, 99, 116, 105, 111, 110, 115, 0, 108, 111, 119, 101, 114, 45, 105, 102, 45, 101, 108, 115, 101, 0, 108, 111, 119, 101, 114, 115, 32, 105, 102, 45, 101, 108, 115, 101, 115, 32, 105, 110, 116, 111, 32, 105, 102, 115, 44, 32, 98, 108, 111, 99, 107, 115, 32, 97, 110, 100, 32, 98, 114, 97, 110, 99, 104, 101, 115, 0, 109, 101, 114, 103, 101, 45, 98, 108, 111, 99, 107, 115, 0, 109, 101, 114, 103, 101, 115, 32, 98, 108, 111, 99, 107, 115, 32, 116, 111, 32, 116, 104, 101, 105, 114, 32, 112, 97, 114, 101, 110, 116, 115, 0, 109, 101, 116, 114, 105, 99, 115, 0, 114, 101, 112, 111, 114, 116, 115, 32, 109, 101, 116, 114, 105, 99, 115, 0, 110, 109, 0, 110, 97, 109, 101, 32, 108, 105, 115, 116, 0, 110, 97, 109, 101, 45, 109, 97, 110, 97, 103, 101, 114, 0, 117, 116, 105, 108, 105, 116, 121, 32, 112, 97, 115, 115, 32, 116, 111, 32, 109, 97, 110, 97, 103, 101, 32, 110, 97, 109, 101, 115, 32, 105, 110, 32, 109, 111, 100, 117, 108, 101, 115, 0, 111, 112, 116, 105, 109, 105, 122, 101, 45, 105, 110, 115, 116, 114, 117, 99, 116, 105, 111, 110, 115, 0, 111, 112, 116, 105, 109, 105, 122, 101, 115, 32, 105, 110, 115, 116, 114, 117, 99, 116, 105, 111, 110, 32, 99, 111, 109, 98, 105, 110, 97, 116, 105, 111, 110, 115, 0, 112, 111, 115, 116, 45, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 0, 109, 105, 115, 99, 101, 108, 108, 97, 110, 101, 111, 117, 115, 32, 111, 112, 116, 105, 109, 105, 122, 97, 116, 105, 111, 110, 115, 32, 102, 111, 114, 32, 69, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 103, 101, 110, 101, 114, 97, 116, 101, 100, 32, 99, 111, 100, 101, 0, 112, 114, 105, 110, 116, 32, 105, 110, 32, 115, 45, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 102, 111, 114, 109, 97, 116, 0, 112, 114, 105, 110, 116, 45, 109, 105, 110, 105, 102, 105, 101, 100, 0, 112, 114, 105, 110, 116, 32, 105, 110, 32, 109, 105, 110, 105, 102, 105, 101, 100, 32, 115, 45, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 102, 111, 114, 109, 97, 116, 0, 112, 114, 105, 110, 116, 45, 102, 117, 108, 108, 0, 112, 114, 105, 110, 116, 32, 105, 110, 32, 102, 117, 108, 108, 32, 115, 45, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 32, 102, 111, 114, 109, 97, 116, 0, 114, 101, 109, 111, 118, 101, 45, 105, 109, 112, 111, 114, 116, 115, 0, 114, 101, 109, 111, 118, 101, 115, 32, 105, 109, 112, 111, 114, 116, 115, 32, 97, 110, 100, 32, 114, 101, 112, 108, 97, 99, 101, 115, 32, 116, 104, 101, 109, 32, 119, 105, 116, 104, 32, 110, 111, 112, 115, 0, 114, 101, 109, 111, 118, 101, 45, 109, 101, 109, 111, 114, 121, 0, 114, 101, 109, 111, 118, 101, 115, 32, 109, 101, 109, 111, 114, 121, 32, 115, 101, 103, 109, 101, 110, 116, 115, 0, 114, 101, 109, 111, 118, 101, 45, 117, 110, 117, 115, 101, 100, 45, 98, 114, 115, 0, 114, 101, 109, 111, 118, 101, 115, 32, 98, 114, 101, 97, 107, 115, 32, 102, 114, 111, 109, 32, 108, 111, 99, 97, 116, 105, 111, 110, 115, 32, 116, 104, 97, 116, 32, 97, 114, 101, 32, 110, 111, 116, 32, 110, 101, 101, 100, 101, 100, 0, 114, 101, 109, 111, 118, 101, 45, 117, 110, 117, 115, 101, 100, 45, 102, 117, 110, 99, 116, 105, 111, 110, 115, 0, 114, 101, 109, 111, 118, 101, 115, 32, 117, 110, 117, 115, 101, 100, 32, 102, 117, 110, 99, 116, 105, 111, 110, 115, 0, 114, 101, 109, 111, 118, 101, 45, 117, 110, 117, 115, 101, 100, 45, 110, 97, 109, 101, 115, 0, 114, 101, 109, 111, 118, 101, 115, 32, 110, 97, 109, 101, 115, 32, 102, 114, 111, 109, 32, 108, 111, 99, 97, 116, 105, 111, 110, 115, 32, 116, 104, 97, 116, 32, 97, 114, 101, 32, 110, 101, 118, 101, 114, 32, 98, 114, 97, 110, 99, 104, 101, 100, 32, 116, 111, 0, 114, 101, 111, 114, 100, 101, 114, 45, 102, 117 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 20484); allocate([ 110, 99, 116, 105, 111, 110, 115, 0, 115, 111, 114, 116, 115, 32, 102, 117, 110, 99, 116, 105, 111, 110, 115, 32, 98, 121, 32, 97, 99, 99, 101, 115, 115, 32, 102, 114, 101, 113, 117, 101, 110, 99, 121, 0, 114, 101, 111, 114, 100, 101, 114, 45, 108, 111, 99, 97, 108, 115, 0, 115, 111, 114, 116, 115, 32, 108, 111, 99, 97, 108, 115, 32, 98, 121, 32, 97, 99, 99, 101, 115, 115, 32, 102, 114, 101, 113, 117, 101, 110, 99, 121, 0, 115, 105, 109, 112, 108, 105, 102, 121, 45, 108, 111, 99, 97, 108, 115, 0, 109, 105, 115, 99, 101, 108, 108, 97, 110, 101, 111, 117, 115, 32, 108, 111, 99, 97, 108, 115, 45, 114, 101, 108, 97, 116, 101, 100, 32, 111, 112, 116, 105, 109, 105, 122, 97, 116, 105, 111, 110, 115, 0, 118, 97, 99, 117, 117, 109, 0, 114, 101, 109, 111, 118, 101, 115, 32, 111, 98, 118, 105, 111, 117, 115, 108, 121, 32, 117, 110, 110, 101, 101, 100, 101, 100, 32, 99, 111, 100, 101, 0, 112, 114, 101, 99, 111, 109, 112, 117, 116, 101, 0, 99, 111, 109, 112, 117, 116, 101, 115, 32, 99, 111, 109, 112, 105, 108, 101, 45, 116, 105, 109, 101, 32, 101, 118, 97, 108, 117, 97, 116, 97, 98, 108, 101, 32, 101, 120, 112, 114, 101, 115, 115, 105, 111, 110, 115, 0, 112, 97, 115, 115, 73, 110, 102, 111, 115, 46, 102, 105, 110, 100, 40, 110, 97, 109, 101, 41, 32, 61, 61, 32, 112, 97, 115, 115, 73, 110, 102, 111, 115, 46, 101, 110, 100, 40, 41, 0, 115, 114, 99, 47, 112, 97, 115, 115, 101, 115, 47, 112, 97, 115, 115, 46, 99, 112, 112, 0, 114, 101, 103, 105, 115, 116, 101, 114, 80, 97, 115, 115, 0, 80, 70, 80, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 118, 69, 0, 70, 80, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 118, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 80, 70, 80, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 118, 69, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 54, 95, 69, 69, 83, 53, 95, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 80, 78, 52, 119, 97, 115, 109, 52, 80, 97, 115, 115, 69, 118, 69, 69, 69, 0, 91, 80, 97, 115, 115, 82, 117, 110, 110, 101, 114, 93, 32, 114, 117, 110, 110, 105, 110, 103, 32, 112, 97, 115, 115, 101, 115, 46, 46, 46, 0, 91, 80, 97, 115, 115, 82, 117, 110, 110, 101, 114, 93, 32, 112, 97, 115, 115, 101, 115, 32, 116, 111, 111, 107, 32, 0, 32, 115, 101, 99, 111, 110, 100, 115, 46, 0, 91, 80, 97, 115, 115, 82, 117, 110, 110, 101, 114, 93, 32, 32, 32, 114, 117, 110, 110, 105, 110, 103, 32, 112, 97, 115, 115, 58, 32, 0, 46, 46, 46, 32, 0, 90, 90, 78, 52, 119, 97, 115, 109, 49, 48, 80, 97, 115, 115, 82, 117, 110, 110, 101, 114, 51, 114, 117, 110, 69, 118, 69, 78, 75, 51, 36, 95, 48, 99, 108, 69, 118, 69, 85, 108, 118, 69, 95, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 102, 117, 110, 99, 73, 90, 90, 78, 52, 119, 97, 115, 109, 49, 48, 80, 97, 115, 115, 82, 117, 110, 110, 101, 114, 51, 114, 117, 110, 69, 118, 69, 78, 75, 51, 36, 95, 48, 99, 108, 69, 118, 69, 85, 108, 118, 69, 95, 78, 83, 95, 57, 97, 108, 108, 111, 99, 97, 116, 111, 114, 73, 83, 53, 95, 69, 69, 70, 78, 83, 50, 95, 49, 53, 84, 104, 114, 101, 97, 100, 87, 111, 114, 107, 83, 116, 97, 116, 101, 69, 118, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 54, 95, 95, 98, 97, 115, 101, 73, 70, 78, 52, 119, 97, 115, 109, 49, 53, 84, 104, 114, 101, 97, 100, 87, 111, 114, 107, 83, 116, 97, 116, 101, 69, 118, 69, 69, 69, 0, 10, 0, 32, 32, 32, 32, 0, 40, 115, 101, 103, 109, 101, 110, 116, 32, 0, 32, 34, 0, 34, 41, 0, 92, 110, 0, 92, 48, 100, 0, 92, 116, 0, 92, 48, 99, 0, 92, 48, 56, 0, 92, 92, 0, 92, 34, 0, 92, 39, 0, 10, 32, 32, 0, 101, 120, 112, 111, 114, 116, 32, 0, 32, 109, 101, 109, 111, 114, 121, 41, 0, 102, 117, 110, 99, 32, 0, 40, 116, 121, 112, 101, 32, 0, 112, 97, 114, 97, 109, 32, 0, 114, 101, 115, 117, 108, 116, 32, 0, 108, 111, 99, 97, 108, 32, 0, 99, 117, 114, 114, 0, 118, 105, 115, 105, 116, 0, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 110, 111, 112, 0, 112, 97, 103, 101, 115, 105, 122, 101, 0, 99, 117, 114, 114, 101, 110, 116, 95, 109, 101, 109, 111, 114, 121, 0, 103, 114, 111, 119, 95, 109, 101, 109, 111, 114, 121, 0, 104, 97, 115, 102, 101, 97, 116, 117, 114, 101, 32, 0, 115, 101, 108, 101, 99, 116, 0, 27, 91, 51, 53, 109, 0, 27, 91, 49, 109, 0, 105, 51, 50, 46, 97, 100, 100, 0, 105, 51, 50, 46, 115, 117, 98, 0, 105, 51, 50, 46, 109, 117, 108, 0, 105, 51, 50, 46, 100, 105, 118, 95, 115, 0, 105, 51, 50, 46, 100, 105, 118, 95, 117, 0, 105, 51, 50, 46, 114, 101, 109, 95, 115, 0, 105, 51, 50, 46, 114, 101, 109, 95, 117, 0, 105, 51, 50, 46, 97, 110, 100, 0, 105, 51, 50, 46, 111, 114, 0, 105, 51, 50, 46, 120, 111, 114, 0, 105, 51, 50, 46, 115, 104, 108, 0, 105, 51, 50, 46, 115, 104, 114, 95, 117, 0, 105, 51, 50, 46, 115, 104, 114, 95, 115, 0, 105, 51, 50, 46, 114, 111, 116, 108, 0, 105, 51, 50, 46, 114, 111, 116, 114, 0, 105, 51, 50, 46, 101, 113, 0, 105, 51, 50, 46, 110, 101, 0, 105, 51, 50, 46, 108, 116, 95, 115, 0, 105, 51, 50, 46, 108, 116, 95, 117, 0, 105, 51, 50, 46, 108, 101, 95, 115, 0, 105, 51, 50, 46, 108, 101, 95, 117, 0, 105, 51, 50, 46, 103, 116, 95, 115, 0, 105, 51, 50, 46, 103, 116, 95, 117, 0, 105, 51, 50, 46, 103, 101, 95, 115, 0, 105, 51, 50, 46, 103, 101, 95, 117, 0, 105, 54, 52, 46, 97, 100, 100, 0, 105, 54, 52, 46, 115, 117, 98, 0, 105, 54, 52, 46, 109, 117, 108, 0, 105, 54, 52, 46, 100, 105, 118, 95, 115, 0, 105, 54, 52, 46, 100, 105, 118, 95, 117, 0, 105, 54, 52, 46, 114, 101, 109, 95, 115, 0, 105, 54, 52, 46, 114, 101, 109, 95, 117, 0, 105, 54, 52, 46, 97, 110, 100, 0, 105, 54, 52, 46, 111, 114, 0, 105, 54, 52, 46, 120, 111, 114, 0, 105, 54, 52, 46, 115, 104, 108, 0, 105, 54, 52, 46, 115, 104, 114, 95, 117, 0, 105, 54, 52, 46, 115, 104, 114, 95, 115, 0, 105, 54, 52, 46, 114, 111, 116, 108, 0, 105, 54, 52, 46, 114, 111, 116, 114, 0, 105, 54, 52, 46, 101, 113, 0, 105, 54, 52, 46, 110, 101, 0, 105, 54, 52, 46, 108, 116, 95, 115, 0, 105, 54, 52, 46, 108, 116, 95, 117, 0, 105, 54, 52, 46, 108, 101, 95, 115, 0, 105, 54, 52, 46, 108, 101, 95, 117, 0, 105, 54, 52, 46, 103, 116, 95, 115, 0, 105, 54, 52, 46, 103, 116, 95, 117, 0, 105, 54, 52, 46, 103, 101, 95, 115, 0, 105, 54, 52, 46, 103, 101, 95, 117, 0, 102, 51, 50, 46, 97, 100, 100, 0, 102, 51, 50, 46, 115, 117, 98, 0, 102, 51, 50, 46, 109, 117, 108, 0, 102, 51, 50, 46, 100, 105, 118, 0, 102, 51, 50, 46, 99, 111, 112, 121, 115, 105, 103, 110, 0, 102, 51, 50, 46, 109, 105, 110, 0, 102, 51, 50, 46, 109, 97, 120, 0, 102, 51, 50, 46, 101, 113, 0, 102, 51, 50, 46, 110, 101, 0, 102, 51, 50, 46, 108, 116, 0, 102, 51, 50, 46, 108, 101, 0, 102, 51, 50, 46, 103, 116, 0, 102, 51, 50, 46, 103, 101, 0, 102, 54, 52, 46, 97, 100, 100, 0, 102, 54, 52, 46, 115, 117, 98, 0, 102, 54, 52, 46, 109, 117, 108, 0, 102, 54, 52, 46, 100, 105, 118, 0, 102, 54, 52, 46, 99, 111, 112, 121, 115, 105, 103, 110, 0, 102, 54, 52, 46, 109, 105, 110, 0, 102, 54, 52, 46, 109, 97, 120, 0, 102, 54, 52, 46, 101, 113, 0, 102, 54, 52, 46, 110, 101, 0, 102, 54, 52, 46, 108, 116, 0, 102, 54, 52, 46, 108, 101, 0, 102, 54, 52, 46, 103, 116, 0, 102, 54, 52, 46, 103, 101, 0, 27, 91, 48, 109, 0, 105, 51, 50, 46, 99, 108, 122, 0, 105, 51, 50, 46, 99, 116, 122, 0, 105, 51, 50, 46, 112, 111, 112, 99, 110, 116, 0, 105, 51, 50, 46, 101, 113, 122, 0, 105, 54, 52, 46, 99, 108, 122, 0, 105, 54, 52, 46, 99, 116, 122, 0, 105, 54, 52, 46, 112, 111, 112, 99, 110, 116, 0, 105, 54, 52, 46, 101, 113, 122, 0, 102, 51, 50, 46, 110, 101, 103, 0, 102, 51, 50, 46, 97, 98, 115, 0, 102, 51, 50, 46, 99, 101, 105, 108, 0, 102, 51, 50, 46, 102, 108, 111, 111, 114, 0, 102, 51, 50, 46, 116, 114, 117, 110, 99, 0, 102, 51, 50, 46, 110, 101, 97, 114, 101, 115, 116, 0, 102, 51, 50, 46, 115, 113, 114, 116, 0, 102, 54, 52, 46, 110, 101, 103, 0, 102, 54, 52, 46, 97, 98, 115, 0, 102, 54, 52, 46, 99, 101, 105, 108, 0, 102, 54, 52, 46, 102, 108, 111, 111, 114, 0, 102, 54, 52, 46, 116, 114, 117, 110, 99, 0, 102, 54, 52, 46, 110, 101, 97, 114, 101, 115, 116, 0, 102, 54, 52, 46, 115, 113, 114, 116, 0, 105, 54, 52, 46, 101, 120, 116, 101, 110, 100, 95, 115, 47, 105, 51, 50, 0, 105, 54, 52, 46, 101, 120, 116, 101, 110, 100, 95, 117, 47, 105, 51, 50, 0, 105, 51, 50, 46, 119, 114, 97, 112, 47, 105, 54, 52, 0, 105, 51, 50, 46, 116, 114, 117, 110, 99, 95, 115, 47, 102, 51, 50, 0, 105, 54, 52, 46, 116, 114, 117, 110, 99, 95, 115, 47, 102, 51, 50, 0, 105, 51, 50, 46, 116, 114, 117, 110, 99, 95, 117, 47, 102, 51, 50, 0, 105, 54, 52, 46, 116, 114, 117, 110, 99, 95, 117, 47, 102, 51, 50, 0, 105, 51, 50, 46, 116, 114, 117, 110, 99, 95, 115, 47, 102, 54, 52, 0, 105, 54, 52, 46, 116, 114, 117, 110, 99, 95, 115, 47, 102, 54, 52, 0, 105, 51, 50, 46, 116, 114, 117, 110, 99, 95, 117, 47, 102, 54, 52, 0, 105, 54, 52, 46, 116, 114, 117, 110, 99, 95, 117, 47, 102, 54, 52, 0, 105, 51, 50, 46, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 102, 51, 50, 0, 105, 54, 52, 46, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 102, 54, 52, 0, 102, 51, 50, 46, 99, 111, 110, 118, 101, 114, 116, 95, 117, 47, 105, 51, 50, 0, 102, 54, 52, 46, 99, 111, 110, 118, 101, 114, 116, 95, 117, 47, 105, 51, 50, 0, 102, 51, 50, 46, 99, 111, 110, 118, 101, 114, 116, 95, 115, 47, 105, 51, 50, 0, 102, 54, 52, 46, 99, 111, 110, 118, 101, 114, 116, 95, 115, 47, 105, 51, 50, 0, 102, 51, 50, 46, 99, 111, 110, 118, 101, 114, 116, 95, 117, 47, 105, 54, 52, 0, 102, 54, 52, 46, 99, 111, 110, 118, 101, 114, 116, 95, 117, 47, 105, 54, 52, 0, 102, 51, 50, 46, 99, 111, 110, 118, 101, 114, 116, 95, 115, 47, 105, 54, 52, 0, 102, 54, 52, 46, 99, 111, 110, 118, 101, 114, 116, 95, 115, 47, 105, 54, 52, 0, 102, 54, 52, 46, 112, 114, 111, 109, 111, 116, 101, 47, 102, 51, 50, 0, 102, 51, 50, 46, 100, 101, 109, 111, 116, 101, 47, 102, 54, 52, 0, 102, 51, 50, 46, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 105, 51, 50, 0, 102, 54, 52, 46, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 47, 105, 54, 52, 0, 46, 115, 116, 111, 114, 101, 0, 49, 54, 0, 51, 50, 0, 32, 111, 102, 102, 115, 101, 116, 61, 0, 32, 97, 108, 105, 103, 110, 61, 0, 46, 108, 111, 97, 100, 0, 95, 115, 0, 95, 117, 0, 115, 101, 116, 95, 103, 108, 111, 98, 97, 108, 32, 0, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 32, 0, 115, 101, 116, 95, 108, 111, 99, 97, 108, 32, 0, 103, 101, 116, 95, 108, 111, 99, 97, 108, 32, 0, 99, 97, 108, 108, 95, 105, 110, 100, 105, 114, 101, 99, 116, 32, 0, 99, 97, 108, 108, 95, 105, 109, 112, 111, 114, 116, 32, 0, 99, 97, 108, 108, 32, 0, 98, 114, 95, 116, 97, 98, 108, 101, 0, 98, 114, 95, 105, 102, 32, 0, 98, 114, 32, 0, 108, 111, 111, 112, 0, 99, 117, 114, 114, 45, 62, 105, 110, 46, 105, 115, 40, 41, 0, 115, 114, 99, 47, 112, 97, 115, 115, 101, 115, 47, 80, 114, 105, 110, 116, 46, 99, 112, 112, 0, 118, 105, 115, 105, 116, 76, 111, 111, 112, 0, 117, 115, 101, 100, 69, 108, 101, 109, 101, 110, 116, 115, 32, 62, 32, 48, 0, 115, 114, 99, 47, 109, 105, 120, 101, 100, 95, 97, 114, 101, 110, 97, 46, 104, 0, 98, 97, 99, 107, 0, 27, 91, 51, 51, 109, 0, 40, 41, 0, 103, 108, 111, 98, 97, 108, 32, 0, 105, 109, 112, 111, 114, 116, 32, 0, 32, 40, 102, 117, 110, 99, 0, 41, 41, 0, 27, 91, 51, 50, 109, 0, 32, 32, 0, 27, 91, 51, 49, 109, 0, 78, 52, 119, 97, 115, 109, 55, 80, 114, 105, 110, 116, 101, 114, 69, 0, 78, 52, 119, 97, 115, 109, 49, 53, 77, 105, 110, 105, 102, 105, 101, 100, 80, 114, 105, 110, 116, 101, 114, 69, 0, 78, 52, 119, 97, 115, 109, 49, 49, 70, 117, 108, 108, 80, 114, 105, 110, 116, 101, 114, 69, 0, 43, 45, 42, 47, 37, 60, 62, 38, 94, 124, 126, 61, 33, 44, 63, 58, 46, 0, 40, 91, 59, 123, 125, 0, 116, 111, 112, 108, 101, 118, 101, 108, 0, 100, 101, 102, 117, 110, 0, 115, 116, 97, 116, 0, 97, 115, 115, 105, 103, 110, 0, 118, 97, 114, 0, 99, 111, 110, 115, 116, 0, 99, 111, 110, 100, 105, 116, 105, 111, 110, 97, 108, 0, 98, 105, 110, 97, 114, 121, 0, 114, 101, 116, 117, 114, 110, 0, 105, 102, 0, 119, 104, 105, 108, 101, 0, 100, 111, 0, 102, 111, 114, 0, 115, 101, 113, 0, 115, 117, 98, 0, 110, 117, 109, 0, 108, 97, 98, 101, 108, 0, 98, 114, 101, 97, 107, 0, 99, 111, 110, 116, 105, 110, 117, 101, 0, 115, 119, 105, 116, 99, 104, 0, 115, 116, 114, 105, 110, 103, 0, 116, 101, 109, 112, 82, 101, 116, 48, 0, 103, 101, 116, 84, 101, 109, 112, 82, 101, 116, 48, 0, 95, 108, 108, 118, 109, 95, 99, 116, 116, 122, 95, 105, 51, 50, 0, 95, 95, 95, 117, 100, 105, 118, 109, 111, 100, 100, 105, 52, 0, 117, 110, 97, 114, 121, 45, 112, 114, 101, 102, 105, 120, 0, 117, 110, 97, 114, 121, 45, 112, 111, 115, 116, 102, 105, 120, 0, 77, 97, 116, 104, 95, 102, 114, 111, 117, 110, 100, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 51, 50, 120, 52, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 54, 52, 120, 50, 0, 83, 73, 77, 68, 95, 73, 110, 116, 56, 120, 49, 54, 0, 83, 73, 77, 68, 95, 73, 110, 116, 49, 54, 120, 56, 0, 83, 73, 77, 68, 95, 73, 110, 116, 51, 50, 120, 52, 0, 62, 62, 62, 0, 116, 101, 109, 112, 68, 111, 117, 98, 108, 101, 80, 116, 114, 0, 72, 69, 65, 80, 56, 0, 72, 69, 65, 80, 49, 54, 0, 72, 69, 65, 80, 51, 50, 0, 72, 69, 65, 80, 70, 51, 50, 0, 72, 69, 65, 80, 85, 56, 0, 72, 69, 65, 80, 85, 49, 54, 0, 72, 69, 65, 80, 85, 51, 50, 0, 72, 69, 65, 80, 70, 54, 52, 0, 102, 48, 0, 91, 0, 123, 0, 125, 0, 63, 0, 58, 0, 100, 101, 102, 97, 117, 108, 116, 0, 100, 111, 116, 0, 110, 101, 119, 0, 97, 114, 114, 97, 121, 0, 111, 98, 106, 101, 99, 116, 0, 118, 97, 114, 32, 99, 111, 110, 115, 116, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 105, 102, 32, 101, 108, 115, 101, 32, 100, 111, 32, 119, 104, 105, 108, 101, 32, 102, 111, 114, 32, 98, 114, 101, 97, 107, 32, 99, 111, 110, 116, 105, 110, 117, 101, 32, 114, 101, 116, 117, 114, 110, 32, 115, 119, 105, 116, 99, 104, 32, 99, 97, 115, 101, 32, 100, 101, 102, 97, 117, 108, 116, 32, 116, 104, 114, 111, 119, 32, 116, 114, 121, 32, 99, 97, 116, 99, 104, 32, 102, 105, 110, 97, 108, 108, 121, 32, 116, 114, 117, 101, 32, 102, 97, 108, 115, 101, 32, 110, 117, 108, 108, 32, 110, 101, 119, 0, 33, 32, 126, 32, 43, 32, 45, 0, 42, 32, 47, 32, 37, 0, 43, 32, 45, 0, 60, 60, 32, 62, 62, 32, 62, 62, 62, 0, 60, 32, 60, 61, 32, 62, 32, 62, 61, 0, 61, 61, 32, 33, 61, 0, 63, 32, 58, 0, 97, 115, 115, 105, 103, 110, 32, 99, 97, 108, 108, 32, 98, 105, 110, 97, 114, 121, 32, 117, 110, 97, 114, 121, 45, 112, 114, 101, 102, 105, 120, 32, 110, 97, 109, 101, 32, 110, 117, 109, 32, 99, 111, 110, 100, 105, 116, 105, 111, 110, 97, 108, 32, 100, 111, 116, 32, 110, 101, 119, 32, 115, 117, 98, 32, 115, 101, 113, 32, 115, 116, 114, 105, 110, 103, 32, 111, 98, 106, 101, 99, 116, 32, 97, 114, 114, 97, 121, 0, 105, 115, 65, 114, 114, 97, 121, 40, 41, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 115, 105, 109, 112, 108, 101, 95, 97, 115, 116, 46, 104, 0, 83, 73, 77, 68, 95, 73, 110, 116, 56, 120, 49, 54, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 73, 110, 116, 49, 54, 120, 56, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 73, 110, 116, 51, 50, 120, 52, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 51, 50, 120, 52, 95, 99, 104, 101, 99, 107, 0, 83, 73, 77, 68, 95, 70, 108, 111, 97, 116, 54, 52, 120, 50, 95, 99, 104, 101, 99, 107, 0, 110, 111, 100, 101, 91, 49, 93, 32, 61, 61, 32, 65, 83, 77, 95, 70, 76, 79, 65, 84, 95, 90, 69, 82, 79, 0, 115, 114, 99, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 45, 111, 112, 116, 105, 109, 105, 122, 101, 114, 47, 111, 112, 116, 105, 109, 105, 122, 101, 114, 45, 115, 104, 97, 114, 101, 100, 46, 99, 112, 112, 0, 100, 101, 116, 101, 99, 116, 84, 121, 112, 101, 0, 110, 111, 100, 101, 91, 49, 93, 91, 48, 93, 32, 61, 61, 32, 78, 65, 77, 69, 0, 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8, 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9, 31, 22, 30, 21, 18, 10, 29, 2, 20, 17, 15, 13, 9, 6, 28, 1, 23, 19, 11, 3, 16, 14, 7, 24, 12, 4, 8, 25, 5, 26, 27, 0, 33, 84, 104, 114, 101, 97, 100, 80, 111, 111, 108, 58, 58, 103, 101, 116, 40, 41, 45, 62, 105, 115, 82, 117, 110, 110, 105, 110, 103, 40, 41, 0, 115, 114, 99, 47, 115, 117, 112, 112, 111, 114, 116, 47, 116, 104, 114, 101, 97, 100, 115, 46, 99, 112, 112, 0, 126, 84, 104, 114, 101, 97, 100, 0, 84, 104, 114, 101, 97, 100, 0, 116, 104, 114, 101, 97, 100, 32, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 32, 102, 97, 105, 108, 101, 100, 0, 111, 108, 100, 32, 61, 61, 32, 116, 104, 114, 101, 97, 100, 115, 46, 115, 105, 122, 101, 40, 41, 0, 114, 101, 115, 101, 116, 84, 104, 114, 101, 97, 100, 115, 65, 114, 101, 82, 101, 97, 100, 121, 0, 66, 73, 78, 65, 82, 89, 69, 78, 95, 67, 79, 82, 69, 83, 0, 100, 111, 87, 111, 114, 107, 101, 114, 115, 46, 115, 105, 122, 101, 40, 41, 32, 62, 32, 48, 0, 119, 111, 114, 107, 0, 100, 111, 87, 111, 114, 107, 101, 114, 115, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 110, 117, 109, 0, 33, 114, 117, 110, 110, 105, 110, 103, 0, 70, 85, 78, 67, 83, 73, 71, 36, 0, 116, 111, 112, 109, 111, 115, 116, 0, 73, 110, 116, 56, 65, 114, 114, 97, 121, 0, 73, 110, 116, 49, 54, 65, 114, 114, 97, 121, 0, 73, 110, 116, 51, 50, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 49, 54, 65, 114, 114, 97, 121, 0, 85, 105, 110, 116, 51, 50, 65, 114, 114, 97, 121, 0, 70, 108, 111, 97, 116, 51, 50, 65, 114, 114, 97, 121, 0, 70, 108, 111, 97, 116, 54, 52, 65, 114, 114, 97, 121, 0, 105, 109, 112, 111, 115, 115, 105, 98, 108, 101, 45, 99, 111, 110, 116, 105, 110, 117, 101, 0, 77, 97, 116, 104, 0, 105, 109, 117, 108, 0, 99, 108, 122, 51, 50, 0, 102, 114, 111, 117, 110, 100, 0, 97, 115, 109, 50, 119, 97, 115, 109, 0, 102, 54, 52, 45, 114, 101, 109, 0, 102, 54, 52, 45, 116, 111, 45, 105, 110, 116, 0, 105, 51, 50, 115, 45, 100, 105, 118, 0, 105, 51, 50, 117, 45, 100, 105, 118, 0, 105, 51, 50, 115, 45, 114, 101, 109, 0, 105, 51, 50, 117, 45, 114, 101, 109, 0, 103, 108, 111, 98, 97, 108, 46, 77, 97, 116, 104, 0, 97, 98, 115, 0, 102, 108, 111, 111, 114, 0, 99, 101, 105, 108, 0, 115, 113, 114, 116, 0, 97, 115, 109, 50, 119, 97, 115, 109, 95, 105, 51, 50, 95, 116, 101, 109, 112, 0, 100, 101, 98, 117, 103, 103, 101, 114, 0, 117, 115, 101, 32, 97, 115, 109, 0, 98, 117, 102, 102, 101, 114, 0, 101, 110, 118, 0, 77, 97, 116, 104, 95, 105, 109, 117, 108, 0, 77, 97, 116, 104, 95, 99, 108, 122, 51, 50, 0, 77, 97, 116, 104, 95, 99, 116, 122, 51, 50, 0, 77, 97, 116, 104, 95, 112, 111, 112, 99, 110, 116, 51, 50, 0, 77, 97, 116, 104, 95, 97, 98, 115, 0, 77, 97, 116, 104, 95, 99, 101, 105, 108, 0, 77, 97, 116, 104, 95, 102, 108, 111, 111, 114, 0, 77, 97, 116, 104, 95, 116, 114, 117, 110, 99, 0, 77, 97, 116, 104, 95, 78, 69, 65, 82, 69, 83, 84, 0, 77, 97, 116, 104, 95, 115, 113, 114, 116, 0, 77, 97, 116, 104, 95, 109, 97, 120, 0, 77, 97, 116, 104, 95, 109, 105, 110, 0, 109, 101, 109, 111, 114, 121, 0, 116, 121, 112, 101, 0, 105, 109, 112, 111, 114, 116, 0, 102, 117, 110, 99, 116, 105, 111, 110, 0, 99, 111, 100, 101, 0, 101, 120, 112, 111, 114, 116, 0, 103, 108, 111, 98, 97, 108, 0, 100, 97, 116, 97, 0, 116, 97, 98, 108, 101, 0, 110, 97, 109, 101, 0, 115, 116, 97, 114, 116, 0, 119, 97, 115, 109, 0, 42, 114, 101, 116, 117, 114, 110, 58, 41, 42, 0, 95, 95, 103, 114, 111, 119, 87, 97, 115, 109, 77, 101, 109, 111, 114, 121, 0, 110, 101, 119, 83, 105, 122, 101, 0, 109, 111, 100, 117, 108, 101, 0, 102, 117, 110, 99, 0, 112, 97, 114, 97, 109, 0, 114, 101, 115, 117, 108, 116, 0, 115, 101, 103, 109, 101, 110, 116, 0, 108, 111, 99, 97, 108, 0, 99, 97, 108, 108, 0, 99, 97, 108, 108, 95, 105, 109, 112, 111, 114, 116, 0, 99, 97, 108, 108, 95, 105, 110, 100, 105, 114, 101, 99, 116, 0, 98, 108, 111, 99, 107, 0, 98, 114, 95, 105, 102, 0, 116, 104, 101, 110, 0, 101, 108, 115, 101, 0, 78, 97, 78, 0, 73, 110, 102, 105, 110, 105, 116, 121, 0, 45, 105, 110, 102, 105, 110, 105, 116, 121, 0, 45, 110, 97, 110, 0, 99, 97, 115, 101, 0, 98, 114, 0, 102, 97, 107, 101, 95, 114, 101, 116, 117, 114, 110, 95, 119, 97, 107, 97, 49, 50, 51, 0, 97, 115, 115, 101, 114, 116, 95, 114, 101, 116, 117, 114, 110, 0, 97, 115, 115, 101, 114, 116, 95, 116, 114, 97, 112, 0, 97, 115, 115, 101, 114, 116, 95, 105, 110, 118, 97, 108, 105, 100, 0, 115, 112, 101, 99, 116, 101, 115, 116, 0, 112, 114, 105, 110, 116, 0, 105, 110, 118, 111, 107, 101, 0, 101, 120, 105, 116, 0, 115, 116, 97, 99, 107, 46, 115, 105, 122, 101, 40, 41, 32, 61, 61, 32, 48, 0, 115, 114, 99, 47, 119, 97, 115, 109, 45, 116, 114, 97, 118, 101, 114, 115, 97, 108, 46, 104, 0, 119, 97, 108, 107, 0, 42, 116, 97, 115, 107, 46, 99, 117, 114, 114, 112, 0, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 255, 255, 255, 255, 255, 255, 255, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 255, 255, 255, 255, 255, 255, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 4, 7, 3, 6, 5, 0, 105, 110, 102, 105, 110, 105, 116, 121, 0, 17, 0, 10, 0, 17, 17, 17, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 15, 10, 17, 17, 17, 3, 10, 7, 0, 1, 19, 9, 11, 11, 0, 0, 9, 6, 11, 0, 0, 11, 0, 6, 17, 0, 0, 0, 17, 17, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 10, 10, 17, 17, 17, 0, 10, 0, 0, 2, 0, 9, 11, 0, 0, 0, 9, 0, 11, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 12, 0, 0, 0, 0, 9, 12, 0, 0, 0, 0, 0, 12, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 4, 13, 0, 0, 0, 0, 9, 14, 0, 0, 0, 0, 0, 14, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 15, 0, 0, 0, 0, 9, 16, 0, 0, 0, 0, 0, 16, 0, 0, 16, 0, 0, 18, 0, 0, 0, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 18, 18, 18, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 10, 0, 0, 0, 0, 9, 11, 0, 0, 0, 0, 0, 11, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 12, 0, 0, 0, 0, 9, 12, 0, 0, 0, 0, 0, 12, 0, 0, 12, 0, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68, 69, 70, 45, 43, 32, 32, 32, 48, 88, 48, 120, 0, 40, 110, 117, 108, 108, 41, 0, 45, 48, 88, 43, 48, 88, 32, 48, 88, 45, 48, 120, 43, 48, 120, 32, 48, 120, 0, 105, 110, 102, 0, 73, 78, 70, 0, 110, 97, 110, 0, 78, 65, 78, 0, 84, 33, 34, 25, 13, 1, 2, 3, 17, 75, 28, 12, 16, 4, 11, 29, 18, 30, 39, 104, 110, 111, 112, 113, 98, 32, 5, 6, 15, 19, 20, 21, 26, 8, 22, 7, 40, 36, 23, 24, 9, 10, 14, 27, 31, 37, 35, 131, 130, 125, 38, 42, 43, 60, 61, 62, 63, 67, 71, 74, 77, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 114, 115, 116, 121, 122, 123, 124, 0, 73, 108, 108, 101, 103, 97, 108, 32, 98, 121, 116, 101, 32, 115, 101, 113, 117, 101, 110, 99, 101, 0, 68, 111, 109, 97, 105, 110, 32, 101, 114, 114, 111, 114, 0, 82, 101, 115, 117, 108, 116, 32, 110, 111, 116, 32, 114, 101, 112, 114, 101, 115, 101, 110, 116, 97, 98, 108, 101, 0, 78, 111, 116, 32, 97, 32, 116, 116, 121, 0, 80, 101, 114, 109, 105, 115, 115, 105, 111, 110, 32, 100, 101, 110, 105, 101, 100, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 110, 111, 116, 32, 112, 101, 114, 109, 105, 116, 116, 101, 100, 0, 78, 111, 32, 115, 117, 99, 104, 32, 102, 105, 108, 101, 32, 111, 114, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 78, 111, 32, 115, 117, 99, 104, 32, 112, 114, 111, 99, 101, 115, 115, 0, 70, 105, 108, 101, 32, 101, 120, 105, 115, 116, 115, 0, 86, 97, 108, 117, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 32, 102, 111, 114, 32, 100, 97, 116, 97, 32, 116, 121, 112, 101, 0, 78, 111, 32, 115, 112, 97, 99, 101, 32, 108, 101, 102, 116, 32, 111, 110, 32, 100, 101, 118, 105, 99, 101, 0, 79, 117, 116, 32, 111, 102, 32, 109, 101, 109, 111, 114, 121, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 98, 117, 115, 121, 0, 73, 110, 116, 101, 114, 114, 117, 112, 116, 101, 100, 32, 115, 121, 115, 116, 101, 109, 32, 99, 97, 108, 108, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 116, 101, 109, 112, 111, 114, 97, 114, 105, 108, 121, 32, 117, 110, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 73, 110, 118, 97, 108, 105, 100, 32, 115, 101, 101, 107, 0, 67, 114, 111, 115, 115, 45, 100, 101, 118, 105, 99, 101, 32, 108, 105, 110, 107, 0, 82, 101, 97, 100, 45, 111, 110, 108, 121, 32, 102, 105, 108, 101, 32, 115, 121, 115, 116, 101, 109, 0, 68, 105, 114, 101, 99, 116, 111, 114, 121, 32, 110, 111, 116, 32, 101, 109, 112, 116, 121, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 115, 101, 116, 32, 98, 121, 32, 112, 101, 101, 114, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 116, 105, 109, 101, 100, 32, 111, 117, 116, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 102, 117, 115, 101, 100, 0, 72, 111, 115, 116, 32, 105, 115, 32, 100, 111, 119, 110, 0, 72, 111, 115, 116, 32, 105, 115, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 65, 100, 100, 114, 101, 115, 115, 32, 105, 110, 32, 117, 115, 101, 0, 66, 114, 111, 107, 101, 110, 32, 112, 105, 112, 101, 0, 73, 47, 79, 32, 101, 114, 114, 111, 114, 0, 78, 111, 32, 115, 117, 99, 104, 32, 100, 101, 118, 105, 99, 101, 32, 111, 114, 32, 97, 100, 100, 114, 101, 115, 115, 0, 66, 108, 111, 99, 107, 32, 100, 101, 118, 105, 99, 101, 32, 114, 101, 113, 117, 105, 114, 101, 100, 0, 78, 111, 32, 115, 117, 99, 104, 32, 100, 101, 118, 105, 99, 101, 0, 78, 111, 116, 32, 97, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 73, 115, 32, 97, 32, 100, 105, 114, 101, 99, 116, 111, 114, 121, 0, 84, 101, 120, 116, 32, 102, 105, 108, 101, 32, 98, 117, 115, 121, 0, 69, 120, 101, 99, 32, 102, 111, 114, 109, 97, 116, 32, 101, 114, 114, 111, 114, 0, 73, 110, 118, 97, 108, 105, 100, 32, 97, 114, 103, 117, 109, 101, 110, 116, 0, 65, 114, 103, 117, 109, 101, 110, 116, 32, 108, 105, 115, 116, 32, 116, 111, 111, 32, 108, 111, 110, 103, 0, 83, 121, 109, 98, 111, 108, 105, 99, 32, 108, 105, 110, 107, 32, 108, 111, 111, 112, 0, 70, 105, 108, 101, 110, 97, 109, 101, 32, 116, 111, 111, 32, 108, 111, 110, 103, 0, 84, 111, 111, 32, 109, 97, 110, 121, 32, 111, 112, 101, 110, 32, 102, 105, 108, 101, 115, 32, 105, 110, 32, 115, 121, 115, 116, 101, 109, 0, 78, 111, 32, 102, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 115, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 66, 97, 100, 32, 102, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 0, 78, 111, 32, 99, 104, 105, 108, 100, 32, 112, 114, 111, 99, 101, 115, 115, 0, 66, 97, 100, 32, 97, 100, 100, 114, 101, 115, 115, 0, 70, 105, 108, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 0, 84, 111, 111, 32, 109, 97, 110, 121, 32, 108, 105, 110, 107, 115, 0, 78, 111, 32, 108, 111, 99, 107, 115, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 82, 101, 115, 111, 117, 114, 99, 101, 32, 100, 101, 97, 100, 108, 111, 99, 107, 32, 119, 111, 117, 108, 100, 32, 111, 99, 99, 117, 114, 0, 83, 116, 97, 116, 101, 32, 110, 111, 116, 32, 114, 101, 99, 111, 118, 101, 114, 97, 98, 108, 101, 0, 80, 114, 101, 118, 105, 111, 117, 115, 32, 111, 119, 110, 101, 114, 32, 100, 105, 101, 100, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 99, 97, 110, 99, 101, 108, 101, 100, 0, 70, 117, 110, 99, 116, 105, 111, 110, 32, 110, 111, 116, 32, 105, 109, 112, 108, 101, 109, 101, 110, 116, 101, 100, 0, 78, 111, 32, 109, 101, 115, 115, 97, 103, 101, 32, 111, 102, 32, 100, 101, 115, 105, 114, 101, 100, 32, 116, 121, 112, 101, 0, 73, 100, 101, 110, 116, 105, 102, 105, 101, 114, 32, 114, 101, 109, 111, 118, 101, 100, 0, 68, 101, 118, 105, 99, 101, 32, 110, 111, 116, 32, 97, 32, 115, 116, 114, 101, 97, 109, 0, 78, 111, 32, 100, 97, 116, 97, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 68, 101, 118, 105, 99, 101, 32, 116, 105, 109, 101, 111, 117, 116, 0, 79, 117, 116, 32, 111, 102, 32, 115, 116, 114, 101, 97, 109, 115, 32, 114, 101, 115, 111, 117, 114, 99, 101, 115, 0, 76, 105, 110, 107, 32, 104, 97, 115, 32, 98, 101, 101, 110, 32, 115, 101, 118, 101, 114, 101, 100, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 101, 114, 114, 111, 114, 0, 66, 97, 100, 32, 109, 101, 115, 115, 97, 103, 101, 0, 70, 105, 108, 101, 32, 100, 101, 115, 99, 114, 105, 112, 116, 111, 114, 32, 105, 110, 32, 98, 97, 100, 32, 115, 116, 97, 116, 101, 0, 78, 111, 116, 32, 97, 32, 115, 111, 99, 107, 101, 116, 0, 68, 101, 115, 116, 105, 110, 97, 116, 105, 111, 110, 32, 97, 100, 100, 114, 101, 115, 115, 32, 114, 101, 113, 117, 105, 114, 101, 100, 0, 77, 101, 115, 115, 97, 103, 101, 32, 116, 111, 111, 32, 108, 97, 114, 103, 101, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 119, 114, 111, 110, 103, 32, 116, 121, 112, 101, 32, 102, 111, 114, 32, 115, 111, 99, 107, 101, 116, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 110, 111, 116, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 83, 111, 99, 107, 101, 116, 32, 116, 121, 112, 101, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 78, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 80, 114, 111, 116, 111, 99, 111, 108, 32, 102, 97, 109, 105, 108, 121, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 0, 65, 100, 100, 114, 101, 115, 115, 32, 102, 97, 109, 105, 108, 121, 32, 110, 111, 116, 32, 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 98, 121, 32, 112, 114, 111, 116, 111, 99, 111, 108, 0, 65, 100, 100, 114, 101, 115, 115, 32, 110, 111, 116, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 78, 101, 116, 119, 111, 114, 107, 32, 105, 115, 32, 100, 111, 119, 110, 0, 78, 101, 116, 119, 111, 114, 107, 32, 117, 110, 114, 101, 97, 99, 104, 97, 98, 108, 101, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 114, 101, 115, 101, 116, 32, 98, 121, 32, 110, 101, 116, 119, 111, 114, 107, 0, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 32, 97, 98, 111, 114, 116, 101, 100, 0, 78, 111, 32, 98, 117, 102, 102, 101, 114, 32, 115, 112, 97, 99, 101, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 0, 83, 111, 99, 107, 101, 116, 32, 105, 115, 32, 99, 111, 110, 110, 101, 99, 116, 101, 100, 0, 83, 111, 99, 107, 101, 116, 32, 110, 111, 116, 32, 99, 111, 110, 110, 101, 99, 116, 101, 100, 0, 67, 97, 110, 110, 111, 116, 32, 115, 101, 110, 100, 32, 97, 102, 116, 101, 114, 32, 115, 111, 99, 107, 101, 116, 32, 115, 104, 117, 116, 100, 111, 119, 110, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 97, 108, 114, 101, 97, 100, 121, 32, 105, 110, 32, 112, 114, 111, 103, 114, 101, 115, 115, 0, 79, 112, 101, 114, 97, 116, 105, 111, 110, 32, 105, 110, 32, 112, 114, 111, 103, 114, 101, 115, 115, 0, 83, 116, 97, 108, 101, 32, 102, 105, 108, 101, 32, 104, 97, 110, 100, 108, 101, 0, 82, 101, 109, 111, 116, 101, 32, 73, 47, 79, 32, 101, 114, 114, 111, 114, 0, 81, 117, 111, 116, 97, 32, 101, 120, 99, 101, 101, 100, 101, 100, 0, 78, 111, 32, 109, 101, 100, 105, 117, 109, 32, 102, 111, 117, 110, 100, 0, 87, 114, 111, 110, 103, 32, 109, 101, 100, 105, 117, 109, 32, 116, 121, 112, 101, 0, 78, 111, 32, 101, 114, 114, 111, 114, 32, 105, 110, 102, 111, 114, 109, 97, 116, 105, 111, 110, 0, 0, 80, 79, 83, 73, 88, 0, 99, 108, 111, 99, 107, 95, 103, 101, 116, 116, 105, 109, 101, 40, 67, 76, 79, 67, 75, 95, 77, 79, 78, 79, 84, 79, 78, 73, 67, 41, 32, 102, 97, 105, 108, 101, 100, 0, 99, 111, 110, 100, 105, 116, 105, 111, 110, 95, 118, 97, 114, 105, 97, 98, 108, 101, 58, 58, 119, 97, 105, 116, 58, 32, 109, 117, 116, 101, 120, 32, 110, 111, 116, 32, 108, 111, 99, 107, 101, 100, 0, 99, 111, 110, 100, 105, 116, 105, 111, 110, 95, 118, 97, 114, 105, 97, 98, 108, 101, 32, 119, 97, 105, 116, 32, 102, 97, 105, 108, 101, 100, 0, 78, 83, 116, 51, 95, 95, 50, 56, 105, 111, 115, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 50, 57, 98, 97, 115, 105, 99, 95, 105, 111, 115, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 57, 98, 97, 115, 105, 99, 95, 105, 111, 115, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 101, 97, 109, 98, 117, 102, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 53, 98, 97, 115, 105, 99, 95, 115, 116, 114, 101, 97, 109, 98, 117, 102, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 51, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 51, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 51, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 52, 98, 97, 115, 105, 99, 95, 105, 111, 115, 116, 114, 101, 97, 109, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 49, 95, 95, 115, 116, 100, 111, 117, 116, 98, 117, 102, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 49, 95, 95, 115, 116, 100, 111, 117, 116, 98, 117, 102, 73, 99, 69, 69, 0, 117, 110, 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 108, 111, 99, 97, 108, 101, 32, 102, 111, 114, 32, 115, 116, 97, 110, 100, 97, 114, 100, 32, 105, 110, 112, 117, 116, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 115, 116, 100, 105, 110, 98, 117, 102, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 115, 116, 100, 105, 110, 98, 117, 102, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 55, 99, 111, 108, 108, 97, 116, 101, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 54, 108, 111, 99, 97, 108, 101, 53, 102, 97, 99, 101, 116, 69, 0, 78, 83, 116, 51, 95, 95, 50, 55, 99, 111, 108, 108, 97, 116, 101, 73, 119, 69, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 97, 98, 99, 100, 101, 102, 65, 66, 67, 68, 69, 70, 120, 88, 43, 45, 112, 80, 105, 73, 110, 78, 0, 37, 112, 0, 67, 0, 78, 83, 116, 51, 95, 95, 50, 55, 110, 117, 109, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 57, 95, 95, 110, 117, 109, 95, 103, 101, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 52, 95, 95, 110, 117, 109, 95, 103, 101, 116, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 50, 55, 110, 117, 109, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 57, 95, 95, 110, 117, 109, 95, 103, 101, 116, 73, 119, 69, 69, 0, 37, 112, 0, 0, 0, 0, 76, 0, 37, 0, 0, 0, 0, 0, 78, 83, 116, 51, 95, 95, 50, 55, 110, 117, 109, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 57, 95, 95, 110, 117, 109, 95, 112, 117, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 52, 95, 95, 110, 117, 109, 95, 112, 117, 116, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 50, 55, 110, 117, 109, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 57, 95, 95, 110, 117, 109, 95, 112, 117, 116, 73, 119, 69, 69, 0, 37, 72, 58, 37, 77, 58, 37, 83, 0, 37, 109, 47, 37, 100, 47, 37, 121, 0, 37, 73, 58, 37, 77, 58, 37, 83, 32, 37, 112, 0, 37, 97, 32, 37, 98, 32, 37, 100, 32, 37, 72, 58, 37, 77, 58, 37, 83, 32, 37, 89, 0, 65, 77, 0, 80, 77, 0, 74, 97, 110, 117, 97, 114, 121, 0, 70, 101, 98, 114, 117, 97, 114, 121, 0, 77, 97, 114, 99, 104, 0, 65, 112, 114, 105, 108, 0, 77, 97, 121, 0, 74, 117, 110, 101, 0, 74, 117, 108, 121, 0, 65, 117, 103, 117, 115, 116, 0, 83, 101, 112, 116, 101, 109, 98, 101, 114, 0, 79, 99, 116, 111, 98, 101, 114, 0, 78, 111, 118, 101, 109, 98, 101, 114, 0, 68, 101, 99, 101, 109, 98, 101, 114, 0, 74, 97, 110, 0, 70, 101, 98, 0, 77, 97, 114, 0, 65, 112, 114, 0, 74, 117, 110, 0, 74, 117, 108, 0, 65, 117, 103, 0, 83, 101, 112, 0, 79, 99, 116, 0, 78, 111, 118, 0, 68, 101, 99, 0, 83, 117, 110, 100, 97, 121, 0, 77, 111, 110, 100, 97, 121, 0, 84, 117, 101, 115, 100, 97, 121, 0, 87, 101, 100, 110, 101, 115, 100, 97, 121, 0, 84, 104, 117, 114, 115, 100, 97, 121, 0, 70, 114, 105, 100, 97, 121, 0, 83, 97, 116, 117, 114, 100, 97, 121, 0, 83, 117, 110, 0, 77, 111, 110, 0, 84, 117, 101, 0, 87, 101, 100, 0, 84, 104, 117, 0, 70, 114, 105, 0, 83, 97, 116, 0, 37, 109, 47, 37, 100, 47, 37, 121, 37, 89, 45, 37, 109, 45, 37, 100, 37, 73, 58, 37, 77, 58, 37, 83, 32, 37, 112, 37, 72, 58, 37, 77, 37, 72, 58, 37, 77, 58, 37, 83, 37, 72, 58, 37, 77, 58, 37, 83, 78, 83, 116, 51, 95, 95, 50, 56, 116, 105, 109, 101, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 50, 48, 95, 95, 116, 105, 109, 101, 95, 103, 101, 116, 95, 99, 95, 115, 116, 111, 114, 97, 103, 101, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 57, 116, 105, 109, 101, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 50, 56, 116, 105, 109, 101, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 50, 48, 95, 95, 116, 105, 109, 101, 95, 103, 101, 116, 95, 99, 95, 115, 116, 111, 114, 97, 103, 101, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 56, 116, 105, 109, 101, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 95, 95, 116, 105, 109, 101, 95, 112, 117, 116, 69, 0, 78, 83, 116, 51, 95, 95, 50, 56, 116, 105, 109, 101, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 99, 76, 98, 48, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 109, 111, 110, 101, 121, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 99, 76, 98, 49, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 119, 76, 98, 48, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 109, 111, 110, 101, 121, 112, 117, 110, 99, 116, 73, 119, 76, 98, 49, 69, 69, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 0, 37, 76, 102, 0, 78, 83, 116, 51, 95, 95, 50, 57, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 99, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 99, 69, 69, 0, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 0, 78, 83, 116, 51, 95, 95, 50, 57, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 119, 78, 83, 95, 49, 57, 105, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 103, 101, 116, 73, 119, 69, 69, 0, 37, 46, 48, 76, 102, 0, 78, 83, 116, 51, 95, 95, 50, 57, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 99, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 99, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 99, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 57, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 119, 78, 83, 95, 49, 57, 111, 115, 116, 114, 101, 97, 109, 98, 117, 102, 95, 105, 116, 101, 114, 97, 116, 111, 114, 73, 119, 78, 83, 95, 49, 49, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 73, 119, 69, 69, 69, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 49, 95, 95, 109, 111, 110, 101, 121, 95, 112, 117, 116, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 56, 109, 101, 115, 115, 97, 103, 101, 115, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 51, 109, 101, 115, 115, 97, 103, 101, 115, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 55, 95, 95, 119, 105, 100, 101, 110, 95, 102, 114, 111, 109, 95, 117, 116, 102, 56, 73, 76, 106, 51, 50, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 55, 99, 111, 100, 101, 99, 118, 116, 73, 68, 105, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 50, 99, 111, 100, 101, 99, 118, 116, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 54, 95, 95, 110, 97, 114, 114, 111, 119, 95, 116, 111, 95, 117, 116, 102, 56, 73, 76, 106, 51, 50, 69, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 56, 109, 101, 115, 115, 97, 103, 101, 115, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 55, 99, 111, 100, 101, 99, 118, 116, 73, 99, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 55, 99, 111, 100, 101, 99, 118, 116, 73, 119, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 55, 99, 111, 100, 101, 99, 118, 116, 73, 68, 115, 99, 49, 49, 95, 95, 109, 98, 115, 116, 97, 116, 101, 95, 116, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 54, 108, 111, 99, 97, 108, 101, 53, 95, 95, 105, 109, 112, 69, 0, 78, 83, 116, 51, 95, 95, 50, 53, 99, 116, 121, 112, 101, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 49, 48, 99, 116, 121, 112, 101, 95, 98, 97, 115, 101, 69, 0, 78, 83, 116, 51, 95, 95, 50, 53, 99, 116, 121, 112, 101, 73, 119, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 56, 110, 117, 109, 112, 117, 110, 99, 116, 73, 99, 69, 69, 0, 78, 83, 116, 51, 95, 95, 50, 56, 110, 117, 109, 112, 117, 110, 99, 116, 73, 119, 69, 69, 0, 33, 34, 118, 101, 99, 116, 111, 114, 32, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 34, 0, 47, 109 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 30724); allocate([ 101, 100, 105, 97, 47, 97, 108, 111, 110, 47, 100, 54, 57, 100, 100, 57, 98, 50, 45, 52, 55, 57, 49, 45, 52, 98, 56, 101, 45, 97, 101, 98, 51, 45, 102, 54, 51, 53, 51, 98, 52, 53, 100, 55, 49, 48, 47, 104, 111, 109, 101, 47, 97, 108, 111, 110, 47, 68, 101, 118, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 47, 115, 121, 115, 116, 101, 109, 47, 105, 110, 99, 108, 117, 100, 101, 47, 108, 105, 98, 99, 120, 120, 47, 118, 101, 99, 116, 111, 114, 0, 33, 34, 118, 101, 99, 116, 111, 114, 32, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 34, 0, 78, 83, 116, 51, 95, 95, 50, 49, 52, 95, 95, 115, 104, 97, 114, 101, 100, 95, 99, 111, 117, 110, 116, 69, 0, 109, 117, 116, 101, 120, 32, 108, 111, 99, 107, 32, 102, 97, 105, 108, 101, 100, 0, 101, 99, 32, 61, 61, 32, 48, 0, 47, 109, 101, 100, 105, 97, 47, 97, 108, 111, 110, 47, 100, 54, 57, 100, 100, 57, 98, 50, 45, 52, 55, 57, 49, 45, 52, 98, 56, 101, 45, 97, 101, 98, 51, 45, 102, 54, 51, 53, 51, 98, 52, 53, 100, 55, 49, 48, 47, 104, 111, 109, 101, 47, 97, 108, 111, 110, 47, 68, 101, 118, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 47, 115, 121, 115, 116, 101, 109, 47, 108, 105, 98, 47, 108, 105, 98, 99, 120, 120, 47, 109, 117, 116, 101, 120, 46, 99, 112, 112, 0, 117, 110, 108, 111, 99, 107, 0, 33, 34, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 32, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 34, 0, 47, 109, 101, 100, 105, 97, 47, 97, 108, 111, 110, 47, 100, 54, 57, 100, 100, 57, 98, 50, 45, 52, 55, 57, 49, 45, 52, 98, 56, 101, 45, 97, 101, 98, 51, 45, 102, 54, 51, 53, 51, 98, 52, 53, 100, 55, 49, 48, 47, 104, 111, 109, 101, 47, 97, 108, 111, 110, 47, 68, 101, 118, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 47, 115, 121, 115, 116, 101, 109, 47, 105, 110, 99, 108, 117, 100, 101, 47, 108, 105, 98, 99, 120, 120, 47, 115, 116, 114, 105, 110, 103, 0, 95, 95, 116, 104, 114, 111, 119, 95, 108, 101, 110, 103, 116, 104, 95, 101, 114, 114, 111, 114, 0, 33, 34, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 32, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 34, 0, 95, 95, 116, 104, 114, 111, 119, 95, 111, 117, 116, 95, 111, 102, 95, 114, 97, 110, 103, 101, 0, 33, 34, 97, 108, 108, 111, 99, 97, 116, 111, 114, 60, 84, 62, 58, 58, 97, 108, 108, 111, 99, 97, 116, 101, 58, 58, 98, 97, 100, 95, 97, 108, 108, 111, 99, 34, 0, 47, 109, 101, 100, 105, 97, 47, 97, 108, 111, 110, 47, 100, 54, 57, 100, 100, 57, 98, 50, 45, 52, 55, 57, 49, 45, 52, 98, 56, 101, 45, 97, 101, 98, 51, 45, 102, 54, 51, 53, 51, 98, 52, 53, 100, 55, 49, 48, 47, 104, 111, 109, 101, 47, 97, 108, 111, 110, 47, 68, 101, 118, 47, 101, 109, 115, 99, 114, 105, 112, 116, 101, 110, 47, 115, 121, 115, 116, 101, 109, 47, 105, 110, 99, 108, 117, 100, 101, 47, 108, 105, 98, 99, 120, 120, 47, 109, 101, 109, 111, 114, 121, 0, 97, 108, 108, 111, 99, 97, 116, 101, 0, 115, 116, 111, 105, 0, 58, 32, 110, 111, 32, 99, 111, 110, 118, 101, 114, 115, 105, 111, 110, 0, 37, 115, 10, 0, 58, 32, 111, 117, 116, 32, 111, 102, 32, 114, 97, 110, 103, 101, 0, 115, 116, 111, 108, 108, 0, 37, 117, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 32, 111, 102, 32, 116, 121, 112, 101, 32, 37, 115, 58, 32, 37, 115, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 32, 111, 102, 32, 116, 121, 112, 101, 32, 37, 115, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 32, 119, 105, 116, 104, 32, 37, 115, 32, 102, 111, 114, 101, 105, 103, 110, 32, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 116, 101, 114, 109, 105, 110, 97, 116, 105, 110, 103, 0, 117, 110, 99, 97, 117, 103, 104, 116, 0, 83, 116, 57, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 54, 95, 95, 115, 104, 105, 109, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 83, 116, 57, 116, 121, 112, 101, 95, 105, 110, 102, 111, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 50, 48, 95, 95, 115, 105, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 55, 95, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 112, 116, 104, 114, 101, 97, 100, 95, 111, 110, 99, 101, 32, 102, 97, 105, 108, 117, 114, 101, 32, 105, 110, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 95, 102, 97, 115, 116, 40, 41, 0, 99, 97, 110, 110, 111, 116, 32, 99, 114, 101, 97, 116, 101, 32, 112, 116, 104, 114, 101, 97, 100, 32, 107, 101, 121, 32, 102, 111, 114, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 40, 41, 0, 99, 97, 110, 110, 111, 116, 32, 122, 101, 114, 111, 32, 111, 117, 116, 32, 116, 104, 114, 101, 97, 100, 32, 118, 97, 108, 117, 101, 32, 102, 111, 114, 32, 95, 95, 99, 120, 97, 95, 103, 101, 116, 95, 103, 108, 111, 98, 97, 108, 115, 40, 41, 0, 116, 101, 114, 109, 105, 110, 97, 116, 101, 95, 104, 97, 110, 100, 108, 101, 114, 32, 117, 110, 101, 120, 112, 101, 99, 116, 101, 100, 108, 121, 32, 114, 101, 116, 117, 114, 110, 101, 100, 0, 115, 116, 100, 58, 58, 98, 97, 100, 95, 97, 108, 108, 111, 99, 0, 83, 116, 57, 98, 97, 100, 95, 97, 108, 108, 111, 99, 0, 115, 116, 100, 58, 58, 101, 120, 99, 101, 112, 116, 105, 111, 110, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 57, 95, 95, 112, 111, 105, 110, 116, 101, 114, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 49, 55, 95, 95, 112, 98, 97, 115, 101, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 50, 51, 95, 95, 102, 117, 110, 100, 97, 109, 101, 110, 116, 97, 108, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 68, 110, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 50, 48, 95, 95, 102, 117, 110, 99, 116, 105, 111, 110, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 78, 49, 48, 95, 95, 99, 120, 120, 97, 98, 105, 118, 49, 50, 49, 95, 95, 118, 109, 105, 95, 99, 108, 97, 115, 115, 95, 116, 121, 112, 101, 95, 105, 110, 102, 111, 69, 0, 32, 40, 0, 41, 0, 95, 98, 108, 111, 99, 107, 95, 105, 110, 118, 111, 107, 101, 0, 105, 110, 118, 111, 99, 97, 116, 105, 111, 110, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 102, 111, 114, 32, 98, 108, 111, 99, 107, 32, 105, 110, 32, 0, 32, 99, 111, 110, 115, 116, 0, 32, 118, 111, 108, 97, 116, 105, 108, 101, 0, 32, 114, 101, 115, 116, 114, 105, 99, 116, 0, 32, 91, 0, 32, 91, 93, 0, 93, 0, 32, 99, 111, 109, 112, 108, 101, 120, 0, 40, 0, 44, 32, 0, 32, 38, 0, 32, 38, 38, 0, 32, 0, 32, 105, 109, 97, 103, 105, 110, 97, 114, 121, 0, 58, 58, 42, 0, 38, 38, 0, 111, 98, 106, 99, 95, 111, 98, 106, 101, 99, 116, 60, 0, 42, 0, 105, 100, 0, 38, 0, 111, 98, 106, 99, 112, 114, 111, 116, 111, 0, 60, 0, 62, 0, 32, 118, 101, 99, 116, 111, 114, 91, 0, 112, 105, 120, 101, 108, 32, 118, 101, 99, 116, 111, 114, 91, 0, 100, 101, 99, 108, 116, 121, 112, 101, 40, 0, 115, 116, 100, 58, 58, 97, 108, 108, 111, 99, 97, 116, 111, 114, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 105, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 105, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 0, 58, 58, 0, 58, 58, 115, 116, 114, 105, 110, 103, 32, 108, 105, 116, 101, 114, 97, 108, 0, 115, 116, 100, 58, 58, 0, 126, 0, 39, 117, 110, 110, 97, 109, 101, 100, 0, 39, 108, 97, 109, 98, 100, 97, 39, 40, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 38, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 0, 111, 112, 101, 114, 97, 116, 111, 114, 38, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 40, 41, 0, 111, 112, 101, 114, 97, 116, 111, 114, 44, 0, 111, 112, 101, 114, 97, 116, 111, 114, 126, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 100, 101, 108, 101, 116, 101, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 42, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 100, 101, 108, 101, 116, 101, 0, 111, 112, 101, 114, 97, 116, 111, 114, 47, 0, 111, 112, 101, 114, 97, 116, 111, 114, 47, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 94, 0, 111, 112, 101, 114, 97, 116, 111, 114, 94, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 61, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 34, 34, 32, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 60, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 60, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 60, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 42, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 45, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 110, 101, 119, 91, 93, 0, 111, 112, 101, 114, 97, 116, 111, 114, 33, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 33, 0, 111, 112, 101, 114, 97, 116, 111, 114, 32, 110, 101, 119, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 124, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 0, 111, 112, 101, 114, 97, 116, 111, 114, 124, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 62, 42, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 43, 43, 0, 111, 112, 101, 114, 97, 116, 111, 114, 45, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 63, 0, 111, 112, 101, 114, 97, 116, 111, 114, 37, 0, 111, 112, 101, 114, 97, 116, 111, 114, 37, 61, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 62, 0, 111, 112, 101, 114, 97, 116, 111, 114, 62, 62, 61, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 44, 32, 115, 116, 100, 58, 58, 97, 108, 108, 111, 99, 97, 116, 111, 114, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 115, 116, 114, 105, 110, 103, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 105, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 111, 115, 116, 114, 101, 97, 109, 0, 115, 116, 100, 58, 58, 98, 97, 115, 105, 99, 95, 105, 111, 115, 116, 114, 101, 97, 109, 60, 99, 104, 97, 114, 44, 32, 115, 116, 100, 58, 58, 99, 104, 97, 114, 95, 116, 114, 97, 105, 116, 115, 60, 99, 104, 97, 114, 62, 32, 62, 0, 98, 97, 115, 105, 99, 95, 105, 111, 115, 116, 114, 101, 97, 109, 0, 95, 71, 76, 79, 66, 65, 76, 95, 95, 78, 0, 40, 97, 110, 111, 110, 121, 109, 111, 117, 115, 32, 110, 97, 109, 101, 115, 112, 97, 99, 101, 41, 0, 32, 62, 0, 119, 99, 104, 97, 114, 95, 116, 0, 102, 97, 108, 115, 101, 0, 116, 114, 117, 101, 0, 99, 104, 97, 114, 0, 115, 105, 103, 110, 101, 100, 32, 99, 104, 97, 114, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 99, 104, 97, 114, 0, 115, 104, 111, 114, 116, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 115, 104, 111, 114, 116, 0, 117, 0, 108, 0, 117, 108, 0, 108, 108, 0, 117, 108, 108, 0, 95, 95, 105, 110, 116, 49, 50, 56, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 95, 95, 105, 110, 116, 49, 50, 56, 0, 37, 97, 102, 0, 37, 97, 0, 37, 76, 97, 76, 0, 38, 61, 0, 61, 0, 97, 108, 105, 103, 110, 111, 102, 32, 40, 0, 99, 111, 110, 115, 116, 95, 99, 97, 115, 116, 60, 0, 62, 40, 0, 44, 0, 41, 40, 0, 100, 101, 108, 101, 116, 101, 91, 93, 32, 0, 100, 121, 110, 97, 109, 105, 99, 95, 99, 97, 115, 116, 60, 0, 100, 101, 108, 101, 116, 101, 32, 0, 46, 42, 0, 46, 0, 47, 0, 47, 61, 0, 94, 0, 94, 61, 0, 61, 61, 0, 62, 61, 0, 41, 91, 0, 60, 61, 0, 60, 60, 0, 60, 60, 61, 0, 45, 0, 45, 61, 0, 42, 61, 0, 45, 45, 0, 41, 45, 45, 0, 91, 93, 32, 0, 41, 32, 0, 33, 61, 0, 33, 0, 110, 111, 101, 120, 99, 101, 112, 116, 32, 40, 0, 124, 124, 0, 124, 0, 124, 61, 0, 45, 62, 42, 0, 43, 0, 43, 61, 0, 43, 43, 0, 41, 43, 43, 0, 45, 62, 0, 41, 32, 63, 32, 40, 0, 41, 32, 58, 32, 40, 0, 114, 101, 105, 110, 116, 101, 114, 112, 114, 101, 116, 95, 99, 97, 115, 116, 60, 0, 37, 0, 37, 61, 0, 62, 62, 0, 62, 62, 61, 0, 115, 116, 97, 116, 105, 99, 95, 99, 97, 115, 116, 60, 0, 115, 105, 122, 101, 111, 102, 32, 40, 0, 115, 105, 122, 101, 111, 102, 46, 46, 46, 40, 0, 116, 121, 112, 101, 105, 100, 40, 0, 116, 104, 114, 111, 119, 0, 116, 104, 114, 111, 119, 32, 0, 102, 112, 0, 118, 111, 105, 100, 0, 98, 111, 111, 108, 0, 105, 110, 116, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 105, 110, 116, 0, 108, 111, 110, 103, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 108, 111, 110, 103, 0, 108, 111, 110, 103, 32, 108, 111, 110, 103, 0, 117, 110, 115, 105, 103, 110, 101, 100, 32, 108, 111, 110, 103, 32, 108, 111, 110, 103, 0, 102, 108, 111, 97, 116, 0, 100, 111, 117, 98, 108, 101, 0, 108, 111, 110, 103, 32, 100, 111, 117, 98, 108, 101, 0, 95, 95, 102, 108, 111, 97, 116, 49, 50, 56, 0, 46, 46, 46, 0, 100, 101, 99, 105, 109, 97, 108, 54, 52, 0, 100, 101, 99, 105, 109, 97, 108, 49, 50, 56, 0, 100, 101, 99, 105, 109, 97, 108, 51, 50, 0, 100, 101, 99, 105, 109, 97, 108, 49, 54, 0, 99, 104, 97, 114, 51, 50, 95, 116, 0, 99, 104, 97, 114, 49, 54, 95, 116, 0, 97, 117, 116, 111, 0, 115, 116, 100, 58, 58, 110, 117, 108, 108, 112, 116, 114, 95, 116, 0, 118, 116, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 86, 84, 84, 32, 102, 111, 114, 32, 0, 116, 121, 112, 101, 105, 110, 102, 111, 32, 102, 111, 114, 32, 0, 116, 121, 112, 101, 105, 110, 102, 111, 32, 110, 97, 109, 101, 32, 102, 111, 114, 32, 0, 99, 111, 118, 97, 114, 105, 97, 110, 116, 32, 114, 101, 116, 117, 114, 110, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 99, 111, 110, 115, 116, 114, 117, 99, 116, 105, 111, 110, 32, 118, 116, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 45, 105, 110, 45, 0, 118, 105, 114, 116, 117, 97, 108, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 110, 111, 110, 45, 118, 105, 114, 116, 117, 97, 108, 32, 116, 104, 117, 110, 107, 32, 116, 111, 32, 0, 103, 117, 97, 114, 100, 32, 118, 97, 114, 105, 97, 98, 108, 101, 32, 102, 111, 114, 32, 0, 114, 101, 102, 101, 114, 101, 110, 99, 101, 32, 116, 101, 109, 112, 111, 114, 97, 114, 121, 32, 102, 111, 114, 32, 0 ], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE + 40964); var tempDoublePtr = STATICTOP; STATICTOP += 16; function _atexit(func, arg) { __ATEXIT__.unshift({ func: func, arg: arg }); } function ___cxa_atexit() { return _atexit.apply(null, arguments); } Module["_i64Subtract"] = _i64Subtract; Module["_i64Add"] = _i64Add; function __ZSt18uncaught_exceptionv() { return !!__ZSt18uncaught_exceptionv.uncaught_exception; } var EXCEPTIONS = { last: 0, caught: [], infos: {}, deAdjust: (function(adjusted) { if (!adjusted || EXCEPTIONS.infos[adjusted]) return adjusted; for (var ptr in EXCEPTIONS.infos) { var info = EXCEPTIONS.infos[ptr]; if (info.adjusted === adjusted) { return ptr; } } return adjusted; }), addRef: (function(ptr) { if (!ptr) return; var info = EXCEPTIONS.infos[ptr]; info.refcount++; }), decRef: (function(ptr) { if (!ptr) return; var info = EXCEPTIONS.infos[ptr]; assert(info.refcount > 0); info.refcount--; if (info.refcount === 0) { if (info.destructor) { Runtime.dynCall("vi", info.destructor, [ ptr ]); } delete EXCEPTIONS.infos[ptr]; ___cxa_free_exception(ptr); } }), clearRef: (function(ptr) { if (!ptr) return; var info = EXCEPTIONS.infos[ptr]; info.refcount = 0; }) }; function ___resumeException(ptr) { if (!EXCEPTIONS.last) { EXCEPTIONS.last = ptr; } EXCEPTIONS.clearRef(EXCEPTIONS.deAdjust(ptr)); throw ptr + " - Exception catching is disabled, this exception cannot be caught. Compile with -s DISABLE_EXCEPTION_CATCHING=0 or DISABLE_EXCEPTION_CATCHING=2 to catch."; } function ___cxa_find_matching_catch() { var thrown = EXCEPTIONS.last; if (!thrown) { return (asm["setTempRet0"](0), 0) | 0; } var info = EXCEPTIONS.infos[thrown]; var throwntype = info.type; if (!throwntype) { return (asm["setTempRet0"](0), thrown) | 0; } var typeArray = Array.prototype.slice.call(arguments); var pointer = Module["___cxa_is_pointer_type"](throwntype); if (!___cxa_find_matching_catch.buffer) ___cxa_find_matching_catch.buffer = _malloc(4); HEAP32[___cxa_find_matching_catch.buffer >> 2] = thrown; thrown = ___cxa_find_matching_catch.buffer; for (var i = 0; i < typeArray.length; i++) { if (typeArray[i] && Module["___cxa_can_catch"](typeArray[i], throwntype, thrown)) { thrown = HEAP32[thrown >> 2]; info.adjusted = thrown; return (asm["setTempRet0"](typeArray[i]), thrown) | 0; } } thrown = HEAP32[thrown >> 2]; return (asm["setTempRet0"](throwntype), thrown) | 0; } function ___cxa_throw(ptr, type, destructor) { EXCEPTIONS.infos[ptr] = { ptr: ptr, adjusted: ptr, type: type, destructor: destructor, refcount: 0, caught: false }; EXCEPTIONS.last = ptr; if (!("uncaught_exception" in __ZSt18uncaught_exceptionv)) { __ZSt18uncaught_exceptionv.uncaught_exception = 1; } else { __ZSt18uncaught_exceptionv.uncaught_exception++; } throw ptr + " - Exception catching is disabled, this exception cannot be caught. Compile with -s DISABLE_EXCEPTION_CATCHING=0 or DISABLE_EXCEPTION_CATCHING=2 to catch."; } function ___cxa_begin_catch(ptr) { var info = EXCEPTIONS.infos[ptr]; if (info && !info.caught) { info.caught = true; __ZSt18uncaught_exceptionv.uncaught_exception--; } EXCEPTIONS.caught.push(ptr); EXCEPTIONS.addRef(EXCEPTIONS.deAdjust(ptr)); return ptr; } function __ZN4wasm38createDuplicateFunctionEliminationPassEv() { Module["printErr"]("missing function: _ZN4wasm38createDuplicateFunctionEliminationPassEv"); abort(-1); } Module["_pthread_mutex_lock"] = _pthread_mutex_lock; function __ZN4wasm16createVacuumPassEv() { Module["printErr"]("missing function: _ZN4wasm16createVacuumPassEv"); abort(-1); } function _pthread_create() { return 11; } function __ZN4wasm30createOptimizeInstructionsPassEv() { Module["printErr"]("missing function: _ZN4wasm30createOptimizeInstructionsPassEv"); abort(-1); } function __ZN4wasm27createRemoveUnusedNamesPassEv() { Module["printErr"]("missing function: _ZN4wasm27createRemoveUnusedNamesPassEv"); abort(-1); } function ___setErrNo(value) { if (Module["___errno_location"]) HEAP32[Module["___errno_location"]() >> 2] = value; return value; } 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 }; function _sysconf(name) { 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 1e3; 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; } var PTHREAD_SPECIFIC = {}; var PTHREAD_SPECIFIC_NEXT_KEY = 1; function _pthread_key_create(key, destructor) { if (key == 0) { return ERRNO_CODES.EINVAL; } HEAP32[key >> 2] = PTHREAD_SPECIFIC_NEXT_KEY; PTHREAD_SPECIFIC[PTHREAD_SPECIFIC_NEXT_KEY] = 0; PTHREAD_SPECIFIC_NEXT_KEY++; return 0; } function __ZN4wasm23createReorderLocalsPassEv() { Module["printErr"]("missing function: _ZN4wasm23createReorderLocalsPassEv"); abort(-1); } function __ZN4wasm21createMergeBlocksPassEv() { Module["printErr"]("missing function: _ZN4wasm21createMergeBlocksPassEv"); abort(-1); } 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" }; var PATH = { splitPath: (function(filename) { var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; return splitPathRe.exec(filename).slice(1); }), normalizeArray: (function(parts, allowAboveRoot) { 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 (allowAboveRoot) { for (; up--; up) { parts.unshift(".."); } } return parts; }), normalize: (function(path) { var isAbsolute = path.charAt(0) === "/", trailingSlash = path.substr(-1) === "/"; 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) { return "."; } if (dir) { dir = dir.substr(0, dir.length - 1); } return root + dir; }), basename: (function(path) { 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(); if (typeof path !== "string") { throw new TypeError("Arguments to path.resolve must be strings"); } else if (!path) { return ""; } resolvedPath = path + "/" + resolvedPath; resolvedAbsolute = path.charAt(0) === "/"; } 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() {}), shutdown: (function() {}), 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) { stream.tty.ops.flush(stream.tty); }), flush: (function(stream) { stream.tty.ops.flush(stream.tty); }), read: (function(stream, buffer, offset, length, pos) { 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) { var BUFSIZE = 256; var buf = new Buffer(BUFSIZE); var bytesRead = 0; var isPosixPlatform = process.platform != "win32"; var fd = process.stdin.fd; if (isPosixPlatform) { var usingDevice = false; try { fd = fs.openSync("/dev/stdin", "r"); usingDevice = true; } catch (e) {} } try { bytesRead = fs.readSync(fd, buf, 0, BUFSIZE, null); } catch (e) { if (e.toString().indexOf("EOF") != -1) bytesRead = 0; else throw e; } 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") { result = window.prompt("Input: "); if (result !== null) { result += "\n"; } } else if (typeof readline == "function") { 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); } }), 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, 0); }), createNode: (function(parent, name, mode, dev) { if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { 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; 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(); 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; } return node.contents; }), getFileDataAsTypedArray: (function(node) { if (!node.contents) return new Uint8Array; if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); return new Uint8Array(node.contents); }), expandFileStorage: (function(node, newCapacity) { if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { node.contents = MEMFS.getFileDataAsRegularArray(node); node.usedBytes = node.contents.length; } if (!node.contents || node.contents.subarray) { var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; if (prevCapacity >= newCapacity) return; var CAPACITY_DOUBLING_MAX = 1024 * 1024; newCapacity = Math.max(newCapacity, prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2 : 1.125) | 0); if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); var oldContents = node.contents; node.contents = new Uint8Array(newCapacity); if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); return; } 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; node.usedBytes = 0; return; } if (!node.contents || node.contents.subarray) { var oldContents = node.contents; node.contents = new Uint8Array(new ArrayBuffer(newSize)); if (oldContents) { node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); } node.usedBytes = newSize; return; } 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 = {}; 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); 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 (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); } } } 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 | 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) { 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)) { if (canOwn) { node.contents = buffer.subarray(offset, offset + length); node.usedBytes = length; return length; } else if (node.usedBytes === 0 && position === 0) { node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); node.usedBytes = length; return length; } else if (position + length <= node.usedBytes) { node.contents.set(buffer.subarray(offset, offset + length), position); return length; } } MEMFS.expandFileStorage(node, position + length); if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); else { for (var i = 0; i < length; i++) { node.contents[position + i] = buffer[offset + i]; } } node.usedBytes = Math.max(node.usedBytes, position + length); return length; }), llseek: (function(stream, offset, whence) { var position = offset; if (whence === 1) { position += stream.position; } else if (whence === 2) { 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; if (!(flags & 2) && (contents.buffer === buffer || contents.buffer === buffer.buffer)) { allocated = false; ptr = contents.byteOffset; } else { 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) { return 0; } var bytesWritten = MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); 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) { 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) { 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); } if (!req) { return callback("Unable to connect to IndexedDB"); } 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; 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)) { 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 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(); }); 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); })); } })); 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) { 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 &= ~2097152; flags &= ~2048; flags &= ~32768; flags &= ~524288; 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]); } 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); 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); 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; 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) { 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) { position += stream.position; } else if (whence === 2) { 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) { 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, parts[i], WORKERFS.DIR_MODE, 0); } parent = createdParents[curr]; } return parent; } function base(path) { var parts = path.split("/"); return parts[parts.length - 1]; } 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); 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) { position += stream.position; } else if (whence === 2) { if (FS.isFile(stream.node.mode)) { position += stream.node.size; } } if (position < 0) { throw new FS.ErrnoError(ERRNO_CODES.EINVAL); } return position; }) } }; STATICTOP += 16; STATICTOP += 16; STATICTOP += 16; 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, syncFSRequests: 0, 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) { throw new FS.ErrnoError(ERRNO_CODES.ELOOP); } var parts = PATH.normalizeArray(path.split("/").filter((function(p) { return !!p; })), false); 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) { break; } current = FS.lookupNode(current, parts[i]); current_path = PATH.join2(current_path, parts[i]); if (FS.isMountpoint(current)) { if (!islast || islast && opts.follow_mount) { current = current.mounted.root; } } 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) { 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; } } 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; } 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 = {}; var readMode = 292 | 73; var writeMode = 146; 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; } 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 (FS.flagsToPermissionString(flags) !== "r" || 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 = {}; 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; }) } }); } 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); stream.stream_ops = device.stream_ops; 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 & 255; }), 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; } FS.syncFSRequests++; if (FS.syncFSRequests > 1) { console.log("warning: " + FS.syncFSRequests + " FS.syncfs operations in flight at once, probably just doing extra work"); } var mounts = FS.getMounts(FS.root.mount); var completed = 0; function doCallback(err) { assert(FS.syncFSRequests > 0); FS.syncFSRequests--; return callback(err); } function done(err) { if (err) { if (!done.errored) { done.errored = true; return doCallback(err); } return; } if (++completed >= mounts.length) { doCallback(null); } } 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; 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: [] }; var mountRoot = type.mount(mount); mountRoot.mount = mount; mount.root = mountRoot; if (root) { FS.root = mountRoot; } else if (node) { node.mounted = mount; 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); } 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; } })); node.mounted = null; 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; mode &= 4095; mode |= 32768; return FS.mknod(path, mode, 0); }), mkdir: (function(path, mode) { mode = mode !== undefined ? mode : 511; mode &= 511 | 512; mode |= 16384; return FS.mknod(path, mode, 0); }), mkdev: (function(path, mode, dev) { if (typeof dev === "undefined") { dev = mode; mode = 438; } 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); 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); if (old_dir.mount !== new_dir.mount) { throw new FS.ErrnoError(ERRNO_CODES.EXDEV); } var old_node = FS.lookupNode(old_dir, old_name); var relative = PATH.relative(old_path, new_dirname); if (relative.charAt(0) !== ".") { throw new FS.ErrnoError(ERRNO_CODES.EINVAL); } relative = PATH.relative(new_path, old_dirname); if (relative.charAt(0) !== ".") { throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); } var new_node; try { new_node = FS.lookupNode(new_dir, new_name); } catch (e) {} if (old_node === new_node) { return; } var isdir = FS.isDir(old_node.mode); var err = FS.mayDelete(old_dir, old_name, isdir); if (err) { throw new FS.ErrnoError(err); } 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 (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); } FS.hashRemoveNode(old_node); try { old_dir.node_ops.rename(old_node, new_dir, new_name); } catch (e) { throw e; } finally { 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) { 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() }); }), 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 : 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) {} } var created = false; if (flags & 64) { if (node) { if (flags & 128) { throw new FS.ErrnoError(ERRNO_CODES.EEXIST); } } else { node = FS.mknod(path, mode, 0); created = true; } } if (!node) { throw new FS.ErrnoError(ERRNO_CODES.ENOENT); } if (FS.isChrdev(node.mode)) { flags &= ~512; } if (flags & 65536 && !FS.isDir(node.mode)) { throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); } if (!created) { var err = FS.mayOpen(node, flags); if (err) { throw new FS.ErrnoError(err); } } if (flags & 512) { FS.truncate(node, 0); } flags &= ~(128 | 512); var stream = FS.createStream({ node: node, path: FS.getPath(node), flags: flags, seekable: true, position: 0, stream_ops: node.stream_ops, ungotten: [], error: false }, fd_start, fd_end); 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; 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) { 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) { 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() { FS.mkdir("/dev"); 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)); 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)); var random_device; if (typeof crypto !== "undefined") { var randomBuffer = new Uint8Array(1); random_device = (function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }); } else if (ENVIRONMENT_IS_NODE) { random_device = (function() { return require("crypto").randomBytes(1)[0]; }); } else { random_device = (function() { return Math.random() * 256 | 0; }); } FS.createDevice("/dev", "random", random_device); FS.createDevice("/dev", "urandom", random_device); FS.mkdir("/dev/shm"); FS.mkdir("/dev/shm/tmp"); }), createSpecialDirectories: (function() { FS.mkdir("/proc"); FS.mkdir("/proc/self"); FS.mkdir("/proc/self/fd"); FS.mount({ mount: (function() { var node = FS.createNode("/proc/self", "fd", 16384 | 511, 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; return ret; }) }; return node; }) }, {}, "/proc/self/fd"); }), createStandardStreams: (function() { 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"); } 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) { 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; [ 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(); Module["stdin"] = input || Module["stdin"]; Module["stdout"] = output || Module["stdout"]; Module["stderr"] = error || Module["stderr"]; FS.createStandardStreams(); }), quit: (function() { FS.init.initialized = false; var fflush = Module["_fflush"]; if (fflush) fflush(0); 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) { 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) {} 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; } 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); FS.registerDevice(dev, { open: (function(stream) { stream.seekable = false; }), close: (function(stream) { if (output && output.buffer && output.buffer.length) { output(10); } }), read: (function(stream, buffer, offset, length, pos) { 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"]) { try { 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) { function LazyUint8Array() { this.lengthKnown = false; this.chunks = []; } 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() { 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 usesGzip = (header = xhr.getResponseHeader("Content-Encoding")) && header === "gzip"; var chunkSize = 1024 * 1024; if (!hasByteServing) chunkSize = datalength; 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!"); var xhr = new XMLHttpRequest; xhr.open("GET", url, false); if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); 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; end = Math.min(end, datalength - 1); 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]; })); if (usesGzip || !datalength) { chunkSize = datalength = 1; datalength = this.getter(0).length; chunkSize = datalength; console.log("LazyFiles on gzip forces download of the whole file when length is accessed"); } 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.defineProperties(lazyArray, { length: { get: (function() { if (!this.lengthKnown) { this.cacheLength(); } return this._length; }) }, 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); if (properties.contents) { node.contents = properties.contents; } else if (properties.url) { node.contents = null; node.url = properties.url; } Object.defineProperties(node, { usedBytes: { get: (function() { return this.contents.length; }) } }); 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); }; })); 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) { for (var i = 0; i < size; i++) { buffer[offset + i] = contents[position + i]; } } else { for (var i = 0; i < size; i++) { 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(); var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; var dep = getUniqueRunDependency("cp " + 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; 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] !== "/") { 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))) { 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() / 1e3 | 0; HEAP32[buf + 52 >> 2] = 0; HEAP32[buf + 56 >> 2] = stat.mtime.getTime() / 1e3 | 0; HEAP32[buf + 60 >> 2] = 0; HEAP32[buf + 64 >> 2] = stat.ctime.getTime() / 1e3 | 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) { 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) { 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) { 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 && 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; } 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 ___syscall54(which, varargs) { SYSCALLS.varargs = varargs; try { 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; } 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; } 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; } } Module["_bitshift64Ashr"] = _bitshift64Ashr; Module["_bitshift64Lshr"] = _bitshift64Lshr; function __ZN4wasm21createNameManagerPassEv() { Module["printErr"]("missing function: _ZN4wasm21createNameManagerPassEv"); abort(-1); } function _pthread_cleanup_push(routine, arg) { __ATEXIT__.push((function() { Runtime.dynCall("vi", routine, [ arg ]); })); _pthread_cleanup_push.level = __ATEXIT__.length; } Module["_pthread_cond_broadcast"] = _pthread_cond_broadcast; var _environ = STATICTOP; STATICTOP += 16; function ___buildEnvironment(env) { var MAX_ENV_VALUES = 64; var TOTAL_ENV_SIZE = 1024; var poolPtr; var envPtr; if (!___buildEnvironment.called) { ___buildEnvironment.called = true; ENV["USER"] = ENV["LOGNAME"] = "web_user"; ENV["PATH"] = "/"; ENV["PWD"] = "/"; ENV["HOME"] = "/home/web_user"; ENV["LANG"] = "C"; ENV["_"] = Module["thisProgram"]; poolPtr = allocate(TOTAL_ENV_SIZE, "i8", ALLOC_STATIC); envPtr = allocate(MAX_ENV_VALUES * 4, "i8*", ALLOC_STATIC); HEAP32[envPtr >> 2] = poolPtr; HEAP32[_environ >> 2] = envPtr; } else { envPtr = HEAP32[_environ >> 2]; poolPtr = HEAP32[envPtr >> 2]; } var strings = []; var totalSize = 0; for (var key in env) { if (typeof env[key] === "string") { var line = key + "=" + env[key]; strings.push(line); totalSize += line.length; } } if (totalSize > TOTAL_ENV_SIZE) { throw new Error("Environment size exceeded TOTAL_ENV_SIZE!"); } var ptrSize = 4; for (var i = 0; i < strings.length; i++) { var line = strings[i]; writeAsciiToMemory(line, poolPtr); HEAP32[envPtr + i * ptrSize >> 2] = poolPtr; poolPtr += line.length + 1; } HEAP32[envPtr + strings.length * ptrSize >> 2] = 0; } var ENV = {}; function _getenv(name) { if (name === 0) return 0; name = Pointer_stringify(name); if (!ENV.hasOwnProperty(name)) return 0; if (_getenv.ret) _free(_getenv.ret); _getenv.ret = allocate(intArrayFromString(ENV[name]), "i8", ALLOC_NORMAL); return _getenv.ret; } function __ZN4wasm24createCoalesceLocalsPassEv() { Module["printErr"]("missing function: _ZN4wasm24createCoalesceLocalsPassEv"); abort(-1); } function __ZN4wasm29createDeadCodeEliminationPassEv() { Module["printErr"]("missing function: _ZN4wasm29createDeadCodeEliminationPassEv"); abort(-1); } 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; } Module["_pthread_mutex_unlock"] = _pthread_mutex_unlock; function __ZN4wasm25createRemoveUnusedBrsPassEv() { Module["printErr"]("missing function: _ZN4wasm25createRemoveUnusedBrsPassEv"); abort(-1); } function _emscripten_memcpy_big(dest, src, num) { HEAPU8.set(HEAPU8.subarray(src, src + num), dest); return dest; } Module["_memcpy"] = _memcpy; function _sbrk(bytes) { var self = _sbrk; if (!self.called) { DYNAMICTOP = alignMemoryPage(DYNAMICTOP); 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; } return ret; } Module["_bitshift64Shl"] = _bitshift64Shl; Module["_memmove"] = _memmove; function ___gxx_personality_v0() {} 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_STATIC); Module["_llvm_cttz_i32"] = _llvm_cttz_i32; Module["___udivmoddi4"] = ___udivmoddi4; Module["___uremdi3"] = ___uremdi3; function __ZN4wasm20createPrecomputePassEv() { Module["printErr"]("missing function: _ZN4wasm20createPrecomputePassEv"); abort(-1); } function _pthread_cond_wait() { return 0; } function _emscripten_get_now() { abort(); } function _emscripten_get_now_is_monotonic() { return ENVIRONMENT_IS_NODE || typeof dateNow !== "undefined" || (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) && self["performance"] && self["performance"]["now"]; } function _clock_gettime(clk_id, tp) { var now; if (clk_id === 0) { now = Date.now(); } else if (clk_id === 1 && _emscripten_get_now_is_monotonic()) { now = _emscripten_get_now(); } else { ___setErrNo(ERRNO_CODES.EINVAL); return -1; } HEAP32[tp >> 2] = now / 1e3 | 0; HEAP32[tp + 4 >> 2] = now % 1e3 * 1e3 * 1e3 | 0; return 0; } function ___assert_fail(condition, filename, line, func) { ABORT = true; throw "Assertion failed: " + Pointer_stringify(condition) + ", at: " + [ filename ? Pointer_stringify(filename) : "unknown filename", line, func ? Pointer_stringify(func) : "unknown function" ] + " at " + stackTrace(); } function __ZN4wasm26createDropReturnValuesPassEv() { Module["printErr"]("missing function: _ZN4wasm26createDropReturnValuesPassEv"); abort(-1); } Module["_memset"] = _memset; function __ZN4wasm26createReorderFunctionsPassEv() { Module["printErr"]("missing function: _ZN4wasm26createReorderFunctionsPassEv"); abort(-1); } function _pthread_cond_signal() { return 0; } function _abort() { Module["abort"](); } function _pthread_cond_destroy() { return 0; } function _pthread_mutex_destroy() {} function _pthread_once(ptr, func) { if (!_pthread_once.seen) _pthread_once.seen = {}; if (ptr in _pthread_once.seen) return; Runtime.dynCall("v", func); _pthread_once.seen[ptr] = 1; } Module["___divdi3"] = ___divdi3; function __ZN4wasm18createNameListPassEv() { Module["printErr"]("missing function: _ZN4wasm18createNameListPassEv"); abort(-1); } function ___lock() {} function ___unlock() {} function _pthread_getspecific(key) { return PTHREAD_SPECIFIC[key] || 0; } function __ZN4wasm21createLowerIfElsePassEv() { Module["printErr"]("missing function: _ZN4wasm21createLowerIfElsePassEv"); abort(-1); } function __ZN4wasm31createRemoveUnusedFunctionsPassEv() { Module["printErr"]("missing function: _ZN4wasm31createRemoveUnusedFunctionsPassEv"); abort(-1); } function __exit(status) { Module["exit"](status); } function _exit(status) { __exit(status); } function _pthread_setspecific(key, value) { if (!(key in PTHREAD_SPECIFIC)) { return ERRNO_CODES.EINVAL; } PTHREAD_SPECIFIC[key] = value; return 0; } function __ZN4wasm36createCoalesceLocalsWithLearningPassEv() { Module["printErr"]("missing function: _ZN4wasm36createCoalesceLocalsWithLearningPassEv"); abort(-1); } function _malloc(bytes) { var ptr = Runtime.dynamicAlloc(bytes + 8); return ptr + 8 & 4294967288; } Module["_malloc"] = _malloc; function ___cxa_allocate_exception(size) { return _malloc(size); } function ___cxa_pure_virtual() { ABORT = true; throw "Pure virtual function called!"; } function __isLeapYear(year) { return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0); } function __arraySum(array, index) { var sum = 0; for (var i = 0; i <= index; sum += array[i++]) ; return sum; } var __MONTH_DAYS_LEAP = [ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ]; var __MONTH_DAYS_REGULAR = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ]; function __addDays(date, days) { var newDate = new Date(date.getTime()); while (days > 0) { var leap = __isLeapYear(newDate.getFullYear()); var currentMonth = newDate.getMonth(); var daysInCurrentMonth = (leap ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR)[currentMonth]; if (days > daysInCurrentMonth - newDate.getDate()) { days -= daysInCurrentMonth - newDate.getDate() + 1; newDate.setDate(1); if (currentMonth < 11) { newDate.setMonth(currentMonth + 1); } else { newDate.setMonth(0); newDate.setFullYear(newDate.getFullYear() + 1); } } else { newDate.setDate(newDate.getDate() + days); return newDate; } } return newDate; } function _strftime(s, maxsize, format, tm) { var tm_zone = HEAP32[tm + 40 >> 2]; var date = { tm_sec: HEAP32[tm >> 2], tm_min: HEAP32[tm + 4 >> 2], tm_hour: HEAP32[tm + 8 >> 2], tm_mday: HEAP32[tm + 12 >> 2], tm_mon: HEAP32[tm + 16 >> 2], tm_year: HEAP32[tm + 20 >> 2], tm_wday: HEAP32[tm + 24 >> 2], tm_yday: HEAP32[tm + 28 >> 2], tm_isdst: HEAP32[tm + 32 >> 2], tm_gmtoff: HEAP32[tm + 36 >> 2], tm_zone: tm_zone ? Pointer_stringify(tm_zone) : "" }; var pattern = Pointer_stringify(format); var EXPANSION_RULES_1 = { "%c": "%a %b %d %H:%M:%S %Y", "%D": "%m/%d/%y", "%F": "%Y-%m-%d", "%h": "%b", "%r": "%I:%M:%S %p", "%R": "%H:%M", "%T": "%H:%M:%S", "%x": "%m/%d/%y", "%X": "%H:%M:%S" }; for (var rule in EXPANSION_RULES_1) { pattern = pattern.replace(new RegExp(rule, "g"), EXPANSION_RULES_1[rule]); } var WEEKDAYS = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ]; var MONTHS = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ]; function leadingSomething(value, digits, character) { var str = typeof value === "number" ? value.toString() : value || ""; while (str.length < digits) { str = character[0] + str; } return str; } function leadingNulls(value, digits) { return leadingSomething(value, digits, "0"); } function compareByDay(date1, date2) { function sgn(value) { return value < 0 ? -1 : value > 0 ? 1 : 0; } var compare; if ((compare = sgn(date1.getFullYear() - date2.getFullYear())) === 0) { if ((compare = sgn(date1.getMonth() - date2.getMonth())) === 0) { compare = sgn(date1.getDate() - date2.getDate()); } } return compare; } function getFirstWeekStartDate(janFourth) { switch (janFourth.getDay()) { case 0: return new Date(janFourth.getFullYear() - 1, 11, 29); case 1: return janFourth; case 2: return new Date(janFourth.getFullYear(), 0, 3); case 3: return new Date(janFourth.getFullYear(), 0, 2); case 4: return new Date(janFourth.getFullYear(), 0, 1); case 5: return new Date(janFourth.getFullYear() - 1, 11, 31); case 6: return new Date(janFourth.getFullYear() - 1, 11, 30); } } function getWeekBasedYear(date) { var thisDate = __addDays(new Date(date.tm_year + 1900, 0, 1), date.tm_yday); var janFourthThisYear = new Date(thisDate.getFullYear(), 0, 4); var janFourthNextYear = new Date(thisDate.getFullYear() + 1, 0, 4); var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear); var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear); if (compareByDay(firstWeekStartThisYear, thisDate) <= 0) { if (compareByDay(firstWeekStartNextYear, thisDate) <= 0) { return thisDate.getFullYear() + 1; } else { return thisDate.getFullYear(); } } else { return thisDate.getFullYear() - 1; } } var EXPANSION_RULES_2 = { "%a": (function(date) { return WEEKDAYS[date.tm_wday].substring(0, 3); }), "%A": (function(date) { return WEEKDAYS[date.tm_wday]; }), "%b": (function(date) { return MONTHS[date.tm_mon].substring(0, 3); }), "%B": (function(date) { return MONTHS[date.tm_mon]; }), "%C": (function(date) { var year = date.tm_year + 1900; return leadingNulls(year / 100 | 0, 2); }), "%d": (function(date) { return leadingNulls(date.tm_mday, 2); }), "%e": (function(date) { return leadingSomething(date.tm_mday, 2, " "); }), "%g": (function(date) { return getWeekBasedYear(date).toString().substring(2); }), "%G": (function(date) { return getWeekBasedYear(date); }), "%H": (function(date) { return leadingNulls(date.tm_hour, 2); }), "%I": (function(date) { var twelveHour = date.tm_hour; if (twelveHour == 0) twelveHour = 12; else if (twelveHour > 12) twelveHour -= 12; return leadingNulls(twelveHour, 2); }), "%j": (function(date) { return leadingNulls(date.tm_mday + __arraySum(__isLeapYear(date.tm_year + 1900) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, date.tm_mon - 1), 3); }), "%m": (function(date) { return leadingNulls(date.tm_mon + 1, 2); }), "%M": (function(date) { return leadingNulls(date.tm_min, 2); }), "%n": (function() { return "\n"; }), "%p": (function(date) { if (date.tm_hour >= 0 && date.tm_hour < 12) { return "AM"; } else { return "PM"; } }), "%S": (function(date) { return leadingNulls(date.tm_sec, 2); }), "%t": (function() { return "\t"; }), "%u": (function(date) { var day = new Date(date.tm_year + 1900, date.tm_mon + 1, date.tm_mday, 0, 0, 0, 0); return day.getDay() || 7; }), "%U": (function(date) { var janFirst = new Date(date.tm_year + 1900, 0, 1); var firstSunday = janFirst.getDay() === 0 ? janFirst : __addDays(janFirst, 7 - janFirst.getDay()); var endDate = new Date(date.tm_year + 1900, date.tm_mon, date.tm_mday); if (compareByDay(firstSunday, endDate) < 0) { var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth() - 1) - 31; var firstSundayUntilEndJanuary = 31 - firstSunday.getDate(); var days = firstSundayUntilEndJanuary + februaryFirstUntilEndMonth + endDate.getDate(); return leadingNulls(Math.ceil(days / 7), 2); } return compareByDay(firstSunday, janFirst) === 0 ? "01" : "00"; }), "%V": (function(date) { var janFourthThisYear = new Date(date.tm_year + 1900, 0, 4); var janFourthNextYear = new Date(date.tm_year + 1901, 0, 4); var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear); var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear); var endDate = __addDays(new Date(date.tm_year + 1900, 0, 1), date.tm_yday); if (compareByDay(endDate, firstWeekStartThisYear) < 0) { return "53"; } if (compareByDay(firstWeekStartNextYear, endDate) <= 0) { return "01"; } var daysDifference; if (firstWeekStartThisYear.getFullYear() < date.tm_year + 1900) { daysDifference = date.tm_yday + 32 - firstWeekStartThisYear.getDate(); } else { daysDifference = date.tm_yday + 1 - firstWeekStartThisYear.getDate(); } return leadingNulls(Math.ceil(daysDifference / 7), 2); }), "%w": (function(date) { var day = new Date(date.tm_year + 1900, date.tm_mon + 1, date.tm_mday, 0, 0, 0, 0); return day.getDay(); }), "%W": (function(date) { var janFirst = new Date(date.tm_year, 0, 1); var firstMonday = janFirst.getDay() === 1 ? janFirst : __addDays(janFirst, janFirst.getDay() === 0 ? 1 : 7 - janFirst.getDay() + 1); var endDate = new Date(date.tm_year + 1900, date.tm_mon, date.tm_mday); if (compareByDay(firstMonday, endDate) < 0) { var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth() - 1) - 31; var firstMondayUntilEndJanuary = 31 - firstMonday.getDate(); var days = firstMondayUntilEndJanuary + februaryFirstUntilEndMonth + endDate.getDate(); return leadingNulls(Math.ceil(days / 7), 2); } return compareByDay(firstMonday, janFirst) === 0 ? "01" : "00"; }), "%y": (function(date) { return (date.tm_year + 1900).toString().substring(2); }), "%Y": (function(date) { return date.tm_year + 1900; }), "%z": (function(date) { var off = date.tm_gmtoff; var ahead = off >= 0; off = Math.abs(off) / 60; off = off / 60 * 100 + off % 60; return (ahead ? "+" : "-") + String("0000" + off).slice(-4); }), "%Z": (function(date) { return date.tm_zone; }), "%%": (function() { return "%"; }) }; for (var rule in EXPANSION_RULES_2) { if (pattern.indexOf(rule) >= 0) { pattern = pattern.replace(new RegExp(rule, "g"), EXPANSION_RULES_2[rule](date)); } } var bytes = intArrayFromString(pattern, false); if (bytes.length > maxsize) { return 0; } writeArrayToMemory(bytes, s); return bytes.length - 1; } function _strftime_l(s, maxsize, format, tm) { return _strftime(s, maxsize, format, tm); } function __ZN4wasm24createSimplifyLocalsPassEv() { Module["printErr"]("missing function: _ZN4wasm24createSimplifyLocalsPassEv"); abort(-1); } function _pthread_join() {} function __ZN4wasm24createPostEmscriptenPassEv() { Module["printErr"]("missing function: _ZN4wasm24createPostEmscriptenPassEv"); abort(-1); } Module["___remdi3"] = ___remdi3; function __ZN4wasm17createMetricsPassEv() { Module["printErr"]("missing function: _ZN4wasm17createMetricsPassEv"); abort(-1); } function ___syscall6(which, varargs) { SYSCALLS.varargs = varargs; try { var stream = SYSCALLS.getStreamFromFD(); FS.close(stream); return 0; } catch (e) { if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) abort(e); return -e.errno; } } Module["___udivdi3"] = ___udivdi3; Module["___muldsi3"] = ___muldsi3; Module["___muldi3"] = ___muldi3; function __ZN4wasm22createRemoveMemoryPassEv() { Module["printErr"]("missing function: _ZN4wasm22createRemoveMemoryPassEv"); abort(-1); } function __ZN4wasm23createRemoveImportsPassEv() { Module["printErr"]("missing function: _ZN4wasm23createRemoveImportsPassEv"); abort(-1); } Module["_pthread_self"] = _pthread_self; function ___syscall140(which, varargs) { SYSCALLS.varargs = varargs; try { 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; 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 { 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 ___syscall145(which, varargs) { SYSCALLS.varargs = varargs; try { var stream = SYSCALLS.getStreamFromFD(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); return SYSCALLS.doReadv(stream, iov, iovcnt); } catch (e) { if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) abort(e); return -e.errno; } } var ___dso_handle = STATICTOP; STATICTOP += 16; 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(); } ___buildEnvironment(ENV); if (ENVIRONMENT_IS_NODE) { _emscripten_get_now = function _emscripten_get_now_actual() { var t = process["hrtime"](); return t[0] * 1e3 + t[1] / 1e6; }; } else if (typeof dateNow !== "undefined") { _emscripten_get_now = dateNow; } else if (typeof self === "object" && self["performance"] && typeof self["performance"]["now"] === "function") { _emscripten_get_now = (function() { return self["performance"]["now"](); }); } else if (typeof performance === "object" && typeof performance["now"] === "function") { _emscripten_get_now = (function() { return performance["now"](); }); } else { _emscripten_get_now = Date.now; } STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); staticSealed = true; STACK_MAX = STACK_BASE + TOTAL_STACK; DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); function invoke_iiiiiiii(index, a1, a2, a3, a4, a5, a6, a7) { try { return Module["dynCall_iiiiiiii"](index, a1, a2, a3, a4, a5, a6, a7); } 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_viiiiii(index, a1, a2, a3, a4, a5, a6) { try { Module["dynCall_viiiiii"](index, a1, a2, a3, a4, a5, a6); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_viiiii(index, a1, a2, a3, a4, a5) { try { Module["dynCall_viiiii"](index, a1, a2, a3, a4, a5); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_iiiiiid(index, a1, a2, a3, a4, a5, a6) { try { return Module["dynCall_iiiiiid"](index, a1, a2, a3, a4, a5, a6); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_i(index) { try { return Module["dynCall_i"](index); } 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); } } function invoke_vii(index, a1, a2) { try { Module["dynCall_vii"](index, a1, a2); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_iiiiiii(index, a1, a2, a3, a4, a5, a6) { try { return Module["dynCall_iiiiiii"](index, a1, a2, a3, a4, a5, a6); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } 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_viii(index, a1, a2, a3) { try { Module["dynCall_viii"](index, a1, a2, a3); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_v(index) { try { Module["dynCall_v"](index); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_iiiiiiiii(index, a1, a2, a3, a4, a5, a6, a7, a8) { try { return Module["dynCall_iiiiiiiii"](index, a1, a2, a3, a4, a5, a6, a7, a8); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_iiiii(index, a1, a2, a3, a4) { try { return Module["dynCall_iiiii"](index, a1, a2, a3, a4); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_viiii(index, a1, a2, a3, a4) { try { Module["dynCall_viiii"](index, a1, a2, a3, a4); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_iii(index, a1, a2) { try { return Module["dynCall_iii"](index, a1, a2); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_iiiiid(index, a1, a2, a3, a4, a5) { try { return Module["dynCall_iiiiid"](index, a1, a2, a3, a4, a5); } catch (e) { if (typeof e !== "number" && e !== "longjmp") throw e; asm["setThrew"](1, 0); } } function invoke_iiiiii(index, a1, a2, a3, a4, a5) { try { return Module["dynCall_iiiiii"](index, a1, a2, a3, a4, a5); } 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, "byteLength": byteLength }; Module.asmLibraryArg = { "abort": abort, "assert": assert, "invoke_iiiiiiii": invoke_iiiiiiii, "invoke_iiii": invoke_iiii, "invoke_viiiiii": invoke_viiiiii, "invoke_viiiii": invoke_viiiii, "invoke_iiiiiid": invoke_iiiiiid, "invoke_i": invoke_i, "invoke_vi": invoke_vi, "invoke_vii": invoke_vii, "invoke_iiiiiii": invoke_iiiiiii, "invoke_ii": invoke_ii, "invoke_viii": invoke_viii, "invoke_v": invoke_v, "invoke_iiiiiiiii": invoke_iiiiiiiii, "invoke_iiiii": invoke_iiiii, "invoke_viiii": invoke_viiii, "invoke_iii": invoke_iii, "invoke_iiiiid": invoke_iiiiid, "invoke_iiiiii": invoke_iiiiii, "_pthread_cleanup_pop": _pthread_cleanup_pop, "_strftime": _strftime, "_pthread_cond_wait": _pthread_cond_wait, "___lock": ___lock, "_emscripten_get_now_is_monotonic": _emscripten_get_now_is_monotonic, "__ZN4wasm24createPostEmscriptenPassEv": __ZN4wasm24createPostEmscriptenPassEv, "___resumeException": ___resumeException, "__ZN4wasm22createRemoveMemoryPassEv": __ZN4wasm22createRemoveMemoryPassEv, "_pthread_key_create": _pthread_key_create, "_abort": _abort, "__ZN4wasm20createPrecomputePassEv": __ZN4wasm20createPrecomputePassEv, "___cxa_pure_virtual": ___cxa_pure_virtual, "__addDays": __addDays, "___gxx_personality_v0": ___gxx_personality_v0, "_pthread_create": _pthread_create, "_emscripten_asm_const_iiii": _emscripten_asm_const_iiii, "___assert_fail": ___assert_fail, "___cxa_allocate_exception": ___cxa_allocate_exception, "_pthread_join": _pthread_join, "__ZN4wasm16createVacuumPassEv": __ZN4wasm16createVacuumPassEv, "___buildEnvironment": ___buildEnvironment, "_emscripten_asm_const_ii": _emscripten_asm_const_ii, "_emscripten_asm_const_di": _emscripten_asm_const_di, "__ZN4wasm24createSimplifyLocalsPassEv": __ZN4wasm24createSimplifyLocalsPassEv, "_clock_gettime": _clock_gettime, "_emscripten_asm_const_did": _emscripten_asm_const_did, "_strftime_l": _strftime_l, "__ZN4wasm30createOptimizeInstructionsPassEv": __ZN4wasm30createOptimizeInstructionsPassEv, "_pthread_setspecific": _pthread_setspecific, "___setErrNo": ___setErrNo, "_emscripten_asm_const_id": _emscripten_asm_const_id, "_sbrk": _sbrk, "__ZN4wasm23createReorderLocalsPassEv": __ZN4wasm23createReorderLocalsPassEv, "_emscripten_memcpy_big": _emscripten_memcpy_big, "_emscripten_asm_const_v": _emscripten_asm_const_v, "__ZSt18uncaught_exceptionv": __ZSt18uncaught_exceptionv, "__exit": __exit, "__ZN4wasm24createCoalesceLocalsPassEv": __ZN4wasm24createCoalesceLocalsPassEv, "___cxa_begin_catch": ___cxa_begin_catch, "__ZN4wasm26createDropReturnValuesPassEv": __ZN4wasm26createDropReturnValuesPassEv, "__arraySum": __arraySum, "__ZN4wasm21createNameManagerPassEv": __ZN4wasm21createNameManagerPassEv, "_emscripten_asm_const_diiid": _emscripten_asm_const_diiid, "_pthread_cond_signal": _pthread_cond_signal, "__ZN4wasm27createRemoveUnusedNamesPassEv": __ZN4wasm27createRemoveUnusedNamesPassEv, "_pthread_mutex_destroy": _pthread_mutex_destroy, "__ZN4wasm25createRemoveUnusedBrsPassEv": __ZN4wasm25createRemoveUnusedBrsPassEv, "_pthread_once": _pthread_once, "_pthread_getspecific": _pthread_getspecific, "_getenv": _getenv, "_emscripten_asm_const_iid": _emscripten_asm_const_iid, "__ZN4wasm23createRemoveImportsPassEv": __ZN4wasm23createRemoveImportsPassEv, "__ZN4wasm21createLowerIfElsePassEv": __ZN4wasm21createLowerIfElsePassEv, "___syscall54": ___syscall54, "___unlock": ___unlock, "__ZN4wasm18createNameListPassEv": __ZN4wasm18createNameListPassEv, "__isLeapYear": __isLeapYear, "_emscripten_asm_const_iii": _emscripten_asm_const_iii, "__ZN4wasm31createRemoveUnusedFunctionsPassEv": __ZN4wasm31createRemoveUnusedFunctionsPassEv, "__ZN4wasm26createReorderFunctionsPassEv": __ZN4wasm26createReorderFunctionsPassEv, "__ZN4wasm38createDuplicateFunctionEliminationPassEv": __ZN4wasm38createDuplicateFunctionEliminationPassEv, "__ZN4wasm21createMergeBlocksPassEv": __ZN4wasm21createMergeBlocksPassEv, "___cxa_atexit": ___cxa_atexit, "___cxa_throw": ___cxa_throw, "_sysconf": _sysconf, "__ZN4wasm29createDeadCodeEliminationPassEv": __ZN4wasm29createDeadCodeEliminationPassEv, "_emscripten_asm_const_dii": _emscripten_asm_const_dii, "___syscall6": ___syscall6, "_pthread_cleanup_push": _pthread_cleanup_push, "_emscripten_asm_const_i": _emscripten_asm_const_i, "_emscripten_get_now": _emscripten_get_now, "_pthread_cond_destroy": _pthread_cond_destroy, "_emscripten_asm_const_diiiii": _emscripten_asm_const_diiiii, "__ZN4wasm36createCoalesceLocalsWithLearningPassEv": __ZN4wasm36createCoalesceLocalsWithLearningPassEv, "_atexit": _atexit, "___syscall140": ___syscall140, "__ZN4wasm17createMetricsPassEv": __ZN4wasm17createMetricsPassEv, "_exit": _exit, "___cxa_find_matching_catch": ___cxa_find_matching_catch, "___syscall145": ___syscall145, "___syscall146": ___syscall146, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8, "___dso_handle": ___dso_handle }; // EMSCRIPTEN_START_ASM var asm = (function(global,env,buffer) { 'almost asm'; var Int8View = global.Int8Array; var Int16View = global.Int16Array; var Int32View = global.Int32Array; var Uint8View = global.Uint8Array; var Uint16View = global.Uint16Array; var Uint32View = global.Uint32Array; var Float32View = global.Float32Array; var Float64View = global.Float64Array; var HEAP8 = new Int8View(buffer); var HEAP16 = new Int16View(buffer); var HEAP32 = new Int32View(buffer); var HEAPU8 = new Uint8View(buffer); var HEAPU16 = new Uint16View(buffer); var HEAPU32 = new Uint32View(buffer); var HEAPF32 = new Float32View(buffer); var HEAPF64 = new Float64View(buffer); var byteLength = global.byteLength; 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 ___dso_handle=env.___dso_handle|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 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 invoke_iiiiiiii=env.invoke_iiiiiiii; var invoke_iiii=env.invoke_iiii; var invoke_viiiiii=env.invoke_viiiiii; var invoke_viiiii=env.invoke_viiiii; var invoke_iiiiiid=env.invoke_iiiiiid; var invoke_i=env.invoke_i; var invoke_vi=env.invoke_vi; var invoke_vii=env.invoke_vii; var invoke_iiiiiii=env.invoke_iiiiiii; var invoke_ii=env.invoke_ii; var invoke_viii=env.invoke_viii; var invoke_v=env.invoke_v; var invoke_iiiiiiiii=env.invoke_iiiiiiiii; var invoke_iiiii=env.invoke_iiiii; var invoke_viiii=env.invoke_viiii; var invoke_iii=env.invoke_iii; var invoke_iiiiid=env.invoke_iiiiid; var invoke_iiiiii=env.invoke_iiiiii; var _pthread_cleanup_pop=env._pthread_cleanup_pop; var _strftime=env._strftime; var _pthread_cond_wait=env._pthread_cond_wait; var ___lock=env.___lock; var _emscripten_get_now_is_monotonic=env._emscripten_get_now_is_monotonic; var __ZN4wasm24createPostEmscriptenPassEv=env.__ZN4wasm24createPostEmscriptenPassEv; var ___resumeException=env.___resumeException; var __ZN4wasm22createRemoveMemoryPassEv=env.__ZN4wasm22createRemoveMemoryPassEv; var _pthread_key_create=env._pthread_key_create; var _abort=env._abort; var __ZN4wasm20createPrecomputePassEv=env.__ZN4wasm20createPrecomputePassEv; var ___cxa_pure_virtual=env.___cxa_pure_virtual; var __addDays=env.__addDays; var ___gxx_personality_v0=env.___gxx_personality_v0; var _pthread_create=env._pthread_create; var _emscripten_asm_const_iiii=env._emscripten_asm_const_iiii; var ___assert_fail=env.___assert_fail; var ___cxa_allocate_exception=env.___cxa_allocate_exception; var _pthread_join=env._pthread_join; var __ZN4wasm16createVacuumPassEv=env.__ZN4wasm16createVacuumPassEv; var ___buildEnvironment=env.___buildEnvironment; var _emscripten_asm_const_ii=env._emscripten_asm_const_ii; var _emscripten_asm_const_di=env._emscripten_asm_const_di; var __ZN4wasm24createSimplifyLocalsPassEv=env.__ZN4wasm24createSimplifyLocalsPassEv; var _clock_gettime=env._clock_gettime; var _emscripten_asm_const_did=env._emscripten_asm_const_did; var _strftime_l=env._strftime_l; var __ZN4wasm30createOptimizeInstructionsPassEv=env.__ZN4wasm30createOptimizeInstructionsPassEv; var _pthread_setspecific=env._pthread_setspecific; var ___setErrNo=env.___setErrNo; var _emscripten_asm_const_id=env._emscripten_asm_const_id; var _sbrk=env._sbrk; var __ZN4wasm23createReorderLocalsPassEv=env.__ZN4wasm23createReorderLocalsPassEv; var _emscripten_memcpy_big=env._emscripten_memcpy_big; var _emscripten_asm_const_v=env._emscripten_asm_const_v; var __ZSt18uncaught_exceptionv=env.__ZSt18uncaught_exceptionv; var __exit=env.__exit; var __ZN4wasm24createCoalesceLocalsPassEv=env.__ZN4wasm24createCoalesceLocalsPassEv; var ___cxa_begin_catch=env.___cxa_begin_catch; var __ZN4wasm26createDropReturnValuesPassEv=env.__ZN4wasm26createDropReturnValuesPassEv; var __arraySum=env.__arraySum; var __ZN4wasm21createNameManagerPassEv=env.__ZN4wasm21createNameManagerPassEv; var _emscripten_asm_const_diiid=env._emscripten_asm_const_diiid; var _pthread_cond_signal=env._pthread_cond_signal; var __ZN4wasm27createRemoveUnusedNamesPassEv=env.__ZN4wasm27createRemoveUnusedNamesPassEv; var _pthread_mutex_destroy=env._pthread_mutex_destroy; var __ZN4wasm25createRemoveUnusedBrsPassEv=env.__ZN4wasm25createRemoveUnusedBrsPassEv; var _pthread_once=env._pthread_once; var _pthread_getspecific=env._pthread_getspecific; var _getenv=env._getenv; var _emscripten_asm_const_iid=env._emscripten_asm_const_iid; var __ZN4wasm23createRemoveImportsPassEv=env.__ZN4wasm23createRemoveImportsPassEv; var __ZN4wasm21createLowerIfElsePassEv=env.__ZN4wasm21createLowerIfElsePassEv; var ___syscall54=env.___syscall54; var ___unlock=env.___unlock; var __ZN4wasm18createNameListPassEv=env.__ZN4wasm18createNameListPassEv; var __isLeapYear=env.__isLeapYear; var _emscripten_asm_const_iii=env._emscripten_asm_const_iii; var __ZN4wasm31createRemoveUnusedFunctionsPassEv=env.__ZN4wasm31createRemoveUnusedFunctionsPassEv; var __ZN4wasm26createReorderFunctionsPassEv=env.__ZN4wasm26createReorderFunctionsPassEv; var __ZN4wasm38createDuplicateFunctionEliminationPassEv=env.__ZN4wasm38createDuplicateFunctionEliminationPassEv; var __ZN4wasm21createMergeBlocksPassEv=env.__ZN4wasm21createMergeBlocksPassEv; var ___cxa_atexit=env.___cxa_atexit; var ___cxa_throw=env.___cxa_throw; var _sysconf=env._sysconf; var __ZN4wasm29createDeadCodeEliminationPassEv=env.__ZN4wasm29createDeadCodeEliminationPassEv; var _emscripten_asm_const_dii=env._emscripten_asm_const_dii; var ___syscall6=env.___syscall6; var _pthread_cleanup_push=env._pthread_cleanup_push; var _emscripten_asm_const_i=env._emscripten_asm_const_i; var _emscripten_get_now=env._emscripten_get_now; var _pthread_cond_destroy=env._pthread_cond_destroy; var _emscripten_asm_const_diiiii=env._emscripten_asm_const_diiiii; var __ZN4wasm36createCoalesceLocalsWithLearningPassEv=env.__ZN4wasm36createCoalesceLocalsWithLearningPassEv; var _atexit=env._atexit; var ___syscall140=env.___syscall140; var __ZN4wasm17createMetricsPassEv=env.__ZN4wasm17createMetricsPassEv; var _exit=env._exit; var ___cxa_find_matching_catch=env.___cxa_find_matching_catch; var ___syscall145=env.___syscall145; var ___syscall146=env.___syscall146; var tempFloat = 0.0; function _emscripten_replace_memory(newBuffer) { if ((byteLength(newBuffer) & 0xffffff || byteLength(newBuffer) <= 0xffffff) || byteLength(newBuffer) > 0x80000000) return false; HEAP8 = new Int8View(newBuffer); HEAP16 = new Int16View(newBuffer); HEAP32 = new Int32View(newBuffer); HEAPU8 = new Uint8View(newBuffer); HEAPU16 = new Uint16View(newBuffer); HEAPU32 = new Uint32View(newBuffer); HEAPF32 = new Float32View(newBuffer); HEAPF64 = new Float64View(newBuffer); buffer = newBuffer; return true; } // EMSCRIPTEN_START_FUNCS function __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i52, i46, i50) { i52 = i52 | 0; i46 = i46 | 0; i50 = i50 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i47 = 0, i48 = 0, i49 = 0, i51 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0; i57 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i56 = i57 + 200 | 0; i55 = i57 + 176 | 0; i54 = i57 + 152 | 0; i53 = i57 + 88 | 0; i48 = i57 + 64 | 0; i49 = i57 + 40 | 0; i47 = i57 + 24 | 0; i38 = i57 + 136 | 0; i30 = i57 + 124 | 0; i31 = i57 + 112 | 0; i42 = i57 + 76 | 0; i43 = i57 + 12 | 0; i44 = i57; i39 = i46; i14 = i39 - i52 | 0; L1 : do if ((i14 | 0) > 1) { i16 = (i14 | 0) > 3; if (i16 ? (HEAP8[i52 >> 0] | 0) == 103 : 0) { i29 = (HEAP8[i52 + 1 >> 0] | 0) == 115; i2 = i29 ? i52 + 2 | 0 : i52; } else { i2 = i52; i29 = 0; } do switch (HEAP8[i2 >> 0] | 0) { case 76: { i1 = __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_RT_(i52, i46, i50) | 0; break L1; } case 84: { i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i52, i46, i50) | 0; break L1; } case 102: { i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4_RT_(i52, i46, i50) | 0; break L1; } case 97: switch (HEAP8[i2 + 1 >> 0] | 0) { case 97: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 42482, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 100: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 42503, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 110: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 42503, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 78: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43627, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 83: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43630, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 116: { if ((i14 | 0) <= 2) { i1 = i52; break L1; } if ((HEAP8[i52 >> 0] | 0) != 97) { i1 = i52; break L1; } if ((HEAP8[i52 + 1 >> 0] | 0) != 116) { i1 = i52; break L1; } i53 = i52 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i53, i46, i50) | 0; if ((i1 | 0) == (i53 | 0)) { i1 = i52; break L1; } i11 = HEAP32[i50 + 4 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i11 | 0)) { i1 = i52; break L1; } i10 = i11 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, i11 + -24 | 0); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i54, 0, 43632) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i55, 42358) | 0; HEAP32[i56 >> 2] = HEAP32[i3 >> 2]; HEAP32[i56 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i56 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i10 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i11 + -20 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i9 = 0; i5 = (HEAP32[i11 + -16 >> 2] & 2147483647) + -1 | 0; } else i51 = 30; } else { HEAP8[i10 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i51 = 30; } if ((i51 | 0) == 30) { i6 = 0; i9 = i2 & 255; i5 = 10; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L39 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i10 >> 2] | 0; if (i6) { i2 = 0; i4 = i10; i51 = 38; } else { i5 = 0; i6 = 1; i4 = i10; i51 = 39; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L39; if (i6) { i2 = 1; i3 = HEAP32[i10 >> 2] | 0; i51 = 38; break; } else { i5 = 1; i6 = 0; i3 = i10; i51 = 39; break; } } while (0); if ((i51 | 0) == 38) { i5 = i2; i6 = 1; i2 = HEAP32[i11 + -20 >> 2] | 0; } else if ((i51 | 0) == 39) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i11 + -16 >> 2] = i7 + 1 | -2147483648; HEAP32[i11 + -20 >> 2] = i9; HEAP32[i10 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i10 >> 2] = HEAP32[i56 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i56 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i56 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i56 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); break L1; } case 122: { if ((i14 | 0) <= 2) { i1 = i52; break L1; } if ((HEAP8[i52 >> 0] | 0) != 97) { i1 = i52; break L1; } if ((HEAP8[i52 + 1 >> 0] | 0) != 122) { i1 = i52; break L1; } i53 = i52 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i53, i46, i50) | 0; if ((i1 | 0) == (i53 | 0)) { i1 = i52; break L1; } i11 = HEAP32[i50 + 4 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i11 | 0)) { i1 = i52; break L1; } i10 = i11 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, i11 + -24 | 0); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i54, 0, 43632) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i55, 42358) | 0; HEAP32[i56 >> 2] = HEAP32[i3 >> 2]; HEAP32[i56 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i56 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i10 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i11 + -20 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i9 = 0; i6 = (HEAP32[i11 + -16 >> 2] & 2147483647) + -1 | 0; i5 = 1; } else i51 = 66; } else { HEAP8[i10 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i51 = 66; } if ((i51 | 0) == 66) { i9 = i2 & 255; i6 = 10; i5 = 0; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L87 : do if ((i7 | 0) != (i6 | 0)) { do if (i3) { i3 = HEAP32[i10 >> 2] | 0; if (i5) { i2 = 0; i4 = i10; i51 = 74; } else { i5 = 0; i6 = 1; i4 = i10; i51 = 75; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0) break L87; if (i5) { i2 = 1; i3 = HEAP32[i10 >> 2] | 0; i51 = 74; break; } else { i5 = 1; i6 = 0; i3 = i10; i51 = 75; break; } } while (0); if ((i51 | 0) == 74) { i5 = i2; i6 = 1; i2 = HEAP32[i11 + -20 >> 2] | 0; } else if ((i51 | 0) == 75) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i11 + -16 >> 2] = i7 + 1 | -2147483648; HEAP32[i11 + -20 >> 2] = i9; HEAP32[i10 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i10 >> 2] = HEAP32[i56 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i56 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i56 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i56 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); break L1; } default: { i1 = i52; break L1; } } case 99: switch (HEAP8[i2 + 1 >> 0] | 0) { case 99: { if ((((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 99 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 99 : 0) ? (i51 = i52 + 2 | 0, i13 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0, (i13 | 0) != (i51 | 0)) : 0) ? (i36 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i13, i46, i50) | 0, (i36 | 0) != (i13 | 0)) : 0) ? (i25 = i50 + 4 | 0, i15 = HEAP32[i25 >> 2] | 0, ((i15 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i15 + -24 | 0); i1 = HEAP32[i25 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i52 = i3 + -24 | 0; HEAP32[i25 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i3 = HEAP32[i25 >> 2] | 0; } i3 = i1 + -48 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, i3); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i47, 0, 43642) | 0; HEAP32[i49 >> 2] = HEAP32[i2 >> 2]; HEAP32[i49 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i49 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i49, 43654) | 0; HEAP32[i48 >> 2] = HEAP32[i2 >> 2]; HEAP32[i48 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i48 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = HEAP8[i56 + 11 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i1 ? HEAP32[i56 >> 2] | 0 : i56, i1 ? HEAP32[i56 + 4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i53 >> 2] = HEAP32[i2 >> 2]; HEAP32[i53 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i53 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i53, 42358) | 0; HEAP32[i54 >> 2] = HEAP32[i2 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i55, i54); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = i36; } else i1 = i52; break L1; } case 108: { if (!i16) { i1 = i52; break L1; } if ((HEAP8[i52 >> 0] | 0) != 99) { i1 = i52; break L1; } if ((HEAP8[i52 + 1 >> 0] | 0) != 108) { i1 = i52; break L1; } i55 = i52 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i55, i46, i50) | 0; if ((i2 | 0) == (i55 | 0) | (i2 | 0) == (i46 | 0)) { i1 = i52; break L1; } i12 = i50 + 4 | 0; i1 = HEAP32[i12 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i1 | 0)) { i1 = i52; break L1; } i54 = i1 + -12 | 0; i11 = HEAP8[i54 + 11 >> 0] | 0; i55 = i11 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -24 | 0, i55 ? HEAP32[i54 >> 2] | 0 : i54, i55 ? HEAP32[i1 + -8 >> 2] | 0 : i11 & 255) | 0; i11 = HEAP32[i12 >> 2] | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i56 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i11 + -12 | 0; i9 = i8 + 11 | 0; if ((HEAP8[i9 >> 0] | 0) < 0) { HEAP8[HEAP32[i8 >> 2] >> 0] = 0; HEAP32[i11 + -8 >> 2] = 0; i1 = HEAP8[i9 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i6 = 1; i10 = 0; i5 = (HEAP32[i11 + -4 >> 2] & 2147483647) + -1 | 0; } else i51 = 123; } else { HEAP8[i8 >> 0] = 0; HEAP8[i9 >> 0] = 0; i1 = 0; i51 = 123; } if ((i51 | 0) == 123) { i6 = 0; i10 = i1 & 255; i5 = 10; } i3 = i10 >>> 0 < 11; i7 = i3 ? 10 : (i10 + 16 & 496) + -1 | 0; L162 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i8 >> 2] | 0; if (i6) { i1 = 0; i4 = i8; i51 = 131; } else { i5 = 0; i6 = 1; i4 = i8; i51 = 132; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L162; if (i6) { i1 = 1; i3 = HEAP32[i8 >> 2] | 0; i51 = 131; break; } else { i5 = 1; i6 = 0; i3 = i8; i51 = 132; break; } } while (0); if ((i51 | 0) == 131) { i5 = i1; i6 = 1; i1 = HEAP32[i11 + -8 >> 2] | 0; } else if ((i51 | 0) == 132) i1 = i1 & 255; i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i4 | 0, i3 | 0, i1 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i11 + -4 >> 2] = i7 + 1 | -2147483648; HEAP32[i11 + -8 >> 2] = i10; HEAP32[i8 >> 2] = i4; break; } else { HEAP8[i9 >> 0] = i10; break; } } while (0); HEAP32[i8 >> 2] = HEAP32[i56 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i56 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i56 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i56 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i12 >> 2] | 0) + -24 | 0, 42453) | 0; i6 = i56 + 11 | 0; i7 = i56 + 4 | 0; while (1) { if ((HEAP8[i2 >> 0] | 0) == 69) break; i5 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; if ((i5 | 0) == (i2 | 0) | (i5 | 0) == (i46 | 0)) { i1 = i52; break L1; } i1 = HEAP32[i12 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i1 | 0)) { i1 = i52; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i1 + -24 | 0); i3 = HEAP32[i12 >> 2] | 0; i4 = i3 + -24 | 0; i1 = i3; while (1) { if ((i1 | 0) == (i4 | 0)) break; i55 = i1 + -24 | 0; HEAP32[i12 >> 2] = i55; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i55); i1 = HEAP32[i12 >> 2] | 0; } i2 = HEAP8[i6 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = i1 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if (i2 | 0) { if ((HEAP32[i50 >> 2] | 0) == (i4 | 0)) { i51 = 154; break; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i1 ? HEAP32[i56 >> 2] | 0 : i56, i2) | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i2 = i5; } if ((i51 | 0) == 154) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = i52; break L1; } i1 = HEAP32[i12 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i1 | 0)) { i1 = i52; break L1; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i1 + -24 | 0, 42358) | 0; i1 = i2 + 1 | 0; break L1; } case 109: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43657, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 111: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 42667, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 118: { L209 : do if ((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 99 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 118 : 0) ? (i45 = i50 + 63 | 0, i44 = HEAP8[i45 >> 0] | 0, HEAP8[i45 >> 0] = 0, i51 = i52 + 2 | 0, i19 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0, HEAP8[i45 >> 0] = i44, !((i19 | 0) == (i51 | 0) | (i19 | 0) == (i46 | 0))) : 0) { if ((HEAP8[i19 >> 0] | 0) != 95) { i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i19, i46, i50) | 0; if ((i1 | 0) == (i19 | 0)) { i1 = i52; break; } } else { i1 = i19 + 1 | 0; if ((i1 | 0) == (i46 | 0)) { i1 = i52; break; } i2 = HEAP8[i1 >> 0] | 0; L217 : do if (i2 << 24 >> 24 == 69) { i4 = i50 + 4 | 0; i3 = HEAP32[i4 >> 2] | 0; i51 = HEAP32[i50 + 8 >> 2] | 0; i5 = i51; if (i3 >>> 0 < i51 >>> 0) { HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; HEAP32[i3 + 12 >> 2] = 0; HEAP32[i3 + 16 >> 2] = 0; HEAP32[i3 + 20 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = i3 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 24; break; } i4 = HEAP32[i50 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i50); i5 = (i5 - i4 | 0) / 24 | 0; i4 = i5 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i56, i5 >>> 0 < 89478485 ? (i4 >>> 0 < i3 >>> 0 ? i3 : i4) : 178956970, i2, i50 + 12 | 0); i4 = i56 + 8 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; HEAP32[i5 + 12 >> 2] = 0; HEAP32[i5 + 16 >> 2] = 0; HEAP32[i5 + 20 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i5 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = i5 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } HEAP32[i4 >> 2] = i5 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i50, i56); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i56); } else while (1) { if (i2 << 24 >> 24 == 69) break L217; i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i46, i50) | 0; i3 = (i2 | 0) == (i1 | 0) | (i2 | 0) == (i46 | 0); if (i3) { i1 = i52; break L209; } i51 = HEAP8[(i3 ? i1 : i2) >> 0] | 0; i1 = i2; i2 = i51; } while (0); i1 = i1 + 1 | 0; } i5 = i50 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i52 = i4 + -24 | 0; HEAP32[i5 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i4 = HEAP32[i5 >> 2] | 0; } i4 = i2 + -48 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, i4); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i47, 0, 42453) | 0; HEAP32[i49 >> 2] = HEAP32[i3 >> 2]; HEAP32[i49 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i49 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i49, 43659) | 0; HEAP32[i48 >> 2] = HEAP32[i3 >> 2]; HEAP32[i48 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i48 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = HEAP8[i56 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i2 ? HEAP32[i56 >> 2] | 0 : i56, i2 ? HEAP32[i56 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i53 >> 2] = HEAP32[i3 >> 2]; HEAP32[i53 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i53 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i53, 42358) | 0; HEAP32[i54 >> 2] = HEAP32[i3 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i55, i54); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); } else i1 = i52; } else i1 = i52; while (0); break L1; } default: { i1 = i52; break L1; } } case 100: switch (HEAP8[i2 + 1 >> 0] | 0) { case 97: { i49 = i2 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i49, i46, i50) | 0; if ((i1 | 0) == (i49 | 0)) { i1 = i52; break L1; } i4 = i50 + 4 | 0; i11 = HEAP32[i4 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i11 | 0)) { i1 = i52; break L1; } i10 = i11 + -24 | 0; HEAP32[i54 >> 2] = 0; HEAP32[i54 + 4 >> 2] = 0; HEAP32[i54 + 8 >> 2] = 0; L275 : do if (i29) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i54, 42641, 2); else { i2 = 0; while (1) { if ((i2 | 0) == 3) break L275; HEAP32[i54 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } } while (0); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i54, 43662) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i53, (HEAP32[i4 >> 2] | 0) + -24 | 0); i3 = HEAP8[i53 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i55, i2 ? HEAP32[i53 >> 2] | 0 : i53, i2 ? HEAP32[i53 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i56 >> 2] = HEAP32[i3 >> 2]; HEAP32[i56 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i56 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i10 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i11 + -20 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i9 = 0; i5 = (HEAP32[i11 + -16 >> 2] & 2147483647) + -1 | 0; } else i51 = 224; } else { HEAP8[i10 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i51 = 224; } if ((i51 | 0) == 224) { i6 = 0; i9 = i2 & 255; i5 = 10; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L297 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i10 >> 2] | 0; if (i6) { i2 = 0; i4 = i10; i51 = 232; } else { i5 = 0; i6 = 1; i4 = i10; i51 = 233; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L297; if (i6) { i2 = 1; i3 = HEAP32[i10 >> 2] | 0; i51 = 232; break; } else { i5 = 1; i6 = 0; i3 = i10; i51 = 233; break; } } while (0); if ((i51 | 0) == 232) { i5 = i2; i6 = 1; i2 = HEAP32[i11 + -20 >> 2] | 0; } else if ((i51 | 0) == 233) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i11 + -16 >> 2] = i7 + 1 | -2147483648; HEAP32[i11 + -20 >> 2] = i9; HEAP32[i10 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i10 >> 2] = HEAP32[i56 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i56 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i56 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i56 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); break L1; } case 99: { if ((((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 100 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 99 : 0) ? (i51 = i52 + 2 | 0, i17 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0, (i17 | 0) != (i51 | 0)) : 0) ? (i37 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i17, i46, i50) | 0, (i37 | 0) != (i17 | 0)) : 0) ? (i26 = i50 + 4 | 0, i18 = HEAP32[i26 >> 2] | 0, ((i18 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i18 + -24 | 0); i1 = HEAP32[i26 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i52 = i3 + -24 | 0; HEAP32[i26 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i3 = HEAP32[i26 >> 2] | 0; } i3 = i1 + -48 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, i3); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i47, 0, 43672) | 0; HEAP32[i49 >> 2] = HEAP32[i2 >> 2]; HEAP32[i49 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i49 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i49, 43654) | 0; HEAP32[i48 >> 2] = HEAP32[i2 >> 2]; HEAP32[i48 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i48 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = HEAP8[i56 + 11 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i1 ? HEAP32[i56 >> 2] | 0 : i56, i1 ? HEAP32[i56 + 4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i53 >> 2] = HEAP32[i2 >> 2]; HEAP32[i53 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i53 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i53, 42358) | 0; HEAP32[i54 >> 2] = HEAP32[i2 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i55, i54); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = i37; } else i1 = i52; break L1; } case 101: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 42498, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 108: { i49 = i2 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i49, i46, i50) | 0; if ((i1 | 0) == (i49 | 0)) { i1 = i52; break L1; } i4 = i50 + 4 | 0; i11 = HEAP32[i4 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i11 | 0)) { i1 = i52; break L1; } i10 = i11 + -24 | 0; HEAP32[i54 >> 2] = 0; HEAP32[i54 + 4 >> 2] = 0; HEAP32[i54 + 8 >> 2] = 0; L357 : do if (i29) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i54, 42641, 2); else { i2 = 0; while (1) { if ((i2 | 0) == 3) break L357; HEAP32[i54 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } } while (0); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i54, 43686) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i53, (HEAP32[i4 >> 2] | 0) + -24 | 0); i3 = HEAP8[i53 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i55, i2 ? HEAP32[i53 >> 2] | 0 : i53, i2 ? HEAP32[i53 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i56 >> 2] = HEAP32[i3 >> 2]; HEAP32[i56 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i56 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i10 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i11 + -20 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i9 = 0; i5 = (HEAP32[i11 + -16 >> 2] & 2147483647) + -1 | 0; } else i51 = 286; } else { HEAP8[i10 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i51 = 286; } if ((i51 | 0) == 286) { i6 = 0; i9 = i2 & 255; i5 = 10; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L379 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i10 >> 2] | 0; if (i6) { i2 = 0; i4 = i10; i51 = 294; } else { i5 = 0; i6 = 1; i4 = i10; i51 = 295; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L379; if (i6) { i2 = 1; i3 = HEAP32[i10 >> 2] | 0; i51 = 294; break; } else { i5 = 1; i6 = 0; i3 = i10; i51 = 295; break; } } while (0); if ((i51 | 0) == 294) { i5 = i2; i6 = 1; i2 = HEAP32[i11 + -20 >> 2] | 0; } else if ((i51 | 0) == 295) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i11 + -16 >> 2] = i7 + 1 | -2147483648; HEAP32[i11 + -20 >> 2] = i9; HEAP32[i10 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i10 >> 2] = HEAP32[i56 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i56 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i56 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i56 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); break L1; } case 110: { i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i52, i46, i50) | 0; break L1; } case 115: { if ((i14 | 0) <= 2) { i1 = i52; break L1; } if ((HEAP8[i52 >> 0] | 0) != 100) { i1 = i52; break L1; } if ((HEAP8[i52 + 1 >> 0] | 0) != 115) { i1 = i52; break L1; } i54 = i52 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i54, i46, i50) | 0; if ((i2 | 0) == (i54 | 0)) { i1 = i52; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i52; break L1; } i5 = i50 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i52; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i54 = i4 + -24 | 0; HEAP32[i5 >> 2] = i54; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i54); i4 = HEAP32[i5 >> 2] | 0; } __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i55, 43694, i56); i54 = HEAP8[i55 + 11 >> 0] | 0; i53 = i54 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -48 | 0, i53 ? HEAP32[i55 >> 2] | 0 : i55, i53 ? HEAP32[i55 + 4 >> 2] | 0 : i54 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); break L1; } case 116: { if ((i14 | 0) <= 2) { i1 = i52; break L1; } if ((HEAP8[i52 >> 0] | 0) != 100) { i1 = i52; break L1; } if ((HEAP8[i52 + 1 >> 0] | 0) != 116) { i1 = i52; break L1; } i54 = i52 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i54, i46, i50) | 0; if ((i2 | 0) == (i54 | 0)) { i1 = i52; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i52; break L1; } i5 = i50 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i52; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i54 = i4 + -24 | 0; HEAP32[i5 >> 2] = i54; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i54); i4 = HEAP32[i5 >> 2] | 0; } __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i55, 43697, i56); i54 = HEAP8[i55 + 11 >> 0] | 0; i53 = i54 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -48 | 0, i53 ? HEAP32[i55 >> 2] | 0 : i55, i53 ? HEAP32[i55 + 4 >> 2] | 0 : i54 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); break L1; } case 118: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43699, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 86: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43701, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } default: { i1 = i52; break L1; } } case 101: switch (HEAP8[i2 + 1 >> 0] | 0) { case 111: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43704, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 79: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43706, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 113: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43709, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } default: { i1 = i52; break L1; } } case 103: switch (HEAP8[i2 + 1 >> 0] | 0) { case 101: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43712, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 116: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 42517, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } default: { i1 = i52; break L1; } } case 105: { if ((HEAP8[i2 + 1 >> 0] | 0) != 120) { i1 = i52; break L1; } i51 = i52 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0; if ((i2 | 0) == (i51 | 0)) { i1 = i52; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; i5 = i50 + 4 | 0; if ((i1 | 0) == (i2 | 0)) { i2 = HEAP32[i5 >> 2] | 0; i1 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i1 | 0)) { i1 = i52; break L1; } i56 = i2 + -24 | 0; HEAP32[i5 >> 2] = i56; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); i2 = HEAP32[i5 >> 2] | 0; } } i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i52; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i52 = i4 + -24 | 0; HEAP32[i5 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i4 = HEAP32[i5 >> 2] | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i55, i2 + -48 | 0); i4 = (HEAP32[i5 >> 2] | 0) + -24 | 0; __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i49, 42453, i55); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i49, 43715) | 0; HEAP32[i48 >> 2] = HEAP32[i3 >> 2]; HEAP32[i48 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i48 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = HEAP8[i56 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i2 ? HEAP32[i56 >> 2] | 0 : i56, i2 ? HEAP32[i56 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i53 >> 2] = HEAP32[i3 >> 2]; HEAP32[i53 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i53 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i53, 42442) | 0; HEAP32[i38 >> 2] = HEAP32[i3 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i54, i38); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i54); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i38); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); break L1; } case 108: switch (HEAP8[i2 + 1 >> 0] | 0) { case 101: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43718, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 115: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43721, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 83: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43724, 3); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 116: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 42515, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } default: { i1 = i52; break L1; } } case 109: switch (HEAP8[i2 + 1 >> 0] | 0) { case 105: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43728, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 73: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43730, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 108: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 42498, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 76: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43733, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 109: { i2 = i52 + 2 | 0; if ((i2 | 0) != (i46 | 0) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) { i55 = i52 + 3 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43736, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i52; break L1; } i2 = HEAP32[i50 + 4 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i2 | 0)) { i1 = i52; break L1; } i4 = i2 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, i4); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i54, 0, 42453) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i55, 43739) | 0; HEAP32[i30 >> 2] = HEAP32[i3 >> 2]; HEAP32[i30 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i30 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i56, i30); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i56); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i30); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); break L1; } default: { i1 = i52; break L1; } } case 110: switch (HEAP8[i2 + 1 >> 0] | 0) { case 119: case 97: { L496 : do if (i16) { i1 = HEAP8[i52 >> 0] | 0; if (i1 << 24 >> 24 == 103) { i14 = (HEAP8[i52 + 1 >> 0] | 0) == 115; i1 = i14 ? i52 + 2 | 0 : i52; i2 = i1; i1 = HEAP8[i1 >> 0] | 0; } else { i14 = 0; i2 = i52; } if (i1 << 24 >> 24 == 110) { i1 = HEAP8[i2 + 1 >> 0] | 0; switch (i1 << 24 >> 24) { case 97: case 119: break; default: { i1 = i52; break L496; } } i13 = i1 << 24 >> 24 == 97; i1 = i2 + 2 | 0; L503 : do if ((i1 | 0) != (i46 | 0)) { i11 = 0; while (1) { if ((HEAP8[i1 >> 0] | 0) == 95) break; i3 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i46, i50) | 0; i1 = (i3 | 0) == (i1 | 0); i2 = (i3 | 0) == (i46 | 0); if (i1 | i2) break L503; else { i11 = i11 | (i1 | i2) ^ 1; i1 = i3; } } i45 = i1 + 1 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i45, i46, i50) | 0; if (!((i2 | 0) == (i45 | 0) | (i2 | 0) == (i46 | 0))) { i1 = HEAP8[i2 >> 0] | 0; L509 : do if (!((i39 - i2 | 0) > 2 & i1 << 24 >> 24 == 112)) if (i1 << 24 >> 24 == 69) { i10 = 0; i12 = i2; } else break L503; else { if ((HEAP8[i2 + 1 >> 0] | 0) != 105) break L503; i1 = i2 + 2 | 0; while (1) { if ((HEAP8[i1 >> 0] | 0) == 69) { i10 = 1; i12 = i1; break L509; } i45 = i1; i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i46, i50) | 0; if ((i1 | 0) == (i45 | 0) | (i1 | 0) == (i46 | 0)) break L503; } } while (0); HEAP32[i55 >> 2] = 0; HEAP32[i55 + 4 >> 2] = 0; HEAP32[i55 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i55 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } L521 : do if (i10) { i9 = i50 + 4 | 0; i1 = HEAP32[i9 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i1 | 0)) { i1 = i52; i2 = 1; } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i1 + -24 | 0); i7 = i55 + 11 | 0; if ((HEAP8[i7 >> 0] | 0) < 0) { HEAP8[HEAP32[i55 >> 2] >> 0] = 0; HEAP32[i55 + 4 >> 2] = 0; i1 = HEAP8[i7 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i5 = 1; i8 = 0; i4 = (HEAP32[i55 + 8 >> 2] & 2147483647) + -1 | 0; } else i51 = 405; } else { HEAP8[i55 >> 0] = 0; HEAP8[i7 >> 0] = 0; i1 = 0; i51 = 405; } if ((i51 | 0) == 405) { i5 = 0; i8 = i1 & 255; i4 = 10; } i2 = i8 >>> 0 < 11; i6 = i2 ? 10 : (i8 + 16 & 496) + -1 | 0; L531 : do if ((i6 | 0) != (i4 | 0)) { do if (i2) { i2 = HEAP32[i55 >> 2] | 0; if (i5) { i1 = 0; i3 = i55; i51 = 412; } else { i4 = 0; i5 = 1; i3 = i55; i51 = 413; } } else { i3 = _malloc(i6 + 1 | 0) | 0; if (i6 >>> 0 <= i4 >>> 0 & (i3 | 0) == 0) break L531; if (!i5) { i4 = 1; i5 = 0; i2 = i55; i51 = 413; break; } i1 = 1; i2 = HEAP32[i55 >> 2] | 0; i51 = 412; } while (0); if ((i51 | 0) == 412) { i4 = i1; i5 = 1; i1 = HEAP32[i55 + 4 >> 2] | 0; } else if ((i51 | 0) == 413) i1 = i1 & 255; i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i3 | 0, i2 | 0, i1 | 0) | 0; if (i5) _free(i2); if (i4) { HEAP32[i55 + 8 >> 2] = i6 + 1 | -2147483648; HEAP32[i55 + 4 >> 2] = i8; HEAP32[i55 >> 2] = i3; break; } else { HEAP8[i7 >> 0] = i8; break; } } while (0); HEAP32[i55 >> 2] = HEAP32[i56 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i56 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i56 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i56 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = HEAP32[i9 >> 2] | 0; i2 = i1 + -24 | 0; while (1) { if ((i1 | 0) == (i2 | 0)) { i4 = i50; i1 = i2; i51 = 427; break L521; } i51 = i1 + -24 | 0; HEAP32[i9 >> 2] = i51; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i51); i1 = HEAP32[i9 >> 2] | 0; } } } else { i1 = i50 + 4 | 0; i9 = i1; i4 = i50; i1 = HEAP32[i1 >> 2] | 0; i51 = 427; } while (0); if ((i51 | 0) == 427) if ((HEAP32[i4 >> 2] | 0) == (i1 | 0)) { i1 = i52; i2 = 1; } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, i1 + -24 | 0); i2 = HEAP32[i9 >> 2] | 0; i3 = i2 + -24 | 0; i1 = i2; while (1) { if ((i1 | 0) == (i3 | 0)) break; i46 = i1 + -24 | 0; HEAP32[i9 >> 2] = i46; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i46); i1 = HEAP32[i9 >> 2] | 0; } HEAP32[i53 >> 2] = 0; HEAP32[i53 + 4 >> 2] = 0; HEAP32[i53 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i53 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } L571 : do if (i11) if ((HEAP32[i4 >> 2] | 0) == (i3 | 0)) { i1 = i52; i2 = 1; } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i2 + -48 | 0); i7 = i53 + 11 | 0; do if ((HEAP8[i7 >> 0] | 0) < 0) { HEAP8[HEAP32[i53 >> 2] >> 0] = 0; HEAP32[i53 + 4 >> 2] = 0; i1 = HEAP8[i7 >> 0] | 0; if (i1 << 24 >> 24 >= 0) { i51 = 440; break; } i5 = 1; i8 = 0; i4 = (HEAP32[i53 + 8 >> 2] & 2147483647) + -1 | 0; } else { HEAP8[i53 >> 0] = 0; HEAP8[i7 >> 0] = 0; i1 = 0; i51 = 440; } while (0); if ((i51 | 0) == 440) { i5 = 0; i8 = i1 & 255; i4 = 10; } i2 = i8 >>> 0 < 11; i6 = i2 ? 10 : (i8 + 16 & 496) + -1 | 0; L581 : do if ((i6 | 0) != (i4 | 0)) { do if (i2) { i2 = HEAP32[i53 >> 2] | 0; if (i5) { i1 = 0; i3 = i53; i51 = 447; } else { i4 = 0; i5 = 1; i3 = i53; i51 = 448; } } else { i3 = _malloc(i6 + 1 | 0) | 0; if (i6 >>> 0 <= i4 >>> 0 & (i3 | 0) == 0) break L581; if (!i5) { i4 = 1; i5 = 0; i2 = i53; i51 = 448; break; } i1 = 1; i2 = HEAP32[i53 >> 2] | 0; i51 = 447; } while (0); if ((i51 | 0) == 447) { i4 = i1; i5 = 1; i1 = HEAP32[i53 + 4 >> 2] | 0; } else if ((i51 | 0) == 448) i1 = i1 & 255; i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i3 | 0, i2 | 0, i1 | 0) | 0; if (i5) _free(i2); if (i4) { HEAP32[i53 + 8 >> 2] = i6 + 1 | -2147483648; HEAP32[i53 + 4 >> 2] = i8; HEAP32[i53 >> 2] = i3; break; } else { HEAP8[i7 >> 0] = i8; break; } } while (0); HEAP32[i53 >> 2] = HEAP32[i56 >> 2]; HEAP32[i53 + 4 >> 2] = HEAP32[i56 + 4 >> 2]; HEAP32[i53 + 8 >> 2] = HEAP32[i56 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i56 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i2 = HEAP32[i9 >> 2] | 0; i1 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i1 | 0)) { i51 = 462; break L571; } i51 = i2 + -24 | 0; HEAP32[i9 >> 2] = i51; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i51); i2 = HEAP32[i9 >> 2] | 0; } } else i51 = 462; while (0); if ((i51 | 0) == 462) { HEAP32[i48 >> 2] = 0; HEAP32[i48 + 4 >> 2] = 0; HEAP32[i48 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i48 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } if (i14) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i48, 42641, 2); if (i13) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i48, 43743) | 0; else __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i48, 42465) | 0; if (i11) { __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i49, 42453, i53); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i49, 43747) | 0; HEAP32[i56 >> 2] = HEAP32[i2 >> 2]; HEAP32[i56 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i56 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i51 = HEAP8[i56 + 11 >> 0] | 0; i46 = i51 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i46 ? HEAP32[i56 >> 2] | 0 : i56, i46 ? HEAP32[i56 + 4 >> 2] | 0 : i51 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); } i51 = HEAP8[i54 + 11 >> 0] | 0; i46 = i51 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i46 ? HEAP32[i54 >> 2] | 0 : i54, i46 ? HEAP32[i54 + 4 >> 2] | 0 : i51 & 255) | 0; if (i10) { __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i49, 42355, i55); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i49, 42358) | 0; HEAP32[i56 >> 2] = HEAP32[i2 >> 2]; HEAP32[i56 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i56 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i51 = HEAP8[i56 + 11 >> 0] | 0; i46 = i51 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i46 ? HEAP32[i56 >> 2] | 0 : i56, i46 ? HEAP32[i56 + 4 >> 2] | 0 : i51 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); }; HEAP32[i47 >> 2] = HEAP32[i48 >> 2]; HEAP32[i47 + 4 >> 2] = HEAP32[i48 + 4 >> 2]; HEAP32[i47 + 8 >> 2] = HEAP32[i48 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i48 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i49, i47); i1 = HEAP32[i9 >> 2] | 0; i51 = HEAP32[i50 + 8 >> 2] | 0; i4 = i51; do if (i1 >>> 0 >= i51 >>> 0) { i3 = HEAP32[i50 >> 2] | 0; i1 = (i1 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i50); else { i46 = (i4 - i3 | 0) / 24 | 0; i51 = i46 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i56, i46 >>> 0 < 89478485 ? (i51 >>> 0 < i2 >>> 0 ? i2 : i51) : 178956970, i1, i50 + 12 | 0); i51 = i56 + 8 | 0; i46 = HEAP32[i51 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i46, i49); HEAP32[i51 >> 2] = i46 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i50, i56); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i56); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i1, i49); HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i49); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48); i1 = i12 + 1 | 0; i2 = 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); if (!i2) break L496; } } while (0); i1 = i52; } else i1 = i52; } else i1 = i52; while (0); break L1; } case 101: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43750, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 103: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43728, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 116: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43753, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 120: { i11 = i52 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i11, i46, i50) | 0; if ((i1 | 0) != (i11 | 0) ? (i45 = HEAP32[i50 + 4 >> 2] | 0, (HEAP32[i50 >> 2] | 0) != (i45 | 0)) : 0) { i10 = i45 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, i45 + -24 | 0); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i54, 0, 43755) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i55, 42358) | 0; HEAP32[i56 >> 2] = HEAP32[i3 >> 2]; HEAP32[i56 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i56 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i10 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i45 + -20 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i9 = 0; i6 = (HEAP32[i45 + -16 >> 2] & 2147483647) + -1 | 0; i5 = 1; } else i51 = 508; } else { HEAP8[i10 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i51 = 508; } if ((i51 | 0) == 508) { i9 = i2 & 255; i6 = 10; i5 = 0; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L673 : do if ((i7 | 0) != (i6 | 0)) { do if (i3) { i3 = HEAP32[i10 >> 2] | 0; if (i5) { i2 = 0; i4 = i10; i51 = 516; } else { i5 = 0; i6 = 1; i4 = i10; i51 = 517; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0) break L673; if (i5) { i2 = 1; i3 = HEAP32[i10 >> 2] | 0; i51 = 516; break; } else { i5 = 1; i6 = 0; i3 = i10; i51 = 517; break; } } while (0); if ((i51 | 0) == 516) { i5 = i2; i6 = 1; i2 = HEAP32[i45 + -20 >> 2] | 0; } else if ((i51 | 0) == 517) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i45 + -16 >> 2] = i7 + 1 | -2147483648; HEAP32[i45 + -20 >> 2] = i9; HEAP32[i10 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i10 >> 2] = HEAP32[i56 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i56 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i56 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i56 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); } else i1 = i11; i1 = (i1 | 0) == (i11 | 0) ? i52 : i1; break L1; } default: { i1 = i52; break L1; } } case 111: switch (HEAP8[i2 + 1 >> 0] | 0) { case 110: { i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i52, i46, i50) | 0; break L1; } case 111: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43766, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 114: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43769, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 82: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43771, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } default: { i1 = i52; break L1; } } case 112: switch (HEAP8[i2 + 1 >> 0] | 0) { case 109: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43774, 3); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 108: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43778, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 76: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43780, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 112: { i2 = i52 + 2 | 0; if ((i2 | 0) != (i46 | 0) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) { i55 = i52 + 3 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43783, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i52; break L1; } i2 = HEAP32[i50 + 4 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i2 | 0)) { i1 = i52; break L1; } i4 = i2 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, i4); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i54, 0, 42453) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i55, 43786) | 0; HEAP32[i31 >> 2] = HEAP32[i3 >> 2]; HEAP32[i31 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i31 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i56, i31); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i56); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i31); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); break L1; } case 115: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43778, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 116: { if ((i14 | 0) <= 2) { i1 = i52; break L1; } if ((HEAP8[i52 >> 0] | 0) != 112) { i1 = i52; break L1; } if ((HEAP8[i52 + 1 >> 0] | 0) != 116) { i1 = i52; break L1; } i55 = i52 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i55, i46, i50) | 0; if ((i2 | 0) == (i55 | 0)) { i1 = i52; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i52; break L1; } i5 = i50 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i52; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i55 = i4 + -24 | 0; HEAP32[i5 >> 2] = i55; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i55); i4 = HEAP32[i5 >> 2] | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 43790) | 0; i55 = HEAP8[i56 + 11 >> 0] | 0; i54 = i55 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i5 >> 2] | 0) + -24 | 0, i54 ? HEAP32[i56 >> 2] | 0 : i56, i54 ? HEAP32[i56 + 4 >> 2] | 0 : i55 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); break L1; } default: { i1 = i52; break L1; } } case 113: { if ((HEAP8[i2 + 1 >> 0] | 0) != 117) { i1 = i52; break L1; } i51 = i52 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0; if ((i1 | 0) == (i51 | 0)) { i1 = i52; break L1; } i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i46, i50) | 0; if ((i2 | 0) == (i1 | 0)) { i1 = i50 + 4 | 0; i3 = HEAP32[i1 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) { i1 = i52; break L1; } i56 = i3 + -24 | 0; HEAP32[i1 >> 2] = i56; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); i3 = HEAP32[i1 >> 2] | 0; } } i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; i5 = i50 + 4 | 0; if ((i1 | 0) == (i2 | 0)) { i2 = HEAP32[i5 >> 2] | 0; i1 = i2 + -24 | 0; i3 = i2; while (1) { if ((i3 | 0) == (i1 | 0)) break; i56 = i3 + -24 | 0; HEAP32[i5 >> 2] = i56; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); i3 = HEAP32[i5 >> 2] | 0; } i2 = i2 + -48 | 0; while (1) { if ((i1 | 0) == (i2 | 0)) { i1 = i52; break L1; } i56 = i1 + -24 | 0; HEAP32[i5 >> 2] = i56; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); i1 = HEAP32[i5 >> 2] | 0; } } i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 3) { i1 = i52; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i52 = i4 + -24 | 0; HEAP32[i5 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i4 = HEAP32[i5 >> 2] | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i55, i2 + -48 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i52 = i4 + -24 | 0; HEAP32[i5 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i4 = HEAP32[i5 >> 2] | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, i2 + -48 | 0); i4 = (HEAP32[i5 >> 2] | 0) + -24 | 0; __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i44, 42453, i54); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i44, 43793) | 0; HEAP32[i43 >> 2] = HEAP32[i3 >> 2]; HEAP32[i43 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i43 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = HEAP8[i55 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i43, i2 ? HEAP32[i55 >> 2] | 0 : i55, i2 ? HEAP32[i55 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i47 >> 2] = HEAP32[i3 >> 2]; HEAP32[i47 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i47 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i47, 43799) | 0; HEAP32[i49 >> 2] = HEAP32[i3 >> 2]; HEAP32[i49 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i49 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = HEAP8[i56 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i49, i2 ? HEAP32[i56 >> 2] | 0 : i56, i2 ? HEAP32[i56 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i48 >> 2] = HEAP32[i3 >> 2]; HEAP32[i48 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i48 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i48, 42358) | 0; HEAP32[i42 >> 2] = HEAP32[i3 >> 2]; HEAP32[i42 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i42 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i53, i42); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i53); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i42); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i43); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i44); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); break L1; } case 114: switch (HEAP8[i2 + 1 >> 0] | 0) { case 99: { if ((((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 114 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 99 : 0) ? (i51 = i52 + 2 | 0, i3 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0, (i3 | 0) != (i51 | 0)) : 0) ? (i33 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i3, i46, i50) | 0, (i33 | 0) != (i3 | 0)) : 0) ? (i20 = i50 + 4 | 0, i4 = HEAP32[i20 >> 2] | 0, ((i4 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i4 + -24 | 0); i1 = HEAP32[i20 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i52 = i3 + -24 | 0; HEAP32[i20 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i3 = HEAP32[i20 >> 2] | 0; } i3 = i1 + -48 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, i3); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i47, 0, 43805) | 0; HEAP32[i49 >> 2] = HEAP32[i2 >> 2]; HEAP32[i49 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i49 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i49, 43654) | 0; HEAP32[i48 >> 2] = HEAP32[i2 >> 2]; HEAP32[i48 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i48 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = HEAP8[i56 + 11 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i1 ? HEAP32[i56 >> 2] | 0 : i56, i1 ? HEAP32[i56 + 4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i53 >> 2] = HEAP32[i2 >> 2]; HEAP32[i53 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i53 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i53, 42358) | 0; HEAP32[i54 >> 2] = HEAP32[i2 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i55, i54); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = i33; } else i1 = i52; break L1; } case 109: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43823, 1); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 77: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43825, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 115: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43828, 2); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } case 83: { i55 = i52 + 2 | 0; HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i56, 43831, 3); i1 = __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i55, i46, i56, i50) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = (i1 | 0) == (i55 | 0) ? i52 : i1; break L1; } default: { i1 = i52; break L1; } } case 115: switch (HEAP8[i2 + 1 >> 0] | 0) { case 99: { if ((((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 115 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 99 : 0) ? (i51 = i52 + 2 | 0, i5 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0, (i5 | 0) != (i51 | 0)) : 0) ? (i34 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i5, i46, i50) | 0, (i34 | 0) != (i5 | 0)) : 0) ? (i21 = i50 + 4 | 0, i6 = HEAP32[i21 >> 2] | 0, ((i6 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) : 0) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i6 + -24 | 0); i1 = HEAP32[i21 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i52 = i3 + -24 | 0; HEAP32[i21 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i3 = HEAP32[i21 >> 2] | 0; } i3 = i1 + -48 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, i3); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i47, 0, 43835) | 0; HEAP32[i49 >> 2] = HEAP32[i2 >> 2]; HEAP32[i49 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i49 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i49, 43654) | 0; HEAP32[i48 >> 2] = HEAP32[i2 >> 2]; HEAP32[i48 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i48 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = HEAP8[i56 + 11 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i48, i1 ? HEAP32[i56 >> 2] | 0 : i56, i1 ? HEAP32[i56 + 4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i53 >> 2] = HEAP32[i2 >> 2]; HEAP32[i53 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i53 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i53, 42358) | 0; HEAP32[i54 >> 2] = HEAP32[i2 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i55, i54); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i48); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i49); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i1 = i34; } else i1 = i52; break L1; } case 112: { if ((i14 | 0) <= 2) { i1 = i52; break L1; } if ((HEAP8[i52 >> 0] | 0) != 115) { i1 = i52; break L1; } if ((HEAP8[i52 + 1 >> 0] | 0) != 112) { i1 = i52; break L1; } i56 = i52 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i56, i46, i50) | 0; i1 = (i1 | 0) == (i56 | 0) ? i52 : i1; break L1; } case 114: { i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i52, i46, i50) | 0; break L1; } case 116: { if (((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 115 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 116 : 0) ? (i51 = i52 + 2 | 0, i27 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0, (i27 | 0) != (i51 | 0)) : 0) ? (i7 = HEAP32[i50 + 4 >> 2] | 0, (HEAP32[i50 >> 2] | 0) != (i7 | 0)) : 0) { i3 = i7 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i53, i3); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i53, 0, 43848) | 0; HEAP32[i54 >> 2] = HEAP32[i2 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i54, 42358) | 0; HEAP32[i55 >> 2] = HEAP32[i2 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i56, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i56); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); i1 = i27; } else i1 = i52; break L1; } case 122: { if (((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 115 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 122 : 0) ? (i51 = i52 + 2 | 0, i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i51, i46, i50) | 0, (i1 | 0) != (i51 | 0)) : 0) ? (i8 = HEAP32[i50 + 4 >> 2] | 0, (HEAP32[i50 >> 2] | 0) != (i8 | 0)) : 0) { i4 = i8 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i53, i4); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i53, 0, 43848) | 0; HEAP32[i54 >> 2] = HEAP32[i3 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i54, 42358) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i56, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i56); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); } else i1 = i52; break L1; } case 90: { if ((i39 - i2 | 0) <= 2) { i1 = i52; break L1; } switch (HEAP8[i2 + 2 >> 0] | 0) { case 84: break; case 102: { if ((((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 115 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 90 : 0) ? (i10 = i52 + 2 | 0, (HEAP8[i10 >> 0] | 0) == 102) : 0) ? (i28 = __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4_RT_(i10, i46, i50) | 0, (i28 | 0) != (i10 | 0)) : 0) ? (i11 = HEAP32[i50 + 4 >> 2] | 0, (HEAP32[i50 >> 2] | 0) != (i11 | 0)) : 0) { i3 = i11 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i53, i3); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i53, 0, 43857) | 0; HEAP32[i54 >> 2] = HEAP32[i2 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i54, 42358) | 0; HEAP32[i55 >> 2] = HEAP32[i2 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i56, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i56); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); i1 = i28; } else i1 = i52; break L1; } default: { i1 = i52; break L1; } } if (((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 115 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 90 : 0) ? (i9 = i52 + 2 | 0, (HEAP8[i9 >> 0] | 0) == 84) : 0) ? (i40 = i50 + 4 | 0, i35 = ((HEAP32[i40 >> 2] | 0) - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0, i41 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i9, i46, i50) | 0, i22 = HEAP32[i50 >> 2] | 0, i32 = ((HEAP32[i40 >> 2] | 0) - i22 | 0) / 24 | 0, i22, (i41 | 0) != (i9 | 0)) : 0) { HEAP8[i55 + 11 >> 0] = 10; i1 = i55; i2 = 43857; i3 = i1 + 10 | 0; do { HEAP8[i1 >> 0] = HEAP8[i2 >> 0] | 0; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } while ((i1 | 0) < (i3 | 0)); HEAP8[i55 + 10 >> 0] = 0; L917 : do if ((i35 | 0) != (i32 | 0)) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i56, i22 + (i35 * 24 | 0) | 0); i4 = HEAP8[i56 + 11 >> 0] | 0; i5 = i4 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i55, i5 ? HEAP32[i56 >> 2] | 0 : i56, i5 ? HEAP32[i56 + 4 >> 2] | 0 : i4 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); i4 = i56 + 11 | 0; i5 = i56 + 4 | 0; i1 = i35; while (1) { i1 = i1 + 1 | 0; if ((i1 | 0) == (i32 | 0)) break L917; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, (HEAP32[i50 >> 2] | 0) + (i1 * 24 | 0) | 0); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i54, 0, 42455) | 0; HEAP32[i56 >> 2] = HEAP32[i3 >> 2]; HEAP32[i56 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i56 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i52 = HEAP8[i4 >> 0] | 0; i51 = i52 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i55, i51 ? HEAP32[i56 >> 2] | 0 : i56, i51 ? HEAP32[i5 >> 2] | 0 : i52 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); } } while (0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i55, 42358) | 0; i1 = i32; while (1) { if ((i1 | 0) == (i35 | 0)) break; i3 = HEAP32[i40 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break; i52 = i3 + -24 | 0; HEAP32[i40 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i3 = HEAP32[i40 >> 2] | 0; } i1 = i1 + -1 | 0; } HEAP32[i53 >> 2] = HEAP32[i55 >> 2]; HEAP32[i53 + 4 >> 2] = HEAP32[i55 + 4 >> 2]; HEAP32[i53 + 8 >> 2] = HEAP32[i55 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i55 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i54, i53); i1 = HEAP32[i40 >> 2] | 0; i52 = HEAP32[i50 + 8 >> 2] | 0; i4 = i52; do if (i1 >>> 0 >= i52 >>> 0) { i3 = HEAP32[i50 >> 2] | 0; i1 = (i1 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i50); else { i51 = (i4 - i3 | 0) / 24 | 0; i52 = i51 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i56, i51 >>> 0 < 89478485 ? (i52 >>> 0 < i2 >>> 0 ? i2 : i52) : 178956970, i1, i50 + 12 | 0); i52 = i56 + 8 | 0; i51 = HEAP32[i52 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i51, i54); HEAP32[i52 >> 2] = i51 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i50, i56); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i56); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i1, i54); HEAP32[i40 >> 2] = (HEAP32[i40 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); i1 = i41; } else i1 = i52; break L1; } default: { i1 = i52; break L1; } } case 116: switch (HEAP8[i2 + 1 >> 0] | 0) { case 105: case 101: { L950 : do if ((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 116 : 0) { i1 = HEAP8[i52 + 1 >> 0] | 0; switch (i1 << 24 >> 24) { case 105: case 101: break; default: { i1 = i52; break L950; } } i2 = i52 + 2 | 0; if (i1 << 24 >> 24 == 101) i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; else i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i46, i50) | 0; if ((i1 | 0) != (i2 | 0) ? (i23 = HEAP32[i50 + 4 >> 2] | 0, (HEAP32[i50 >> 2] | 0) != (i23 | 0)) : 0) { i4 = i23 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i53, i4); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i53, 0, 43868) | 0; HEAP32[i54 >> 2] = HEAP32[i3 >> 2]; HEAP32[i54 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i54 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i54, 42358) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i56, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i56); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i53); } else i1 = i52; } else i1 = i52; while (0); break L1; } case 114: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i55, 43876); i1 = i50 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i54 = HEAP32[i50 + 8 >> 2] | 0; i4 = i54; do if (i2 >>> 0 >= i54 >>> 0) { i3 = HEAP32[i50 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i50); else { i53 = (i4 - i3 | 0) / 24 | 0; i54 = i53 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i56, i53 >>> 0 < 89478485 ? (i54 >>> 0 < i2 >>> 0 ? i2 : i54) : 178956970, i1, i50 + 12 | 0); i54 = i56 + 8 | 0; i53 = HEAP32[i54 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i53, i55); HEAP32[i54 >> 2] = i53 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i50, i56); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i56); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i55); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i55); i1 = i52 + 2 | 0; break L1; } case 119: { if (((((i14 | 0) > 2 ? (HEAP8[i52 >> 0] | 0) == 116 : 0) ? (HEAP8[i52 + 1 >> 0] | 0) == 119 : 0) ? (i53 = i52 + 2 | 0, i24 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i53, i46, i50) | 0, (i24 | 0) != (i53 | 0)) : 0) ? (i12 = HEAP32[i50 + 4 >> 2] | 0, (HEAP32[i50 >> 2] | 0) != (i12 | 0)) : 0) { i2 = i12 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i54, i2); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i54, 0, 43882) | 0; HEAP32[i55 >> 2] = HEAP32[i3 >> 2]; HEAP32[i55 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i55 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i56, i55); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i2, i56); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i56); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i55); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i54); i1 = i24; } else i1 = i52; break L1; } default: { i1 = i52; break L1; } } case 57: case 56: case 55: case 54: case 53: case 52: case 51: case 50: case 49: { i1 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i52, i46, i50) | 0; break L1; } default: { i1 = i52; break L1; } } while (0); } else i1 = i52; while (0); STACKTOP = i57; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i23, i21, i26) { i23 = i23 | 0; i21 = i21 | 0; i26 = i26 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i22 = 0, i24 = 0, i25 = 0, i27 = 0, i28 = 0; i28 = STACKTOP; STACKTOP = STACKTOP + 160 | 0; i27 = i28 + 128 | 0; i25 = i28 + 104 | 0; i24 = i28 + 88 | 0; i20 = i28 + 64 | 0; i15 = i28 + 24 | 0; i14 = i28; i5 = i28 + 48 | 0; i7 = i28 + 36 | 0; i8 = i28 + 12 | 0; L1 : do if ((i23 | 0) != (i21 | 0)) { switch (HEAP8[i23 >> 0] | 0) { case 75: case 86: case 114: { HEAP32[i25 >> 2] = 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i23, i21, i25) | 0; L5 : do if ((i2 | 0) != (i23 | 0) ? (i3 = HEAP8[i2 >> 0] | 0, i18 = i26 + 4 | 0, i10 = ((HEAP32[i18 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0, i17 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i21, i26) | 0, i18 = ((HEAP32[i18 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0, (i17 | 0) != (i2 | 0)) : 0) { i15 = i3 << 24 >> 24 == 70; i16 = i26 + 20 | 0; i2 = HEAP32[i16 >> 2] | 0; L8 : do if (i15) { i3 = i2 + -16 | 0; while (1) { if ((i2 | 0) == (i3 | 0)) { i2 = i3; break L8; } i24 = i2 + -16 | 0; HEAP32[i16 >> 2] = i24; __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i24); i2 = HEAP32[i16 >> 2] | 0; } } while (0); i5 = i26 + 16 | 0; i4 = HEAP32[i26 + 12 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i6 = i24; do if (i2 >>> 0 >= i24 >>> 0) { i7 = HEAP32[i5 >> 2] | 0; i2 = i2 - i7 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i23 = i6 - i7 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i24 = i27 + 8 | 0; i23 = HEAP32[i24 >> 2] | 0; HEAP32[i23 >> 2] = 0; HEAP32[i23 + 4 >> 2] = 0; HEAP32[i23 + 8 >> 2] = 0; HEAP32[i23 + 12 >> 2] = i4; HEAP32[i24 >> 2] = i23 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = i4; HEAP32[i16 >> 2] = (HEAP32[i16 >> 2] | 0) + 16; } while (0); i13 = HEAP32[i25 >> 2] | 0; i11 = (i13 & 1 | 0) == 0; i12 = (i13 & 2 | 0) == 0; i13 = (i13 & 4 | 0) == 0; i14 = i27 + 8 | 0; while (1) { if (i10 >>> 0 >= i18 >>> 0) { i1 = i17; break L5; } if (i15) { i4 = HEAP32[i26 >> 2] | 0; i8 = i4 + (i10 * 24 | 0) + 12 | 0; i5 = HEAP8[i8 + 11 >> 0] | 0; i2 = i5 << 24 >> 24 < 0; if (i2) { i6 = HEAP32[i4 + (i10 * 24 | 0) + 16 >> 2] | 0; i3 = HEAP32[i8 >> 2] | 0; } else { i6 = i5 & 255; i3 = i8; } i7 = i6 + -2 | 0; if ((HEAP8[i3 + i7 >> 0] | 0) == 38) i2 = i6 + -3 | 0; else { if (i2) { i3 = HEAP32[i8 >> 2] | 0; i2 = HEAP32[i4 + (i10 * 24 | 0) + 16 >> 2] | 0; } else { i3 = i8; i2 = i5 & 255; } i2 = (HEAP8[i3 + i2 + -1 >> 0] | 0) == 38 ? i7 : i6; } if (!i11) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i8, i2, 42408) | 0; i2 = i2 + 6 | 0; } if (!i12) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i26 >> 2] | 0) + (i10 * 24 | 0) + 12 | 0, i2, 42415) | 0; i2 = i2 + 9 | 0; } if (!i13) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i26 >> 2] | 0) + (i10 * 24 | 0) + 12 | 0, i2, 42425) | 0; } else { if (!i11) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i26 >> 2] | 0) + (i10 * 24 | 0) | 0, 42408) | 0; if (!i12) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i26 >> 2] | 0) + (i10 * 24 | 0) | 0, 42415) | 0; if (!i13) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i26 >> 2] | 0) + (i10 * 24 | 0) | 0, 42425) | 0; } i5 = HEAP32[i16 >> 2] | 0; i6 = i5 + -16 | 0; i7 = HEAP32[i26 >> 2] | 0; i8 = i7 + (i10 * 24 | 0) | 0; i2 = i5 + -12 | 0; i3 = HEAP32[i2 >> 2] | 0; i25 = HEAP32[i5 + -8 >> 2] | 0; i9 = i25; if ((i3 | 0) == (i25 | 0)) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) break; i24 = (i9 - i4 | 0) / 24 | 0; i25 = i24 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i24 >>> 0 < 89478485 ? (i25 >>> 0 < i3 >>> 0 ? i3 : i25) : 178956970, i2, i5 + -4 | 0); i25 = HEAP32[i14 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i25, i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i25 + 12 | 0, i7 + (i10 * 24 | 0) + 12 | 0); HEAP32[i14 >> 2] = i25 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i27); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i10 * 24 | 0) + 12 | 0); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } i10 = i10 + 1 | 0; } __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); } else i1 = i23; while (0); break L1; } default: {} } i1 = __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_RT_(i23, i21, i26) | 0; if ((i1 | 0) == (i23 | 0)) { i2 = HEAP8[i23 >> 0] | 0; L63 : do switch (i2 << 24 >> 24 | 0) { case 65: { if (i2 << 24 >> 24 != 65) { i1 = i23; break L1; } i8 = i23 + 1 | 0; if ((i8 | 0) == (i21 | 0)) { i1 = i23; break L1; } i1 = HEAP8[i8 >> 0] | 0; do if (i1 << 24 >> 24 == 95) { i22 = i23 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i21, i26) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i23; break L1; } i3 = i26 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } i21 = i2 + -12 | 0; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; i22 = HEAP8[i21 + 11 >> 0] | 0; i20 = i22 << 24 >> 24 < 0; i22 = i20 ? HEAP32[i2 + -8 >> 2] | 0 : i22 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, i20 ? HEAP32[i21 >> 2] | 0 : i21, i22 >>> 0 < 2 ? i22 : 2); i22 = HEAP8[i27 + 11 >> 0] | 0; i2 = i22 << 24 >> 24 < 0; if (((i2 ? HEAP32[i27 + 4 >> 2] | 0 : i22 & 255) | 0) == 2) { i22 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i27 >> 2] | 0 : i27, 42435, 2) | 0) == 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); if (i22) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj((HEAP32[i3 >> 2] | 0) + -12 | 0); } else __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i3 >> 2] | 0) + -12 | 0, 0, 42438) | 0; } else { if ((i1 + -49 & 255) < 9) { i6 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i8, i21) | 0; if ((i6 | 0) == (i21 | 0)) { i1 = i23; break L1; } if ((HEAP8[i6 >> 0] | 0) != 95) { i1 = i23; break L1; } i22 = i6 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i21, i26) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i23; break L1; } i3 = i26 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } i21 = i2 + -12 | 0; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; i22 = HEAP8[i21 + 11 >> 0] | 0; i20 = i22 << 24 >> 24 < 0; i22 = i20 ? HEAP32[i2 + -8 >> 2] | 0 : i22 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, i20 ? HEAP32[i21 >> 2] | 0 : i21, i22 >>> 0 < 2 ? i22 : 2); i22 = HEAP8[i27 + 11 >> 0] | 0; i2 = i22 << 24 >> 24 < 0; if (((i2 ? HEAP32[i27 + 4 >> 2] | 0 : i22 & 255) | 0) == 2) { i22 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i27 >> 2] | 0 : i27, 42435, 2) | 0) == 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); if (i22) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj((HEAP32[i3 >> 2] | 0) + -12 | 0); } else __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); i7 = (HEAP32[i3 >> 2] | 0) + -12 | 0; HEAP32[i24 >> 2] = 0; HEAP32[i24 + 4 >> 2] = 0; HEAP32[i24 + 8 >> 2] = 0; i5 = i6 - i8 | 0; if (i5 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i24); if (i5 >>> 0 < 11) { HEAP8[i24 + 11 >> 0] = i5; i4 = i24; } else { i22 = i5 + 16 & -16; i4 = _malloc(i22) | 0; HEAP32[i24 >> 2] = i4; HEAP32[i24 + 8 >> 2] = i22 | -2147483648; HEAP32[i24 + 4 >> 2] = i5; } i2 = i8; i3 = i4; while (1) { if ((i2 | 0) == (i6 | 0)) break; HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0; i2 = i2 + 1 | 0; i3 = i3 + 1 | 0; } HEAP8[i4 + i5 >> 0] = 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i24, 0, 42435) | 0; HEAP32[i25 >> 2] = HEAP32[i3 >> 2]; HEAP32[i25 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i25 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i25, 42442) | 0; HEAP32[i27 >> 2] = HEAP32[i3 >> 2]; HEAP32[i27 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i27 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i22 = HEAP8[i27 + 11 >> 0] | 0; i21 = i22 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj(i7, 0, i21 ? HEAP32[i27 >> 2] | 0 : i27, i21 ? HEAP32[i27 + 4 >> 2] | 0 : i22 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); break; } i1 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i8, i21, i26) | 0; if ((i1 | 0) == (i8 | 0) | (i1 | 0) == (i21 | 0)) { i1 = i23; break L1; } if ((HEAP8[i1 >> 0] | 0) != 95) { i1 = i23; break L1; } i19 = i1 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i19, i21, i26) | 0; if ((i1 | 0) == (i19 | 0)) { i1 = i23; break L1; } i12 = i26 + 4 | 0; i2 = HEAP32[i12 >> 2] | 0; if (((i2 - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i23; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i27, i2 + -24 | 0); i2 = HEAP32[i12 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i21 = i4 + -24 | 0; HEAP32[i12 >> 2] = i21; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i21); i4 = HEAP32[i12 >> 2] | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i25, i2 + -48 | 0); i8 = HEAP32[i12 >> 2] | 0; i9 = i8 + -24 | 0; i10 = i9 + 11 | 0; if ((HEAP8[i10 >> 0] | 0) < 0) { HEAP8[HEAP32[i9 >> 2] >> 0] = 0; HEAP32[i8 + -20 >> 2] = 0; i2 = HEAP8[i10 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i11 = 0; i5 = (HEAP32[i8 + -16 >> 2] & 2147483647) + -1 | 0; } else i22 = 92; } else { HEAP8[i9 >> 0] = 0; HEAP8[i10 >> 0] = 0; i2 = 0; i22 = 92; } if ((i22 | 0) == 92) { i6 = 0; i11 = i2 & 255; i5 = 10; } i3 = i11 >>> 0 < 11; i7 = i3 ? 10 : (i11 + 16 & 496) + -1 | 0; L123 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i9 >> 2] | 0; if (i6) { i2 = 0; i4 = i9; i22 = 100; } else { i5 = 0; i6 = 1; i4 = i9; i22 = 101; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L123; if (i6) { i2 = 1; i3 = HEAP32[i9 >> 2] | 0; i22 = 100; break; } else { i5 = 1; i6 = 0; i3 = i9; i22 = 101; break; } } while (0); if ((i22 | 0) == 100) { i5 = i2; i6 = 1; i2 = HEAP32[i8 + -20 >> 2] | 0; } else if ((i22 | 0) == 101) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i8 + -16 >> 2] = i7 + 1 | -2147483648; HEAP32[i8 + -20 >> 2] = i11; HEAP32[i9 >> 2] = i4; break; } else { HEAP8[i10 >> 0] = i11; break; } } while (0); HEAP32[i9 >> 2] = HEAP32[i27 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i27 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i27 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i27 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i4 = i27 + 12 | 0; HEAP32[i24 >> 2] = 0; HEAP32[i24 + 4 >> 2] = 0; HEAP32[i24 + 8 >> 2] = 0; i5 = i4 + 11 | 0; i21 = HEAP8[i5 >> 0] | 0; i2 = i21 << 24 >> 24 < 0; i6 = i27 + 16 | 0; i21 = i2 ? HEAP32[i6 >> 2] | 0 : i21 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i24, i2 ? HEAP32[i4 >> 2] | 0 : i4, i21 >>> 0 < 2 ? i21 : 2); i21 = HEAP8[i24 + 11 >> 0] | 0; i2 = i21 << 24 >> 24 < 0; if (((i2 ? HEAP32[i24 + 4 >> 2] | 0 : i21 & 255) | 0) == 2) { i21 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i24 >> 2] | 0 : i24, 42435, 2) | 0) == 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); if (i21) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj(i4); } else __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); i10 = HEAP32[i12 >> 2] | 0; i11 = i10 + -12 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i14, i25); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i14, 0, 42435) | 0; HEAP32[i15 >> 2] = HEAP32[i3 >> 2]; HEAP32[i15 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i15 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i15, 42442) | 0; HEAP32[i20 >> 2] = HEAP32[i3 >> 2]; HEAP32[i20 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i20 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = HEAP8[i5 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i20, i2 ? HEAP32[i4 >> 2] | 0 : i4, i2 ? HEAP32[i6 >> 2] | 0 : i3 & 255) | 0; HEAP32[i24 >> 2] = HEAP32[i3 >> 2]; HEAP32[i24 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i24 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i11 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i11 >> 2] >> 0] = 0; HEAP32[i10 + -8 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i9 = 0; i5 = (HEAP32[i10 + -4 >> 2] & 2147483647) + -1 | 0; } else i22 = 129; } else { HEAP8[i11 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i22 = 129; } if ((i22 | 0) == 129) { i6 = 0; i9 = i2 & 255; i5 = 10; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L174 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i11 >> 2] | 0; if (i6) { i2 = 0; i4 = i11; i22 = 137; } else { i5 = 0; i6 = 1; i4 = i11; i22 = 138; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L174; if (i6) { i2 = 1; i3 = HEAP32[i11 >> 2] | 0; i22 = 137; break; } else { i5 = 1; i6 = 0; i3 = i11; i22 = 138; break; } } while (0); if ((i22 | 0) == 137) { i5 = i2; i6 = 1; i2 = HEAP32[i10 + -8 >> 2] | 0; } else if ((i22 | 0) == 138) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i10 + -4 >> 2] = i7 + 1 | -2147483648; HEAP32[i10 + -8 >> 2] = i9; HEAP32[i11 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i11 >> 2] = HEAP32[i24 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i24 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i25); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i27); } while (0); if ((i1 | 0) == (i23 | 0)) { i1 = i23; break L1; } i2 = HEAP32[i26 + 4 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } i6 = i26 + 16 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i2 + -24 | 0, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); break L1; } case 67: { i22 = i23 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i21, i26) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i23; break L1; } i3 = i26 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 42444) | 0; i6 = i26 + 16 | 0; i2 = (HEAP32[i3 >> 2] | 0) + -24 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i2, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); break L1; } case 70: { if (i2 << 24 >> 24 != 70) { i1 = i23; break L1; } i1 = i23 + 1 | 0; if ((i1 | 0) == (i21 | 0)) { i1 = i23; break L1; } if ((HEAP8[i1 >> 0] | 0) == 89) { i1 = i23 + 2 | 0; if ((i1 | 0) == (i21 | 0)) { i1 = i23; break L1; } } i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i21, i26) | 0; if ((i2 | 0) == (i1 | 0)) { i1 = i23; break L1; }; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, 42453, 1); i11 = i26 + 4 | 0; i9 = i27 + 11 | 0; i10 = i27 + 4 | 0; i6 = i25 + 11 | 0; i7 = i25 + 4 | 0; i8 = 0; i1 = i2; L228 : while (1) L230 : while (1) { if ((i1 | 0) == (i21 | 0)) { i22 = 174; break L228; } switch (HEAP8[i1 >> 0] | 0) { case 69: { i22 = 178; break L228; } case 118: { i1 = i1 + 1 | 0; continue L230; } case 82: { i2 = i1 + 1 | 0; if ((i2 | 0) != (i21 | 0) ? (HEAP8[i2 >> 0] | 0) == 69 : 0) { i8 = 1; i1 = i2; continue L228; } break; } case 79: { i2 = i1 + 1 | 0; if ((i2 | 0) != (i21 | 0) ? (HEAP8[i2 >> 0] | 0) == 69 : 0) { i8 = 2; i1 = i2; continue L228; } break; } default: {} } i2 = ((HEAP32[i11 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; i4 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i21, i26) | 0; i5 = ((HEAP32[i11 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; if ((i4 | 0) == (i1 | 0) | (i4 | 0) == (i21 | 0)) { i1 = i23; i2 = 1; break L228; } else i1 = i2; while (1) { if (i1 >>> 0 >= i5 >>> 0) { i1 = i2; break; } i20 = HEAP8[i9 >> 0] | 0; if ((i20 << 24 >> 24 < 0 ? HEAP32[i10 >> 2] | 0 : i20 & 255) >>> 0 > 1) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i27, 42455) | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i25, (HEAP32[i26 >> 2] | 0) + (i1 * 24 | 0) | 0); i20 = HEAP8[i6 >> 0] | 0; i19 = i20 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i27, i19 ? HEAP32[i25 >> 2] | 0 : i25, i19 ? HEAP32[i7 >> 2] | 0 : i20 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25); i1 = i1 + 1 | 0; } while (1) { if (i1 >>> 0 >= i5 >>> 0) { i1 = i4; continue L230; } i3 = HEAP32[i11 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break; i20 = i3 + -24 | 0; HEAP32[i11 >> 2] = i20; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i20); i3 = HEAP32[i11 >> 2] | 0; } i1 = i1 + 1 | 0; } } L253 : do if ((i22 | 0) == 174) { i2 = HEAP32[i11 >> 2] | 0; i1 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i1 | 0)) { i1 = i23; i2 = 1; break L253; } i22 = i2 + -24 | 0; HEAP32[i11 >> 2] = i22; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i22); i2 = HEAP32[i11 >> 2] | 0; } } else if ((i22 | 0) == 178) { i1 = i1 + 1 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i27, 42358) | 0; switch (i8 & 3) { case 1: { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i27, 42458) | 0; break; } case 2: { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i27, 42461) | 0; break; } default: {} } i2 = HEAP32[i11 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; i2 = 1; } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 42465) | 0; i2 = HEAP8[i9 >> 0] | 0; i22 = i2 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj((HEAP32[i11 >> 2] | 0) + -12 | 0, 0, i22 ? HEAP32[i27 >> 2] | 0 : i27, i22 ? HEAP32[i10 >> 2] | 0 : i2 & 255) | 0; i2 = 0; } } while (0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); if (i2 | (i1 | 0) == (i23 | 0)) { i1 = i23; break L1; } i2 = HEAP32[i11 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } i6 = i26 + 16 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i2 + -24 | 0, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); break L1; } case 71: { i22 = i23 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i21, i26) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i23; break L1; } i3 = i26 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 42467) | 0; i6 = i26 + 16 | 0; i2 = (HEAP32[i3 >> 2] | 0) + -24 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i2, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); break L1; } case 77: { if (i2 << 24 >> 24 != 77) { i1 = i23; break L1; } i19 = i23 + 1 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i19, i21, i26) | 0; if ((i2 | 0) == (i19 | 0)) { i1 = i23; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i21, i26) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i23; break L1; } i13 = i26 + 4 | 0; i2 = HEAP32[i13 >> 2] | 0; if (((i2 - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i23; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i27, i2 + -24 | 0); i2 = HEAP32[i13 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i21 = i4 + -24 | 0; HEAP32[i13 >> 2] = i21; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i21); i4 = HEAP32[i13 >> 2] | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i25, i2 + -48 | 0); i12 = i27 + 12 | 0; i10 = HEAP32[i13 >> 2] | 0; i11 = i10 + -24 | 0; L293 : do if ((HEAP8[((HEAP8[i12 + 11 >> 0] | 0) < 0 ? HEAP32[i12 >> 2] | 0 : i12) >> 0] | 0) == 40) { i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i27, 42453) | 0; HEAP32[i15 >> 2] = HEAP32[i3 >> 2]; HEAP32[i15 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i15 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i14, i25); i3 = HEAP8[i14 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i15, i2 ? HEAP32[i14 >> 2] | 0 : i14, i2 ? HEAP32[i14 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i20 >> 2] = HEAP32[i3 >> 2]; HEAP32[i20 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i20 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i20, 42478) | 0; HEAP32[i24 >> 2] = HEAP32[i3 >> 2]; HEAP32[i24 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i24 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i11 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i11 >> 2] >> 0] = 0; HEAP32[i10 + -20 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i9 = 0; i5 = (HEAP32[i10 + -16 >> 2] & 2147483647) + -1 | 0; } else i22 = 235; } else { HEAP8[i11 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i22 = 235; } if ((i22 | 0) == 235) { i6 = 0; i9 = i2 & 255; i5 = 10; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L314 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i11 >> 2] | 0; if (i6) { i2 = 0; i4 = i11; i22 = 243; } else { i5 = 0; i6 = 1; i4 = i11; i22 = 244; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L314; if (i6) { i2 = 1; i3 = HEAP32[i11 >> 2] | 0; i22 = 243; break; } else { i5 = 1; i6 = 0; i3 = i11; i22 = 244; break; } } while (0); if ((i22 | 0) == 243) { i5 = i2; i6 = 1; i2 = HEAP32[i10 + -20 >> 2] | 0; } else if ((i22 | 0) == 244) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i10 + -16 >> 2] = i7 + 1 | -2147483648; HEAP32[i10 + -20 >> 2] = i9; HEAP32[i11 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i11 >> 2] = HEAP32[i24 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i24 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); i11 = HEAP32[i13 >> 2] | 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i12, 0, 42358) | 0; HEAP32[i24 >> 2] = HEAP32[i3 >> 2]; HEAP32[i24 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i24 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i11 + -12 | 0; i9 = i8 + 11 | 0; if ((HEAP8[i9 >> 0] | 0) < 0) { HEAP8[HEAP32[i8 >> 2] >> 0] = 0; HEAP32[i11 + -8 >> 2] = 0; i2 = HEAP8[i9 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i10 = 0; i5 = (HEAP32[i11 + -4 >> 2] & 2147483647) + -1 | 0; } else i22 = 262; } else { HEAP8[i8 >> 0] = 0; HEAP8[i9 >> 0] = 0; i2 = 0; i22 = 262; } if ((i22 | 0) == 262) { i6 = 0; i10 = i2 & 255; i5 = 10; } i3 = i10 >>> 0 < 11; i7 = i3 ? 10 : (i10 + 16 & 496) + -1 | 0; L352 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i8 >> 2] | 0; if (i6) { i2 = 0; i4 = i8; i22 = 270; } else { i5 = 0; i6 = 1; i4 = i8; i22 = 271; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L352; if (i6) { i2 = 1; i3 = HEAP32[i8 >> 2] | 0; i22 = 270; break; } else { i5 = 1; i6 = 0; i3 = i8; i22 = 271; break; } } while (0); if ((i22 | 0) == 270) { i5 = i2; i6 = 1; i2 = HEAP32[i11 + -8 >> 2] | 0; } else if ((i22 | 0) == 271) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i11 + -4 >> 2] = i7 + 1 | -2147483648; HEAP32[i11 + -8 >> 2] = i10; HEAP32[i8 >> 2] = i4; break; } else { HEAP8[i9 >> 0] = i10; break; } } while (0); HEAP32[i8 >> 2] = HEAP32[i24 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i24 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); } else { i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i27, 42465) | 0; HEAP32[i15 >> 2] = HEAP32[i3 >> 2]; HEAP32[i15 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i15 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i14, i25); i3 = HEAP8[i14 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i15, i2 ? HEAP32[i14 >> 2] | 0 : i14, i2 ? HEAP32[i14 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i20 >> 2] = HEAP32[i3 >> 2]; HEAP32[i20 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i20 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i20, 42478) | 0; HEAP32[i24 >> 2] = HEAP32[i3 >> 2]; HEAP32[i24 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i24 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i11 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i11 >> 2] >> 0] = 0; HEAP32[i10 + -20 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i9 = 0; i5 = (HEAP32[i10 + -16 >> 2] & 2147483647) + -1 | 0; } else i22 = 296; } else { HEAP8[i11 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i22 = 296; } if ((i22 | 0) == 296) { i6 = 0; i9 = i2 & 255; i5 = 10; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L399 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i11 >> 2] | 0; if (i6) { i2 = 0; i4 = i11; i22 = 304; } else { i5 = 0; i6 = 1; i4 = i11; i22 = 305; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L399; if (i6) { i2 = 1; i3 = HEAP32[i11 >> 2] | 0; i22 = 304; break; } else { i5 = 1; i6 = 0; i3 = i11; i22 = 305; break; } } while (0); if ((i22 | 0) == 304) { i5 = i2; i6 = 1; i2 = HEAP32[i10 + -20 >> 2] | 0; } else if ((i22 | 0) == 305) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i10 + -16 >> 2] = i7 + 1 | -2147483648; HEAP32[i10 + -20 >> 2] = i9; HEAP32[i11 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i11 >> 2] = HEAP32[i24 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i24 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); i8 = HEAP32[i13 >> 2] | 0; i9 = i8 + -12 | 0; i10 = i9 + 11 | 0; if ((HEAP8[i10 >> 0] | 0) < 0) { HEAP8[HEAP32[i9 >> 2] >> 0] = 0; HEAP32[i8 + -8 >> 2] = 0; i2 = HEAP8[i10 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i6 = 1; i11 = 0; i5 = (HEAP32[i8 + -4 >> 2] & 2147483647) + -1 | 0; } else i22 = 320; } else { HEAP8[i9 >> 0] = 0; HEAP8[i10 >> 0] = 0; i2 = 0; i22 = 320; } if ((i22 | 0) == 320) { i6 = 0; i11 = i2 & 255; i5 = 10; } i3 = i11 >>> 0 < 11; i7 = i3 ? 10 : (i11 + 16 & 496) + -1 | 0; L433 : do if ((i7 | 0) != (i5 | 0)) { do if (i3) { i3 = HEAP32[i9 >> 2] | 0; if (i6) { i2 = 0; i4 = i9; i22 = 328; } else { i5 = 0; i6 = 1; i4 = i9; i22 = 329; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i5 >>> 0 & (i4 | 0) == 0) break L433; if (i6) { i2 = 1; i3 = HEAP32[i9 >> 2] | 0; i22 = 328; break; } else { i5 = 1; i6 = 0; i3 = i9; i22 = 329; break; } } while (0); if ((i22 | 0) == 328) { i5 = i2; i6 = 1; i2 = HEAP32[i8 + -8 >> 2] | 0; } else if ((i22 | 0) == 329) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i8 + -4 >> 2] = i7 + 1 | -2147483648; HEAP32[i8 + -8 >> 2] = i11; HEAP32[i9 >> 2] = i4; break; } else { HEAP8[i10 >> 0] = i11; break; } } while (0); HEAP32[i9 >> 2] = HEAP32[i12 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break L293; HEAP32[i12 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i25); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i27); if ((i1 | 0) == (i23 | 0)) { i1 = i23; break L1; } i2 = HEAP32[i13 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } i6 = i26 + 16 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i2 + -24 | 0, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); break L1; } case 79: { i14 = i26 + 4 | 0; i8 = ((HEAP32[i14 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; i22 = i23 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i21, i26) | 0; i14 = ((HEAP32[i14 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i23; break L1; } i5 = i26 + 16 | 0; i4 = HEAP32[i26 + 12 >> 2] | 0; i15 = i26 + 20 | 0; i2 = HEAP32[i15 >> 2] | 0; i22 = HEAP32[i26 + 24 >> 2] | 0; i6 = i22; do if (i2 >>> 0 >= i22 >>> 0) { i7 = HEAP32[i5 >> 2] | 0; i2 = i2 - i7 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i20 = i6 - i7 | 0; i22 = i20 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i20 >> 4 >>> 0 < 134217727 ? (i22 >>> 0 < i3 >>> 0 ? i3 : i22) : 268435455, i2, i26 + 28 | 0); i22 = i27 + 8 | 0; i20 = HEAP32[i22 >> 2] | 0; HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; HEAP32[i20 + 12 >> 2] = i4; HEAP32[i22 >> 2] = i20 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = i4; HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + 16; } while (0); i11 = i27 + 11 | 0; i12 = i27 + 4 | 0; i13 = i27 + 8 | 0; while (1) { if (i8 >>> 0 >= i14 >>> 0) break L1; i18 = HEAP32[i26 >> 2] | 0; i2 = i18 + (i8 * 24 | 0) + 12 | 0; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; i22 = HEAP8[i2 + 11 >> 0] | 0; i20 = i22 << 24 >> 24 < 0; i22 = i20 ? HEAP32[i18 + (i8 * 24 | 0) + 16 >> 2] | 0 : i22 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, i20 ? HEAP32[i2 >> 2] | 0 : i2, i22 >>> 0 < 2 ? i22 : 2); i22 = HEAP8[i11 >> 0] | 0; i2 = i22 << 24 >> 24 < 0; if (((i2 ? HEAP32[i12 >> 2] | 0 : i22 & 255) | 0) == 2) i2 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i27 >> 2] | 0 : i27, 42435, 2) | 0) == 0; else i2 = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); i3 = HEAP32[i26 >> 2] | 0; if (!i2) { i2 = i3 + (i8 * 24 | 0) + 12 | 0; if ((HEAP8[i2 + 11 >> 0] | 0) < 0) i2 = HEAP32[i2 >> 2] | 0; if ((HEAP8[i2 >> 0] | 0) == 40) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i8 * 24 | 0) | 0, 42453) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) + 12 | 0, 0, 42358) | 0; } } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i8 * 24 | 0) | 0, 42355) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) + 12 | 0, 0, 42358) | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) | 0, 42482) | 0; i5 = HEAP32[i15 >> 2] | 0; i6 = i5 + -16 | 0; i7 = HEAP32[i26 >> 2] | 0; i9 = i7 + (i8 * 24 | 0) | 0; i2 = i5 + -12 | 0; i3 = HEAP32[i2 >> 2] | 0; i22 = HEAP32[i5 + -8 >> 2] | 0; i10 = i22; if ((i3 | 0) == (i22 | 0)) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) break; i20 = (i10 - i4 | 0) / 24 | 0; i22 = i20 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i20 >>> 0 < 89478485 ? (i22 >>> 0 < i3 >>> 0 ? i3 : i22) : 178956970, i2, i5 + -4 | 0); i22 = HEAP32[i13 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i22, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i22 + 12 | 0, i7 + (i8 * 24 | 0) + 12 | 0); HEAP32[i13 >> 2] = i22 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i27); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i8 * 24 | 0) + 12 | 0); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } i8 = i8 + 1 | 0; } __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); break; } case 80: { i17 = i26 + 4 | 0; i8 = ((HEAP32[i17 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; i16 = i23 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i16, i21, i26) | 0; i17 = ((HEAP32[i17 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; if ((i1 | 0) == (i16 | 0)) { i1 = i23; break L1; } i5 = i26 + 16 | 0; i4 = HEAP32[i26 + 12 >> 2] | 0; i18 = i26 + 20 | 0; i2 = HEAP32[i18 >> 2] | 0; i20 = HEAP32[i26 + 24 >> 2] | 0; i6 = i20; do if (i2 >>> 0 >= i20 >>> 0) { i7 = HEAP32[i5 >> 2] | 0; i2 = i2 - i7 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i15 = i6 - i7 | 0; i20 = i15 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i15 >> 4 >>> 0 < 134217727 ? (i20 >>> 0 < i3 >>> 0 ? i3 : i20) : 268435455, i2, i26 + 28 | 0); i20 = i27 + 8 | 0; i15 = HEAP32[i20 >> 2] | 0; HEAP32[i15 >> 2] = 0; HEAP32[i15 + 4 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; HEAP32[i15 + 12 >> 2] = i4; HEAP32[i20 >> 2] = i15 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = i4; HEAP32[i18 >> 2] = (HEAP32[i18 >> 2] | 0) + 16; } while (0); i11 = i27 + 11 | 0; i12 = i27 + 4 | 0; i13 = i27 + 11 | 0; i14 = i27 + 4 | 0; i15 = i27 + 8 | 0; while (1) { if (i8 >>> 0 >= i17 >>> 0) break L1; i9 = HEAP32[i26 >> 2] | 0; i2 = i9 + (i8 * 24 | 0) + 12 | 0; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; i20 = HEAP8[i2 + 11 >> 0] | 0; i10 = i20 << 24 >> 24 < 0; i20 = i10 ? HEAP32[i9 + (i8 * 24 | 0) + 16 >> 2] | 0 : i20 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, i10 ? HEAP32[i2 >> 2] | 0 : i2, i20 >>> 0 < 2 ? i20 : 2); i20 = HEAP8[i11 >> 0] | 0; i2 = i20 << 24 >> 24 < 0; if (((i2 ? HEAP32[i12 >> 2] | 0 : i20 & 255) | 0) == 2) i2 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i27 >> 2] | 0 : i27, 42435, 2) | 0) == 0; else i2 = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); i3 = HEAP32[i26 >> 2] | 0; if (!i2) { i2 = i3 + (i8 * 24 | 0) + 12 | 0; if ((HEAP8[i2 + 11 >> 0] | 0) < 0) i2 = HEAP32[i2 >> 2] | 0; if ((HEAP8[i2 >> 0] | 0) == 40) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i8 * 24 | 0) | 0, 42453) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) + 12 | 0, 0, 42358) | 0; } } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i8 * 24 | 0) | 0, 42355) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) + 12 | 0, 0, 42358) | 0; } do if ((HEAP8[i16 >> 0] | 0) == 85) { i9 = HEAP32[i26 >> 2] | 0; i2 = i9 + (i8 * 24 | 0) | 0; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; i20 = HEAP8[i2 + 11 >> 0] | 0; i10 = i20 << 24 >> 24 < 0; i20 = i10 ? HEAP32[i9 + (i8 * 24 | 0) + 4 >> 2] | 0 : i20 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, i10 ? HEAP32[i2 >> 2] | 0 : i2, i20 >>> 0 < 12 ? i20 : 12); i20 = HEAP8[i13 >> 0] | 0; i2 = i20 << 24 >> 24 < 0; if (((i2 ? HEAP32[i14 >> 2] | 0 : i20 & 255) | 0) == 12) i3 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i27 >> 2] | 0 : i27, 42485, 12) | 0) != 0; else i3 = 1; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); i10 = HEAP32[i26 >> 2] | 0; i2 = i10 + (i8 * 24 | 0) | 0; if (i3) i22 = 393; else { i9 = i2 + 11 | 0; i3 = HEAP8[i9 >> 0] | 0; i4 = i3 << 24 >> 24 < 0; if (i4) { i7 = HEAP32[i10 + (i8 * 24 | 0) + 4 >> 2] | 0; i6 = i7 >>> 0 < 11 ? i7 : 11; i3 = (HEAP32[i10 + (i8 * 24 | 0) + 8 >> 2] & 2147483647) + -1 | 0; } else { i7 = i3 & 255; i6 = i7 >>> 0 < 11 ? i7 : 11; i3 = 10; } if ((i6 - i7 + i3 | 0) >>> 0 < 2) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i2, i3, 2 - i6 + i7 - i3 | 0, i7, 0, i6, 2, 42500); break; } if (i4) i2 = HEAP32[i2 >> 2] | 0; L540 : do if ((i6 | 0) != 2) { i4 = i7 - i6 | 0; if (!i4) { i4 = i6; i6 = 0; i5 = 42500; i3 = 2; i22 = 412; } else { if (i6 >>> 0 > 2) { HEAP8[i2 >> 0] = 105; HEAP8[i2 + 1 >> 0] = 100; _memmove(i2 + 2 | 0, i2 + i6 | 0, i4 | 0) | 0; i4 = i6; i3 = 2; break; } i5 = i2 + i6 | 0; do if (i2 >>> 0 < 42500 >>> 0 & (i2 + i7 | 0) >>> 0 > 42500 >>> 0) { if (i5 >>> 0 <= 42500 >>> 0) { i3 = 42500 + (2 - i6) | 0; break; } if (i6 | 0) _memcpy(i2 | 0, 42500, i6 | 0) | 0; i3 = 2 - i6 | 0; _memmove(i5 + i3 | 0, i5 | 0, i4 | 0) | 0; if (!i3) { i4 = 0; i3 = 0; break L540; } else { i4 = 0; i5 = 42502; i22 = 412; break L540; } } else i3 = 42500; while (0); _memmove(i2 + 2 | 0, i5 | 0, i4 | 0) | 0; i4 = i6; i6 = 0; i5 = i3; i3 = 2; i22 = 412; } } else { i4 = 2; i6 = 0; i5 = 42500; i3 = 2; i22 = 412; } while (0); if ((i22 | 0) == 412) { i22 = 0; _memmove(i2 + i6 | 0, i5 | 0, i3 | 0) | 0; } i3 = i3 - i4 + i7 | 0; if ((HEAP8[i9 >> 0] | 0) < 0) HEAP32[i10 + (i8 * 24 | 0) + 4 >> 2] = i3; else HEAP8[i9 >> 0] = i3; HEAP8[i2 + i3 >> 0] = 0; } } else { i2 = (HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) | 0; i22 = 393; } while (0); if ((i22 | 0) == 393) { i22 = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2, 42498) | 0; } i5 = HEAP32[i18 >> 2] | 0; i6 = i5 + -16 | 0; i7 = HEAP32[i26 >> 2] | 0; i9 = i7 + (i8 * 24 | 0) | 0; i2 = i5 + -12 | 0; i3 = HEAP32[i2 >> 2] | 0; i20 = HEAP32[i5 + -8 >> 2] | 0; i10 = i20; if ((i3 | 0) == (i20 | 0)) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) break; i10 = (i10 - i4 | 0) / 24 | 0; i20 = i10 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i10 >>> 0 < 89478485 ? (i20 >>> 0 < i3 >>> 0 ? i3 : i20) : 178956970, i2, i5 + -4 | 0); i20 = HEAP32[i15 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i20, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i20 + 12 | 0, i7 + (i8 * 24 | 0) + 12 | 0); HEAP32[i15 >> 2] = i20 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i27); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i8 * 24 | 0) + 12 | 0); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } i8 = i8 + 1 | 0; } __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); break; } case 82: { i14 = i26 + 4 | 0; i8 = ((HEAP32[i14 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; i22 = i23 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i21, i26) | 0; i14 = ((HEAP32[i14 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i23; break L1; } i5 = i26 + 16 | 0; i4 = HEAP32[i26 + 12 >> 2] | 0; i15 = i26 + 20 | 0; i2 = HEAP32[i15 >> 2] | 0; i22 = HEAP32[i26 + 24 >> 2] | 0; i6 = i22; do if (i2 >>> 0 >= i22 >>> 0) { i7 = HEAP32[i5 >> 2] | 0; i2 = i2 - i7 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i20 = i6 - i7 | 0; i22 = i20 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i20 >> 4 >>> 0 < 134217727 ? (i22 >>> 0 < i3 >>> 0 ? i3 : i22) : 268435455, i2, i26 + 28 | 0); i22 = i27 + 8 | 0; i20 = HEAP32[i22 >> 2] | 0; HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; HEAP32[i20 + 12 >> 2] = i4; HEAP32[i22 >> 2] = i20 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = i4; HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + 16; } while (0); i11 = i27 + 11 | 0; i12 = i27 + 4 | 0; i13 = i27 + 8 | 0; while (1) { if (i8 >>> 0 >= i14 >>> 0) break L1; i18 = HEAP32[i26 >> 2] | 0; i2 = i18 + (i8 * 24 | 0) + 12 | 0; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; i22 = HEAP8[i2 + 11 >> 0] | 0; i20 = i22 << 24 >> 24 < 0; i22 = i20 ? HEAP32[i18 + (i8 * 24 | 0) + 16 >> 2] | 0 : i22 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, i20 ? HEAP32[i2 >> 2] | 0 : i2, i22 >>> 0 < 2 ? i22 : 2); i22 = HEAP8[i11 >> 0] | 0; i2 = i22 << 24 >> 24 < 0; if (((i2 ? HEAP32[i12 >> 2] | 0 : i22 & 255) | 0) == 2) i2 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i27 >> 2] | 0 : i27, 42435, 2) | 0) == 0; else i2 = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); i3 = HEAP32[i26 >> 2] | 0; if (!i2) { i2 = i3 + (i8 * 24 | 0) + 12 | 0; if ((HEAP8[i2 + 11 >> 0] | 0) < 0) i2 = HEAP32[i2 >> 2] | 0; if ((HEAP8[i2 >> 0] | 0) == 40) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i8 * 24 | 0) | 0, 42453) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) + 12 | 0, 0, 42358) | 0; } } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i3 + (i8 * 24 | 0) | 0, 42355) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc((HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) + 12 | 0, 0, 42358) | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i26 >> 2] | 0) + (i8 * 24 | 0) | 0, 42503) | 0; i5 = HEAP32[i15 >> 2] | 0; i6 = i5 + -16 | 0; i7 = HEAP32[i26 >> 2] | 0; i9 = i7 + (i8 * 24 | 0) | 0; i2 = i5 + -12 | 0; i3 = HEAP32[i2 >> 2] | 0; i22 = HEAP32[i5 + -8 >> 2] | 0; i10 = i22; if ((i3 | 0) == (i22 | 0)) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) break; i20 = (i10 - i4 | 0) / 24 | 0; i22 = i20 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i20 >>> 0 < 89478485 ? (i22 >>> 0 < i3 >>> 0 ? i3 : i22) : 178956970, i2, i5 + -4 | 0); i22 = HEAP32[i13 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i22, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i22 + 12 | 0, i7 + (i8 * 24 | 0) + 12 | 0); HEAP32[i13 >> 2] = i22 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i27); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i8 * 24 | 0) + 12 | 0); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } i8 = i8 + 1 | 0; } __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); break; } case 84: { i15 = i26 + 4 | 0; i12 = ((HEAP32[i15 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i23, i21, i26) | 0; i13 = ((HEAP32[i15 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; if ((i1 | 0) == (i23 | 0)) { i1 = i23; break L1; } i18 = i26 + 16 | 0; i14 = i26 + 12 | 0; i4 = HEAP32[i14 >> 2] | 0; i17 = i26 + 20 | 0; i2 = HEAP32[i17 >> 2] | 0; i16 = i26 + 24 | 0; i23 = HEAP32[i16 >> 2] | 0; i5 = i23; do if (i2 >>> 0 >= i23 >>> 0) { i6 = HEAP32[i18 >> 2] | 0; i2 = i2 - i6 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i18); else { i19 = i5 - i6 | 0; i23 = i19 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i19 >> 4 >>> 0 < 134217727 ? (i23 >>> 0 < i3 >>> 0 ? i3 : i23) : 268435455, i2, i26 + 28 | 0); i23 = i27 + 8 | 0; i19 = HEAP32[i23 >> 2] | 0; HEAP32[i19 >> 2] = 0; HEAP32[i19 + 4 >> 2] = 0; HEAP32[i19 + 8 >> 2] = 0; HEAP32[i19 + 12 >> 2] = i4; HEAP32[i23 >> 2] = i19 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i18, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = i4; HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + 16; } while (0); i6 = i27 + 8 | 0; i5 = i12; while (1) { if (i5 >>> 0 >= i13 >>> 0) break; i7 = HEAP32[i17 >> 2] | 0; i8 = i7 + -16 | 0; i9 = HEAP32[i26 >> 2] | 0; i10 = i9 + (i5 * 24 | 0) | 0; i2 = i7 + -12 | 0; i3 = HEAP32[i2 >> 2] | 0; i23 = HEAP32[i7 + -8 >> 2] | 0; i11 = i23; if ((i3 | 0) == (i23 | 0)) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) { i22 = 459; break; } i19 = (i11 - i4 | 0) / 24 | 0; i23 = i19 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i19 >>> 0 < 89478485 ? (i23 >>> 0 < i3 >>> 0 ? i3 : i23) : 178956970, i2, i7 + -4 | 0); i23 = HEAP32[i6 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i23, i10); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i23 + 12 | 0, i9 + (i5 * 24 | 0) + 12 | 0); HEAP32[i6 >> 2] = i23 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i27); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i10); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i9 + (i5 * 24 | 0) + 12 | 0); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } i5 = i5 + 1 | 0; } if ((i22 | 0) == 459) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); if (!((i13 | 0) == (i12 + 1 | 0) & (HEAP8[i26 + 63 >> 0] | 0) != 0)) break L1; i5 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i1, i21, i26) | 0; if ((i5 | 0) == (i1 | 0)) break L1; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i25, (HEAP32[i15 >> 2] | 0) + -24 | 0); i1 = HEAP32[i15 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i23 = i3 + -24 | 0; HEAP32[i15 >> 2] = i23; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i23); i3 = HEAP32[i15 >> 2] | 0; } i23 = HEAP8[i25 + 11 >> 0] | 0; i4 = i23 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i4 ? HEAP32[i25 >> 2] | 0 : i25, i4 ? HEAP32[i25 + 4 >> 2] | 0 : i23 & 255) | 0; i1 = (HEAP32[i15 >> 2] | 0) + -24 | 0; HEAP32[i20 >> 2] = HEAP32[i14 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i24, i1, i20); i1 = HEAP32[i17 >> 2] | 0; i23 = HEAP32[i16 >> 2] | 0; i4 = i23; do if (i1 >>> 0 >= i23 >>> 0) { i3 = HEAP32[i18 >> 2] | 0; i1 = i1 - i3 >> 4; i2 = i1 + 1 | 0; if (i2 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i18); else { i22 = i4 - i3 | 0; i23 = i22 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i22 >> 4 >>> 0 < 134217727 ? (i23 >>> 0 < i2 >>> 0 ? i2 : i23) : 268435455, i1, i26 + 28 | 0); i26 = i27 + 8 | 0; i23 = HEAP32[i26 >> 2] | 0; HEAP32[i23 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i23 >> 2] = HEAP32[i24 >> 2]; i22 = i24 + 4 | 0; HEAP32[i23 + 4 >> 2] = HEAP32[i22 >> 2]; i21 = i24 + 8 | 0; HEAP32[i23 + 8 >> 2] = HEAP32[i21 >> 2]; HEAP32[i21 >> 2] = 0; HEAP32[i22 >> 2] = 0; HEAP32[i24 >> 2] = 0; HEAP32[i26 >> 2] = i23 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i18, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i1 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i1 >> 2] = HEAP32[i24 >> 2]; i27 = i24 + 4 | 0; HEAP32[i1 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i24 + 8 | 0; HEAP32[i1 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i24 >> 2] = 0; HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i24); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25); i1 = i5; break L1; } case 85: { i1 = i23 + 1 | 0; if ((i1 | 0) == (i21 | 0)) { i1 = i23; break L1; } i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i21, i26) | 0; if ((i2 | 0) == (i1 | 0)) { i1 = i23; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i21, i26) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i23; break L1; } i6 = i26 + 4 | 0; i2 = HEAP32[i6 >> 2] | 0; if (((i2 - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i23; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i25, i2 + -24 | 0); i2 = HEAP32[i6 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i23 = i4 + -24 | 0; HEAP32[i6 >> 2] = i23; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i23); i4 = HEAP32[i6 >> 2] | 0; } i21 = i2 + -48 | 0; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; i23 = HEAP8[i21 + 11 >> 0] | 0; i19 = i23 << 24 >> 24 < 0; i23 = i19 ? HEAP32[i2 + -44 >> 2] | 0 : i23 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i27, i19 ? HEAP32[i21 >> 2] | 0 : i21, i23 >>> 0 < 9 ? i23 : 9); i23 = HEAP8[i27 + 11 >> 0] | 0; i2 = i23 << 24 >> 24 < 0; if (((i2 ? HEAP32[i27 + 4 >> 2] | 0 : i23 & 255) | 0) == 9) { i23 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i27 >> 2] | 0 : i27, 42505, 9) | 0) == 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); if (i23) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i24, (HEAP32[i6 >> 2] | 0) + -24 | 0); i3 = HEAP32[i6 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break; i23 = i3 + -24 | 0; HEAP32[i6 >> 2] = i23; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i23); i3 = HEAP32[i6 >> 2] | 0; } i2 = i24 + 11 | 0; i23 = HEAP8[i2 >> 0] | 0; i21 = i23 << 24 >> 24 < 0; i19 = HEAP32[i24 >> 2] | 0; i23 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i21 ? i19 + 9 | 0 : i24 + 9 | 0, (i21 ? i19 : i24) + (i21 ? HEAP32[i24 + 4 >> 2] | 0 : i23 & 255) | 0, i26) | 0; if ((i23 | 0) == (((HEAP8[i2 >> 0] | 0) < 0 ? HEAP32[i24 >> 2] | 0 : i24) + 9 | 0)) { __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i15, i25, 42465); i3 = HEAP8[i2 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i15, i2 ? HEAP32[i24 >> 2] | 0 : i24, i2 ? HEAP32[i24 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i20, i8); i2 = HEAP32[i6 >> 2] | 0; i23 = HEAP32[i26 + 8 >> 2] | 0; i4 = i23; do if (i2 >>> 0 >= i23 >>> 0) { i5 = HEAP32[i26 >> 2] | 0; i2 = (i2 - i5 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i26); else { i21 = (i4 - i5 | 0) / 24 | 0; i23 = i21 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i21 >>> 0 < 89478485 ? (i23 >>> 0 < i3 >>> 0 ? i3 : i23) : 178956970, i2, i26 + 12 | 0); i23 = i27 + 8 | 0; i21 = HEAP32[i23 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i21, i20); HEAP32[i23 >> 2] = i21 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i26, i27); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i20); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); } else { i4 = (HEAP32[i6 >> 2] | 0) + -24 | 0; __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i15, i25, 42515); __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i14, (HEAP32[i6 >> 2] | 0) + -24 | 0); i3 = HEAP8[i14 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i15, i2 ? HEAP32[i14 >> 2] | 0 : i14, i2 ? HEAP32[i14 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i20 >> 2] = HEAP32[i3 >> 2]; HEAP32[i20 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i20 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i20, 42517) | 0; HEAP32[i7 >> 2] = HEAP32[i3 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i27, i7); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i4, i27); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i27); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); } else i22 = 482; } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); i22 = 482; } if ((i22 | 0) == 482) { i3 = (HEAP32[i6 >> 2] | 0) + -24 | 0; __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i24, i25, 42465); __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i20, (HEAP32[i6 >> 2] | 0) + -24 | 0); i4 = HEAP8[i20 + 11 >> 0] | 0; i2 = i4 << 24 >> 24 < 0; i4 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i24, i2 ? HEAP32[i20 >> 2] | 0 : i20, i2 ? HEAP32[i20 + 4 >> 2] | 0 : i4 & 255) | 0; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i4 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i4 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i4 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i27, i5); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i27); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i27); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i5); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); } i5 = (HEAP32[i6 >> 2] | 0) + -24 | 0; HEAP32[i20 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i24, i5, i20); i5 = i26 + 16 | 0; i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i23 = HEAP32[i26 + 24 >> 2] | 0; i6 = i23; do if (i3 >>> 0 >= i23 >>> 0) { i4 = HEAP32[i5 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i22 = i6 - i4 | 0; i23 = i22 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i22 >> 4 >>> 0 < 134217727 ? (i23 >>> 0 < i3 >>> 0 ? i3 : i23) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i23 = HEAP32[i26 >> 2] | 0; HEAP32[i23 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i23 >> 2] = HEAP32[i24 >> 2]; i22 = i24 + 4 | 0; HEAP32[i23 + 4 >> 2] = HEAP32[i22 >> 2]; i21 = i24 + 8 | 0; HEAP32[i23 + 8 >> 2] = HEAP32[i21 >> 2]; HEAP32[i21 >> 2] = 0; HEAP32[i22 >> 2] = 0; HEAP32[i24 >> 2] = 0; HEAP32[i26 >> 2] = i23 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i24 >> 2]; i27 = i24 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i24 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i24 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i24); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25); break L1; } case 83: { i22 = i23 + 1 | 0; if ((i22 | 0) != (i21 | 0) ? (HEAP8[i22 >> 0] | 0) == 116 : 0) { i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i23, i21, i26) | 0; if ((i1 | 0) == (i23 | 0)) { i1 = i23; break L1; } i2 = HEAP32[i26 + 4 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } i6 = i26 + 16 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i2 + -24 | 0, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i23, i21, i26) | 0; if ((i1 | 0) == (i23 | 0)) { i1 = i23; break L1; } i6 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i1, i21, i26) | 0; if ((i6 | 0) == (i1 | 0)) break L1; i4 = i26 + 4 | 0; i2 = HEAP32[i4 >> 2] | 0; if (((i2 - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L1; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i25, i2 + -24 | 0); i1 = HEAP32[i4 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i23 = i3 + -24 | 0; HEAP32[i4 >> 2] = i23; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i23); i3 = HEAP32[i4 >> 2] | 0; } i2 = HEAP8[i25 + 11 >> 0] | 0; i23 = i2 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i23 ? HEAP32[i25 >> 2] | 0 : i25, i23 ? HEAP32[i25 + 4 >> 2] | 0 : i2 & 255) | 0; i4 = (HEAP32[i4 >> 2] | 0) + -24 | 0; HEAP32[i20 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i24, i4, i20); i4 = i26 + 16 | 0; i1 = i26 + 20 | 0; i2 = HEAP32[i1 >> 2] | 0; i23 = HEAP32[i26 + 24 >> 2] | 0; i5 = i23; do if (i2 >>> 0 >= i23 >>> 0) { i3 = HEAP32[i4 >> 2] | 0; i1 = i2 - i3 >> 4; i2 = i1 + 1 | 0; if (i2 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i4); else { i22 = i5 - i3 | 0; i23 = i22 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i22 >> 4 >>> 0 < 134217727 ? (i23 >>> 0 < i2 >>> 0 ? i2 : i23) : 268435455, i1, i26 + 28 | 0); i26 = i27 + 8 | 0; i23 = HEAP32[i26 >> 2] | 0; HEAP32[i23 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i23 >> 2] = HEAP32[i24 >> 2]; i22 = i24 + 4 | 0; HEAP32[i23 + 4 >> 2] = HEAP32[i22 >> 2]; i21 = i24 + 8 | 0; HEAP32[i23 + 8 >> 2] = HEAP32[i21 >> 2]; HEAP32[i21 >> 2] = 0; HEAP32[i22 >> 2] = 0; HEAP32[i24 >> 2] = 0; HEAP32[i26 >> 2] = i23 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i4, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i2 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i2 >> 2] = HEAP32[i24 >> 2]; i27 = i24 + 4 | 0; HEAP32[i2 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i24 + 8 | 0; HEAP32[i2 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i24 >> 2] = 0; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i24); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25); i1 = i6; break L1; } case 68: { i1 = i23 + 1 | 0; if ((i1 | 0) != (i21 | 0)) { i1 = HEAP8[i1 >> 0] | 0; switch (i1 << 24 >> 24 | 0) { case 112: { i12 = i26 + 4 | 0; i8 = ((HEAP32[i12 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; i22 = i23 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i21, i26) | 0; i12 = ((HEAP32[i12 >> 2] | 0) - (HEAP32[i26 >> 2] | 0) | 0) / 24 | 0; if ((i1 | 0) == (i22 | 0)) break L63; i5 = i26 + 16 | 0; i4 = HEAP32[i26 + 12 >> 2] | 0; i13 = i26 + 20 | 0; i2 = HEAP32[i13 >> 2] | 0; i22 = HEAP32[i26 + 24 >> 2] | 0; i6 = i22; do if (i2 >>> 0 >= i22 >>> 0) { i7 = HEAP32[i5 >> 2] | 0; i2 = i2 - i7 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i20 = i6 - i7 | 0; i22 = i20 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i20 >> 4 >>> 0 < 134217727 ? (i22 >>> 0 < i3 >>> 0 ? i3 : i22) : 268435455, i2, i26 + 28 | 0); i22 = i27 + 8 | 0; i20 = HEAP32[i22 >> 2] | 0; HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; HEAP32[i20 + 12 >> 2] = i4; HEAP32[i22 >> 2] = i20 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = i4; HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 16; } while (0); i11 = i27 + 8 | 0; while (1) { if (i8 >>> 0 >= i12 >>> 0) break L1; i5 = HEAP32[i13 >> 2] | 0; i6 = i5 + -16 | 0; i7 = HEAP32[i26 >> 2] | 0; i9 = i7 + (i8 * 24 | 0) | 0; i2 = i5 + -12 | 0; i3 = HEAP32[i2 >> 2] | 0; i22 = HEAP32[i5 + -8 >> 2] | 0; i10 = i22; if ((i3 | 0) == (i22 | 0)) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) break; i20 = (i10 - i4 | 0) / 24 | 0; i22 = i20 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i20 >>> 0 < 89478485 ? (i22 >>> 0 < i3 >>> 0 ? i3 : i22) : 178956970, i2, i5 + -4 | 0); i22 = HEAP32[i11 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i22, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i22 + 12 | 0, i7 + (i8 * 24 | 0) + 12 | 0); HEAP32[i11 >> 2] = i22 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i27); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i7 + (i8 * 24 | 0) + 12 | 0); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } i8 = i8 + 1 | 0; } __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); break; } case 84: case 116: { i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_decltypeINS0_2DbEEEPKcS4_S4_RT_(i23, i21, i26) | 0; if ((i1 | 0) == (i23 | 0)) break L63; i2 = HEAP32[i26 + 4 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } i6 = i26 + 16 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i2 + -24 | 0, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); break L1; } case 118: { if (!((i21 - i23 | 0) > 3 & i2 << 24 >> 24 == 68 & i1 << 24 >> 24 == 118)) break L63; i5 = i23 + 2 | 0; i2 = HEAP8[i5 >> 0] | 0; L752 : do if ((i2 + -49 & 255) < 9) { i1 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i5, i21) | 0; if ((i1 | 0) != (i21 | 0) ? (HEAP8[i1 >> 0] | 0) == 95 : 0) { i3 = i1 - i5 | 0; i2 = i1 + 1 | 0; do if ((i2 | 0) != (i21 | 0)) { if ((HEAP8[i2 >> 0] | 0) != 112) { i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i21, i26) | 0; if ((i1 | 0) == (i2 | 0)) break; i2 = HEAP32[i26 + 4 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i22 = 629; break L752; } i4 = i2 + -24 | 0; HEAP32[i24 >> 2] = 0; HEAP32[i24 + 4 >> 2] = 0; HEAP32[i24 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i24, i5, i3); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i24, 0, 42519) | 0; HEAP32[i25 >> 2] = HEAP32[i3 >> 2]; HEAP32[i25 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i25 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i25, 42442) | 0; HEAP32[i27 >> 2] = HEAP32[i3 >> 2]; HEAP32[i27 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i27 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i20 = HEAP8[i27 + 11 >> 0] | 0; i18 = i20 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4, i18 ? HEAP32[i27 >> 2] | 0 : i27, i18 ? HEAP32[i27 + 4 >> 2] | 0 : i20 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); break L752; } i1 = i1 + 2 | 0; HEAP32[i15 >> 2] = 0; HEAP32[i15 + 4 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i15, i5, i3); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i15, 0, 42528) | 0; HEAP32[i24 >> 2] = HEAP32[i3 >> 2]; HEAP32[i24 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i24 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i24, 42442) | 0; HEAP32[i20 >> 2] = HEAP32[i3 >> 2]; HEAP32[i20 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i20 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i25, i20); i2 = i26 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i18 = HEAP32[i26 + 8 >> 2] | 0; i5 = i18; do if (i3 >>> 0 >= i18 >>> 0) { i4 = HEAP32[i26 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i26); else { i17 = (i5 - i4 | 0) / 24 | 0; i18 = i17 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i27, i17 >>> 0 < 89478485 ? (i18 >>> 0 < i3 >>> 0 ? i3 : i18) : 178956970, i2, i26 + 12 | 0); i18 = i27 + 8 | 0; i17 = HEAP32[i18 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i17, i25); HEAP32[i18 >> 2] = i17 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i26, i27); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i27); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i25); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i25); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); break L752; } while (0); break L63; } else i22 = 629; } else { HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i27 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } L792 : do if (i2 << 24 >> 24 != 95 ? (i11 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i5, i21, i26) | 0, (i11 | 0) != (i5 | 0)) : 0) { i9 = i26 + 4 | 0; i1 = HEAP32[i9 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) != (i1 | 0)) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i25, i1 + -24 | 0); i7 = i27 + 11 | 0; if ((HEAP8[i7 >> 0] | 0) < 0) { HEAP8[HEAP32[i27 >> 2] >> 0] = 0; HEAP32[i27 + 4 >> 2] = 0; i1 = HEAP8[i7 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i8 = 0; i5 = (HEAP32[i27 + 8 >> 2] & 2147483647) + -1 | 0; i4 = 1; } else i22 = 596; } else { HEAP8[i27 >> 0] = 0; HEAP8[i7 >> 0] = 0; i1 = 0; i22 = 596; } if ((i22 | 0) == 596) { i8 = i1 & 255; i5 = 10; i4 = 0; } i2 = i8 >>> 0 < 11; i6 = i2 ? 10 : (i8 + 16 & 496) + -1 | 0; do if ((i6 | 0) != (i5 | 0)) { if (i2) { i2 = HEAP32[i27 >> 2] | 0; if (i4) { i1 = 0; i3 = i27; i22 = 603; } else { i4 = 0; i5 = 1; i3 = i27; i22 = 604; } } else { i3 = _malloc(i6 + 1 | 0) | 0; if (i6 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0) break; if (i4) { i1 = 1; i2 = HEAP32[i27 >> 2] | 0; i22 = 603; } else { i4 = 1; i5 = 0; i2 = i27; i22 = 604; } } if ((i22 | 0) == 603) { i4 = i1; i5 = 1; i1 = HEAP32[i27 + 4 >> 2] | 0; } else if ((i22 | 0) == 604) i1 = i1 & 255; i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i3 | 0, i2 | 0, i1 | 0) | 0; if (i5) _free(i2); if (i4) { HEAP32[i27 + 8 >> 2] = i6 + 1 | -2147483648; HEAP32[i27 + 4 >> 2] = i8; HEAP32[i27 >> 2] = i3; break; } else { HEAP8[i7 >> 0] = i8; break; } } while (0); HEAP32[i27 >> 2] = HEAP32[i25 >> 2]; HEAP32[i27 + 4 >> 2] = HEAP32[i25 + 4 >> 2]; HEAP32[i27 + 8 >> 2] = HEAP32[i25 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i25 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25); i2 = HEAP32[i9 >> 2] | 0; i1 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i1 | 0)) { i1 = i11; i22 = 618; break L792; } i22 = i2 + -24 | 0; HEAP32[i9 >> 2] = i22; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i22); i2 = HEAP32[i9 >> 2] | 0; } } } else { i1 = i5; i22 = 618; } while (0); do if ((i22 | 0) == 618) { if ((((i1 | 0) != (i21 | 0) ? (HEAP8[i1 >> 0] | 0) == 95 : 0) ? (i12 = i1 + 1 | 0, (i12 | 0) != (i21 | 0)) : 0) ? (i13 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i12, i21, i26) | 0, (i13 | 0) != (i12 | 0)) : 0) { i1 = HEAP32[i26 + 4 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i1 | 0)) break; i2 = i1 + -24 | 0; __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i24, 42519, i27); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i24, 42442) | 0; HEAP32[i25 >> 2] = HEAP32[i3 >> 2]; HEAP32[i25 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i25 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = HEAP8[i25 + 11 >> 0] | 0; i20 = i1 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2, i20 ? HEAP32[i25 >> 2] | 0 : i25, i20 ? HEAP32[i25 + 4 >> 2] | 0 : i1 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i25); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i24); i1 = i13; } else i1 = i23; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); break L752; } while (0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i27); i22 = 629; } while (0); if ((i22 | 0) == 629) break L63; if ((i1 | 0) == (i23 | 0)) break L63; i2 = HEAP32[i26 + 4 >> 2] | 0; if ((HEAP32[i26 >> 2] | 0) == (i2 | 0)) { i1 = i23; break L1; } i6 = i26 + 16 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i2 + -24 | 0, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); break L1; } default: break L63; } } break; } default: {} } while (0); i1 = __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_RT_(i23, i21, i26) | 0; if ((i1 | 0) == (i23 | 0)) { i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i23, i21, i26) | 0; if ((i1 | 0) != (i23 | 0) ? (i19 = HEAP32[i26 + 4 >> 2] | 0, (HEAP32[i26 >> 2] | 0) != (i19 | 0)) : 0) { i6 = i26 + 16 | 0; HEAP32[i24 >> 2] = HEAP32[i26 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i25, i19 + -24 | 0, i24); i2 = i26 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i24 = HEAP32[i26 + 24 >> 2] | 0; i5 = i24; do if (i3 >>> 0 >= i24 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i23 = i5 - i4 | 0; i24 = i23 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i27, i23 >> 4 >>> 0 < 134217727 ? (i24 >>> 0 < i3 >>> 0 ? i3 : i24) : 268435455, i2, i26 + 28 | 0); i26 = i27 + 8 | 0; i24 = HEAP32[i26 >> 2] | 0; HEAP32[i24 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i24 >> 2] = HEAP32[i25 >> 2]; i23 = i25 + 4 | 0; HEAP32[i24 + 4 >> 2] = HEAP32[i23 >> 2]; i22 = i25 + 8 | 0; HEAP32[i24 + 8 >> 2] = HEAP32[i22 >> 2]; HEAP32[i22 >> 2] = 0; HEAP32[i23 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i24 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i27); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i27); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i25 >> 2]; i27 = i25 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i27 >> 2]; i26 = i25 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i26 >> 2]; HEAP32[i26 >> 2] = 0; HEAP32[i27 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i25); } else i1 = i23; } } } else i1 = i23; while (0); STACKTOP = i28; return i1 | 0; } function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_(i127, i126) { i127 = i127 | 0; i126 = i126 | 0; var i1 = 0, i2 = 0, d3 = 0.0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, d9 = 0.0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0, i58 = 0, i59 = 0, i60 = 0, i61 = 0, i62 = 0, i63 = 0, i64 = 0, i65 = 0, i66 = 0, i67 = 0, i68 = 0, i69 = 0, i70 = 0, i71 = 0, i72 = 0, i73 = 0, i74 = 0, i75 = 0, i76 = 0, i77 = 0, i78 = 0, i79 = 0, i80 = 0, i81 = 0, i82 = 0, i83 = 0, i84 = 0, i85 = 0, i86 = 0, i87 = 0, i88 = 0, i89 = 0, i90 = 0, i91 = 0, i92 = 0, i93 = 0, i94 = 0, i95 = 0, i96 = 0, i97 = 0, i98 = 0, i99 = 0, i100 = 0, i101 = 0, i102 = 0, i103 = 0, i104 = 0, i105 = 0, i106 = 0, i107 = 0, i108 = 0, i109 = 0, i110 = 0, i111 = 0, i112 = 0, i113 = 0, i114 = 0, i115 = 0, i116 = 0, i117 = 0, i118 = 0, i119 = 0, i120 = 0, i121 = 0, i122 = 0, i123 = 0, i124 = 0, i125 = 0, i128 = 0, i129 = 0, i130 = 0, i131 = 0, i132 = 0, i133 = 0; i133 = STACKTOP; STACKTOP = STACKTOP + 832 | 0; i131 = i133 + 192 | 0; i129 = i133 + 48 | 0; i128 = i133 + 444 | 0; i132 = i133 + 824 | 0; i66 = i133 + 820 | 0; i7 = i133 + 816 | 0; i8 = i133 + 812 | 0; i10 = i133 + 808 | 0; i24 = i133 + 176 | 0; i25 = i133 + 804 | 0; i38 = i133 + 800 | 0; i29 = i133 + 796 | 0; i2 = i133 + 784 | 0; i4 = i133 + 780 | 0; i5 = i133 + 776 | 0; i26 = i133 + 772 | 0; i30 = i133 + 768 | 0; i39 = i133 + 764 | 0; i40 = i133 + 760 | 0; i41 = i133 + 756 | 0; i55 = i133 + 744 | 0; i67 = i133 + 732 | 0; i6 = i133 + 728 | 0; i27 = i133 + 716 | 0; i13 = i133 + 160 | 0; i14 = i133 + 712 | 0; i15 = i133 + 708 | 0; i16 = i133 + 704 | 0; i28 = i133 + 700 | 0; i17 = i133 + 696 | 0; i18 = i133 + 692 | 0; i31 = i133 + 144 | 0; i32 = i133 + 688 | 0; i42 = i133 + 684 | 0; i33 = i133 + 680 | 0; i43 = i133 + 676 | 0; i50 = i133 + 664 | 0; i19 = i133 + 660 | 0; i20 = i133 + 128 | 0; i21 = i133 + 656 | 0; i22 = i133 + 644 | 0; i23 = i133 + 640 | 0; i34 = i133 + 636 | 0; i35 = i133 + 632 | 0; i36 = i133 + 628 | 0; i44 = i133 + 624 | 0; i45 = i133 + 620 | 0; i56 = i133 + 616 | 0; i46 = i133 + 612 | 0; i47 = i133 + 112 | 0; i48 = i133 + 96 | 0; i51 = i133 + 608 | 0; i68 = i133 + 596 | 0; i69 = i133 + 592 | 0; i49 = i133 + 588 | 0; i121 = i133 + 584 | 0; i122 = i133 + 80 | 0; i123 = i133 + 64 | 0; i52 = i133 + 580 | 0; i53 = i133 + 576 | 0; i54 = i133 + 572 | 0; i57 = i133 + 568 | 0; i85 = i133 + 564 | 0; i37 = i133 + 560 | 0; i58 = i133 + 556 | 0; i59 = i133 + 552 | 0; i60 = i133 + 548 | 0; i125 = i133 + 272 | 0; i61 = i133 + 544 | 0; i79 = i133 + 540 | 0; i72 = i133 + 536 | 0; i86 = i133 + 532 | 0; i73 = i133 + 528 | 0; i74 = i133 + 524 | 0; i87 = i133 + 520 | 0; i88 = i133 + 516 | 0; i89 = i133 + 504 | 0; i90 = i133 + 492 | 0; i103 = i133 + 488 | 0; i104 = i133 + 484 | 0; i105 = i133 + 480 | 0; i75 = i133 + 476 | 0; i76 = i133 + 464 | 0; i80 = i133 + 452 | 0; i101 = i133 + 448 | 0; i81 = i133 + 440 | 0; i82 = i133 + 436 | 0; i83 = i133 + 424 | 0; i84 = i133 + 412 | 0; i102 = i133 + 408 | 0; i112 = i133 + 404 | 0; i95 = i133 + 400 | 0; i96 = i133 + 396 | 0; i97 = i133 + 384 | 0; i98 = i133 + 372 | 0; i109 = i133 + 368 | 0; i110 = i133 + 364 | 0; i111 = i133 + 360 | 0; i113 = i133 + 356 | 0; i70 = i133 + 352 | 0; i71 = i133 + 348 | 0; i62 = i133 + 344 | 0; i63 = i133 + 340 | 0; i94 = i133 + 336 | 0; i93 = i133 + 332 | 0; i91 = i133 + 328 | 0; i92 = i133 + 324 | 0; i77 = i133 + 320 | 0; i78 = i133 + 308 | 0; i99 = i133 + 304 | 0; i114 = i133 + 224 | 0; i106 = i133 + 300 | 0; i107 = i133 + 32 | 0; i108 = i133 + 16 | 0; i115 = i133 + 296 | 0; i116 = i133 + 284 | 0; i117 = i133 + 268 | 0; i118 = i133; i119 = i133 + 256 | 0; i120 = i133 + 244 | 0; i64 = i133 + 232 | 0; i65 = i133 + 228 | 0; i130 = HEAP32[i127 >> 2] | 0; HEAP32[i66 >> 2] = HEAP32[i126 >> 2]; HEAP32[i131 >> 2] = HEAP32[i66 >> 2]; __ZN4wasm14AstStackHelperC2EN6cashew3RefE(i132, i131); if (HEAP8[i130 + 37 >> 0] | 0) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46604, 27089) | 0; __ZN6cashew5Value9stringifyERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i126 >> 2] | 0, 46604, 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(46604, 10) | 0; } i66 = __ZN6cashew3RefixEj(i126, 0) | 0; i66 = __ZN6cashew5Value10getIStringEv(HEAP32[i66 >> 2] | 0) | 0; i66 = HEAP32[i66 >> 2] | 0; L4 : do if ((i66 | 0) != (HEAP32[11262] | 0)) { if ((i66 | 0) == (HEAP32[11263] | 0)) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0, 45056) | 0) { i128 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0; i128 = __ZN6cashew5Value10getIStringEv(HEAP32[i128 >> 2] | 0) | 0; HEAP32[i129 >> 2] = HEAP32[i128 >> 2]; do if (!(__ZNKSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(HEAP32[i127 + 8 >> 2] | 0, i129) | 0)) { i1 = i130 + 40 | 0; if ((__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i129) | 0) == (i130 + 44 | 0)) ___assert_fail(27094, 11743, 1011, 42730); else { i129 = __ZNSt3__23mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i129) | 0; i128 = HEAP32[i129 >> 2] | 0; i129 = HEAP32[i129 + 4 >> 2] | 0; i11 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i125 = __ZN4wasm15getWasmTypeSizeENS_8WasmTypeE(i129) | 0; HEAP8[i11 + 8 >> 0] = i125; HEAP32[i11 + 12 >> 2] = 0; __ZN4wasm7AddressaSEy(i11 + 16 | 0, i125 & 255, 0) | 0; HEAP32[i24 >> 2] = 1; HEAP32[i24 + 8 >> 2] = i128; HEAP32[i131 >> 2] = HEAP32[i24 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; i130 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i130 + 8 | 0, i131) | 0; HEAP32[i11 + 20 >> 2] = i130; i130 = HEAP32[i127 + 4 >> 2] | 0; i128 = __ZN6cashew3RefixEj(i126, 3) | 0; HEAP32[i25 >> 2] = HEAP32[i128 >> 2]; HEAP32[i131 >> 2] = HEAP32[i25 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i11 + 24 >> 2] = i131; HEAP32[i11 + 4 >> 2] = i129; break; } } else { i11 = __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i130 = HEAP32[HEAP32[i127 + 12 >> 2] >> 2] | 0; i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0; i129 = __ZN6cashew5Value10getIStringEv(HEAP32[i129 >> 2] | 0) | 0; HEAP32[i8 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i8 >> 2]; i130 = __ZN4wasm8Function13getLocalIndexENS_4NameE(i130, i131) | 0; HEAP32[i11 + 8 >> 2] = i130; i130 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(i126, 3) | 0; HEAP32[i10 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i10 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i11 + 12 >> 2] = i131; HEAP32[i11 + 4 >> 2] = HEAP32[i131 + 4 >> 2]; } while (0); i1 = i11; break; } if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0, 45104) | 0)) { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 27195, 16); HEAP32[i4 >> 2] = HEAP32[i126 >> 2]; HEAP32[i131 >> 2] = HEAP32[i4 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i2, i131); } i125 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i129 >> 2] = HEAP32[i125 >> 2]; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 1) | 0, 0) | 0, 45056) | 0)) ___assert_fail(27142, 11743, 1023, 42730); i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 1) | 0, 1) | 0; i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i128 >> 2] = HEAP32[i1 >> 2]; i1 = i130 + 52 | 0; if ((__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i128) | 0) == (i130 + 56 | 0)) ___assert_fail(27163, 11743, 1025, 42730); i4 = __ZNSt3__23mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i128) | 0; i6 = i130 + 4 | 0; i1 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i6 >> 2] | 0) | 0; i2 = HEAP32[i4 >> 2] | 0; HEAP8[i1 + 8 >> 0] = i2; HEAP32[i1 + 12 >> 2] = 0; __ZN4wasm7AddressaSEy(i1 + 16 | 0, i2, 0) | 0; i2 = HEAP32[i127 + 16 >> 2] | 0; i5 = __ZN6cashew3RefixEj(i129, 2) | 0; HEAP32[i38 >> 2] = HEAP32[i5 >> 2]; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i131 >> 2] = HEAP32[i38 >> 2]; i5 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i2, i131, i5) | 0; HEAP32[i1 + 20 >> 2] = i5; i5 = HEAP32[i127 + 4 >> 2] | 0; i2 = __ZN6cashew3RefixEj(i126, 3) | 0; HEAP32[i29 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 >> 2] = HEAP32[i29 >> 2]; i5 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i131) | 0; i2 = i1 + 24 | 0; HEAP32[i2 >> 2] = i5; i4 = __ZN4wasm13asmToWasmTypeE7AsmType(HEAP32[i4 + 8 >> 2] | 0) | 0; HEAP32[i1 + 4 >> 2] = i4; i5 = HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0; do if ((i4 | 0) != (i5 | 0)) if ((i4 | 0) == 3 & (i5 | 0) == 4) { i131 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i6 >> 2] | 0) | 0; HEAP32[i131 + 8 >> 2] = 44; HEAP32[i131 + 12 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 + 4 >> 2] = 3; HEAP32[i2 >> 2] = i131; break; } else _abort(); while (0); break; } if ((i66 | 0) == (HEAP32[11268] | 0)) { if (!(!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i126, 1) | 0, 45200) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i126, 1) | 0, 45264) | 0) : 0)) i124 = 27; if (((i124 | 0) == 27 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 3) | 0, 0) | 0, 45112) | 0 : 0) ? (i125 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 3) | 0, 1) | 0, i125 = __ZN6cashew5Value9getNumberEv(HEAP32[i125 >> 2] | 0) | 0, +HEAPF64[i125 >> 3] == 0.0) : 0) { i1 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i5 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i5 >> 2]; i1 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i131) | 0; __ZN4wasm15Asm2WasmBuilder11fixCallTypeEPNS_10ExpressionENS_8WasmTypeE(i130, i1, 1); break; } i6 = i130 + 4 | 0; i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i6 >> 2] | 0) | 0; i4 = i127 + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; i7 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i26 >> 2] = HEAP32[i7 >> 2]; HEAP32[i131 >> 2] = HEAP32[i26 >> 2]; i5 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i131) | 0; i7 = i1 + 12 | 0; HEAP32[i7 >> 2] = i5; i4 = HEAP32[i4 >> 2] | 0; i5 = __ZN6cashew3RefixEj(i126, 3) | 0; HEAP32[i30 >> 2] = HEAP32[i5 >> 2]; HEAP32[i131 >> 2] = HEAP32[i30 >> 2]; i4 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i131) | 0; i5 = i1 + 16 | 0; HEAP32[i5 >> 2] = i4; i4 = __ZN6cashew3RefixEj(i126, 1) | 0; i4 = __ZN6cashew5Value10getIStringEv(HEAP32[i4 >> 2] | 0) | 0; HEAP32[i39 >> 2] = HEAP32[i4 >> 2]; i4 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i40 >> 2] = HEAP32[i4 >> 2]; i4 = __ZN6cashew3RefixEj(i126, 3) | 0; HEAP32[i41 >> 2] = HEAP32[i4 >> 2]; i4 = HEAP32[i7 >> 2] | 0; i2 = HEAP32[i5 >> 2] | 0; HEAP32[i128 >> 2] = HEAP32[i39 >> 2]; HEAP32[i129 >> 2] = HEAP32[i40 >> 2]; HEAP32[i131 >> 2] = HEAP32[i41 >> 2]; i2 = __ZN4wasm15Asm2WasmBuilder16parseAsmBinaryOpEN6cashew7IStringENS1_3RefES3_PNS_10ExpressionES5_(i130, i128, i129, i131, i4, i2) | 0; i4 = i1 + 8 | 0; HEAP32[i4 >> 2] = i2; __ZN4wasm6Binary8finalizeEv(i1); i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == 5 ? ((HEAP32[i1 + 4 >> 2] | 0) + -3 | 0) >>> 0 < 2 : 0) { i1 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i6 >> 2] | 0) | 0; HEAP32[i1 + 24 >> 2] = HEAP32[11402]; i131 = i1 + 8 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i131, HEAP32[i7 >> 2] | 0); __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i131, HEAP32[i5 >> 2] | 0); HEAP32[i1 + 4 >> 2] = 4; if (HEAP8[51416] | 0) break; HEAP8[51416] = 1; i131 = __Znwj(16) | 0; HEAP32[i131 + 12 >> 2] = 0; i129 = HEAP32[11402] | 0; HEAP32[i131 >> 2] = i129; HEAP32[i131 + 4 >> 2] = HEAP32[11401]; HEAP32[i131 + 8 >> 2] = i129; HEAP32[i55 >> 2] = 0; HEAP32[i55 + 4 >> 2] = 0; HEAP32[i55 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i55, 27212, 3); i129 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i55, HEAP32[i130 >> 2] | 0) | 0; HEAP32[i131 + 12 >> 2] = i129; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i55); __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i130 >> 2] | 0, i131); break; } if (!((HEAP8[i130 + 38 >> 0] | 0) == 0 & (i2 + -3 | 0) >>> 0 < 4)) break; i1 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i6 >> 2] | 0) | 0; switch (HEAP32[i4 >> 2] | 0) { case 5: { HEAP32[i1 + 24 >> 2] = HEAP32[11406]; break; } case 6: { HEAP32[i1 + 24 >> 2] = HEAP32[11407]; break; } case 3: { HEAP32[i1 + 24 >> 2] = HEAP32[11404]; break; } case 4: { HEAP32[i1 + 24 >> 2] = HEAP32[11405]; break; } default: {} } i129 = i1 + 8 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i129, HEAP32[i7 >> 2] | 0); __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i129, HEAP32[i5 >> 2] | 0); HEAP32[i1 + 4 >> 2] = 1; if ((HEAP8[44296] | 0) == 0 ? ___cxa_guard_acquire(44296) | 0 : 0) { HEAP32[11254] = 0; HEAP32[11255] = 0; HEAP32[11253] = 45016; ___cxa_atexit(156, 45012, ___dso_handle | 0) | 0; } i2 = i1 + 24 | 0; if (__ZNKSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE14__count_uniqueIS2_EEjRKT_(45012, i2) | 0) break; __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE25__emplace_unique_key_argsIS2_JRKS2_EEENS_4pairINS_15__tree_iteratorIS2_PNS_11__tree_nodeIS2_PvEEiEEbEERKT_DpOT0_(i131, 45012, i2, i2); i131 = __Znwj(16) | 0; HEAP32[i131 >> 2] = 0; HEAP32[i131 + 4 >> 2] = 0; HEAP32[i131 + 8 >> 2] = 0; HEAP32[i131 + 12 >> 2] = 0; HEAP32[i131 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[11401]; HEAP32[i131 + 8 >> 2] = HEAP32[i2 >> 2]; HEAP32[i67 >> 2] = 0; HEAP32[i67 + 4 >> 2] = 0; HEAP32[i67 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i67, 27216, 3); i129 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i67, HEAP32[i130 >> 2] | 0) | 0; HEAP32[i131 + 12 >> 2] = i129; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i67); __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i130 >> 2] | 0, i131); break; } if ((i66 | 0) == (HEAP32[11278] | 0)) { i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i131 = __ZN6cashew3RefixEj(i126, 1) | 0; i131 = __ZN6cashew5Value9getNumberEv(HEAP32[i131 >> 2] | 0) | 0; d3 = +HEAPF64[i131 >> 3]; do if (!(__ZN4wasm12isSInteger32Ed(d3) | 0)) if (__ZN4wasm12isUInteger32Ed(d3) | 0) { i2 = __ZN4wasm12toUInteger32Ed(d3) | 0; HEAP32[i1 + 8 >> 2] = 1; HEAP32[i1 + 16 >> 2] = i2; i2 = 1; break; } else { HEAP32[i1 + 8 >> 2] = 4; HEAPF64[i1 + 16 >> 3] = d3; i2 = 4; break; } else { i2 = __ZN4wasm12toSInteger32Ed(d3) | 0; HEAP32[i1 + 8 >> 2] = 1; HEAP32[i1 + 16 >> 2] = i2; i2 = 1; } while (0); HEAP32[i1 + 4 >> 2] = i2; break; } if ((i66 | 0) == (HEAP32[11264] | 0)) { i128 = __ZN6cashew3RefixEj(i126, 1) | 0; i128 = __ZN6cashew5Value10getIStringEv(HEAP32[i128 >> 2] | 0) | 0; HEAP32[i129 >> 2] = HEAP32[i128 >> 2]; do if (!(__ZNKSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(HEAP32[i127 + 8 >> 2] | 0, i129) | 0)) { if ((HEAP32[i129 >> 2] | 0) == (HEAP32[11414] | 0)) { i1 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i2 = HEAP32[11414] | 0; HEAP32[i1 + 24 >> 2] = i2; HEAP32[i1 + 4 >> 2] = 0; if (HEAP8[51417] | 0) { i12 = i1; break; } HEAP8[51417] = 1; i12 = __Znwj(16) | 0; HEAP32[i12 + 12 >> 2] = 0; HEAP32[i12 >> 2] = i2; HEAP32[i12 + 4 >> 2] = HEAP32[11401]; HEAP32[i12 + 8 >> 2] = i2; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i27, 27220, 1); i131 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i27, HEAP32[i130 >> 2] | 0) | 0; HEAP32[i12 + 12 >> 2] = i131; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i27); __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i130 >> 2] | 0, i12); i12 = i1; break; } i1 = i130 + 40 | 0; if ((__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i129) | 0) == (i130 + 44 | 0)) ___assert_fail(27094, 11743, 1143, 42730); else { i129 = __ZNSt3__23mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i129) | 0; i128 = HEAP32[i129 >> 2] | 0; i129 = HEAP32[i129 + 4 >> 2] | 0; i12 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i127 = __ZN4wasm15getWasmTypeSizeENS_8WasmTypeE(i129) | 0; HEAP8[i12 + 8 >> 0] = i127; HEAP8[i12 + 9 >> 0] = 1; HEAP32[i12 + 12 >> 2] = 0; __ZN4wasm7AddressaSEy(i12 + 16 | 0, i127 & 255, 0) | 0; HEAP32[i13 >> 2] = 1; HEAP32[i13 + 8 >> 2] = i128; HEAP32[i131 >> 2] = HEAP32[i13 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i13 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i13 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i13 + 12 >> 2]; i131 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i130 + 8 | 0, i131) | 0; HEAP32[i12 + 20 >> 2] = i131; HEAP32[i12 + 4 >> 2] = i129; break; } } else { i12 = __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i130 = HEAP32[HEAP32[i127 + 12 >> 2] >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i6 >> 2]; i131 = __ZN4wasm8Function13getLocalIndexENS_4NameE(i130, i131) | 0; HEAP32[i12 + 8 >> 2] = i131; i131 = __ZN4wasm13asmToWasmTypeE7AsmType(__ZN7AsmData7getTypeERKN6cashew7IStringE(HEAP32[i127 + 20 >> 2] | 0, i129) | 0) | 0; HEAP32[i12 + 4 >> 2] = i131; } while (0); i1 = i12; break; } if ((i66 | 0) == (HEAP32[11276] | 0)) { i67 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i129 >> 2] = HEAP32[i67 >> 2]; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i129, 0) | 0, 45056) | 0)) ___assert_fail(27222, 11743, 1155, 42730); i2 = __ZN6cashew3RefixEj(i129, 1) | 0; i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i128 >> 2] = HEAP32[i2 >> 2]; i2 = i130 + 52 | 0; if ((__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i2, i128) | 0) == (i130 + 56 | 0)) ___assert_fail(27163, 11743, 1157, 42730); else { i129 = __ZNSt3__23mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i2, i128) | 0; i1 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i128 = HEAP32[i129 >> 2] | 0; HEAP8[i1 + 8 >> 0] = i128; HEAP8[i1 + 9 >> 0] = HEAP8[i129 + 5 >> 0] | 0; HEAP32[i1 + 12 >> 2] = 0; __ZN4wasm7AddressaSEy(i1 + 16 | 0, i128, 0) | 0; i128 = HEAP32[i127 + 16 >> 2] | 0; i130 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i14 >> 2] = HEAP32[i130 >> 2]; i130 = HEAP32[i129 >> 2] | 0; HEAP32[i131 >> 2] = HEAP32[i14 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i128, i131, i130) | 0; HEAP32[i1 + 20 >> 2] = i131; i131 = __ZN4wasm11getWasmTypeEjb(HEAP32[i129 >> 2] | 0, (HEAP8[i129 + 4 >> 0] | 0) == 0) | 0; HEAP32[i1 + 4 >> 2] = i131; break; } } if ((i66 | 0) == (HEAP32[11290] | 0)) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i126, 1) | 0, 45192) | 0) { HEAP32[i15 >> 2] = HEAP32[i126 >> 2]; HEAP32[i131 >> 2] = HEAP32[i15 >> 2]; __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i129, i130, i131); L102 : do if (!(HEAP32[i129 >> 2] | 0)) { i1 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i16 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i16 >> 2]; i1 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i131) | 0; switch (HEAP32[i1 + 4 >> 2] | 0) { case 1: { i129 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i128 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i28 >> 2] = HEAP32[i128 >> 2]; HEAP32[i131 >> 2] = HEAP32[i28 >> 2]; i131 = __ZN4wasm15Asm2WasmBuilder18isUnsignedCoercionEN6cashew3RefE(i130, i131) | 0; HEAP32[i129 + 8 >> 2] = i131 ? 38 : 36; HEAP32[i129 + 12 >> 2] = i1; HEAP32[i129 + 4 >> 2] = 4; i1 = i129; break L102; } case 3: { i131 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i131 + 8 >> 2] = 43; HEAP32[i131 + 12 >> 2] = i1; HEAP32[i131 + 4 >> 2] = 4; i1 = i131; break L102; } default: { __ZN4wasm15Asm2WasmBuilder11fixCallTypeEPNS_10ExpressionENS_8WasmTypeE(i130, i1, 4); break L102; } } } else { HEAP32[i131 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i129 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i129 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i129 + 12 >> 2]; i1 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i130 + 8 | 0, i131) | 0; } while (0); break; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i126, 1) | 0, 45196) | 0) { do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0, 45112) | 0)) { if ((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0, 45160) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0, 45192) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 2) | 0, 0) | 0, 45112) | 0 : 0) break; i2 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i18 >> 2] = HEAP32[i2 >> 2]; i2 = HEAP32[i127 + 20 >> 2] | 0; HEAP32[i131 >> 2] = HEAP32[i18 >> 2]; i2 = __ZN4wasm15Asm2WasmBuilder13detectAsmTypeEN6cashew3RefEP7AsmData(i130, i131, i2) | 0; i1 = HEAP32[i130 + 4 >> 2] | 0; if (!i2) { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(i1) | 0; HEAP32[i1 + 8 >> 2] = 1; HEAP32[i31 >> 2] = 1; HEAP32[i31 + 8 >> 2] = 0; HEAP32[i131 >> 2] = HEAP32[i31 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i31 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i31 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i31 + 12 >> 2]; i130 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i130 + 8 | 0, i131) | 0; HEAP32[i1 + 12 >> 2] = i130; i130 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i32 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i32 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 16 >> 2] = i131; HEAP32[i1 + 4 >> 2] = 1; break L4; } i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(i1) | 0; i130 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i42 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i42 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 12 >> 2] = i131; switch (i2 | 0) { case 1: { HEAP32[i1 + 8 >> 2] = 7; HEAP32[i1 + 4 >> 2] = 4; break; } case 2: { HEAP32[i1 + 8 >> 2] = 6; HEAP32[i1 + 4 >> 2] = 3; break; } default: _abort(); } break L4; } while (0); i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i128 = i1 + 8 | 0; HEAP32[i17 >> 2] = HEAP32[i126 >> 2]; HEAP32[i131 >> 2] = HEAP32[i17 >> 2]; __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i129, i130, i131); HEAP32[i128 >> 2] = HEAP32[i129 >> 2]; HEAP32[i128 + 4 >> 2] = HEAP32[i129 + 4 >> 2]; HEAP32[i128 + 8 >> 2] = HEAP32[i129 + 8 >> 2]; HEAP32[i128 + 12 >> 2] = HEAP32[i129 + 12 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i128 >> 2]; break; } if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i126, 1) | 0, 45216) | 0)) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i126, 1) | 0, 45212) | 0) { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 20; i130 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i21 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i21 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 12 >> 2] = i131; HEAP32[i1 + 4 >> 2] = 1; break; } else { HEAP32[i22 >> 2] = 0; HEAP32[i22 + 4 >> 2] = 0; HEAP32[i22 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i22, 27240, 9); HEAP32[i23 >> 2] = HEAP32[i126 >> 2]; HEAP32[i131 >> 2] = HEAP32[i23 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i22, i131); } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0, 45160) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0, 45216) | 0 : 0) { i4 = i130 + 4 | 0; i1 = HEAP32[i4 >> 2] | 0; if (HEAP8[i130 + 38 >> 0] | 0) { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(i1) | 0; i130 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 2) | 0; HEAP32[i33 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i33 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 12 >> 2] = i131; HEAP32[i1 + 8 >> 2] = (HEAP32[i131 + 4 >> 2] | 0) == 4 ? 29 : 25; HEAP32[i1 + 4 >> 2] = 1; break; } i1 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(i1) | 0; HEAP32[i1 + 24 >> 2] = HEAP32[11403]; i2 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 2) | 0; HEAP32[i43 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i43 >> 2]; i2 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0; if ((HEAP32[i2 + 4 >> 2] | 0) == 3) { i131 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i4 >> 2] | 0) | 0; HEAP32[i131 + 8 >> 2] = 43; HEAP32[i131 + 12 >> 2] = i2; HEAP32[i131 + 4 >> 2] = 4; i2 = i131; } __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1 + 8 | 0, i2); HEAP32[i1 + 4 >> 2] = 1; if (HEAP8[51418] | 0) break; HEAP8[51418] = 1; i131 = __Znwj(16) | 0; HEAP32[i131 + 12 >> 2] = 0; i129 = HEAP32[11403] | 0; HEAP32[i131 >> 2] = i129; HEAP32[i131 + 4 >> 2] = HEAP32[11401]; HEAP32[i131 + 8 >> 2] = i129; HEAP32[i50 >> 2] = 0; HEAP32[i50 + 4 >> 2] = 0; HEAP32[i50 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i50, 42500, 2); i129 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i50, HEAP32[i130 >> 2] | 0) | 0; HEAP32[i131 + 12 >> 2] = i129; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i50); __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i130 >> 2] | 0, i131); break; } i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 9; i129 = HEAP32[i127 + 4 >> 2] | 0; i128 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i19 >> 2] = HEAP32[i128 >> 2]; HEAP32[i131 >> 2] = HEAP32[i19 >> 2]; i129 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i129, i131) | 0; HEAP32[i1 + 12 >> 2] = i129; HEAP32[i20 >> 2] = 1; HEAP32[i20 + 8 >> 2] = -1; HEAP32[i131 >> 2] = HEAP32[i20 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i20 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i20 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i20 + 12 >> 2]; i131 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i130 + 8 | 0, i131) | 0; HEAP32[i1 + 16 >> 2] = i131; HEAP32[i1 + 4 >> 2] = 1; break; } if ((i66 | 0) == (HEAP32[11270] | 0)) { i1 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i2 = i127 + 4 | 0; i130 = HEAP32[i2 >> 2] | 0; i129 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i34 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i34 >> 2]; i130 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 8 >> 2] = i130; i130 = HEAP32[i2 >> 2] | 0; i129 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i35 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i35 >> 2]; i130 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 12 >> 2] = i130; if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i126, 3) | 0) | 0) i2 = 0; else { i2 = HEAP32[i2 >> 2] | 0; i130 = __ZN6cashew3RefixEj(i126, 3) | 0; HEAP32[i36 >> 2] = HEAP32[i130 >> 2]; HEAP32[i131 >> 2] = HEAP32[i36 >> 2]; i2 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0; } HEAP32[i1 + 16 >> 2] = i2; break; } if ((i66 | 0) == (HEAP32[11446] | 0)) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 0) | 0, 45056) | 0)) { i7 = __ZN10MixedArena5allocIN4wasm12CallIndirectEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i67 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i129 >> 2] = HEAP32[i67 >> 2]; if ((((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i129, 0) | 0, 45104) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 1) | 0, 0) | 0, 45056) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 2) | 0, 0) | 0, 45072) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 2) | 0, 1) | 0, 45204) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 2) | 0, 3) | 0, 0) | 0, 45112) | 0 : 0) { i6 = i127 + 4 | 0; i4 = HEAP32[i6 >> 2] | 0; i5 = __ZN6cashew3RefixEj(i129, 2) | 0; HEAP32[i37 >> 2] = HEAP32[i5 >> 2]; HEAP32[i131 >> 2] = HEAP32[i37 >> 2]; i4 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i131) | 0; i5 = i7 + 28 | 0; HEAP32[i5 >> 2] = i4; i4 = __ZN6cashew3RefixEj(i126, 2) | 0; i4 = HEAP32[i4 >> 2] | 0; HEAP32[i128 >> 2] = i4; i2 = i7 + 8 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= (__ZN6cashew5Value4sizeEv(i4) | 0) >>> 0) break; i4 = HEAP32[i6 >> 2] | 0; i127 = __ZN6cashew3RefixEj(i128, i1) | 0; HEAP32[i58 >> 2] = HEAP32[i127 >> 2]; HEAP32[i131 >> 2] = HEAP32[i58 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i2, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i131) | 0); i1 = i1 + 1 | 0; i4 = HEAP32[i128 >> 2] | 0; } i1 = __ZN4wasm14AstStackHelper9getParentEv(i132) | 0; HEAP32[i59 >> 2] = i1; HEAP32[i131 >> 2] = HEAP32[i59 >> 2]; i1 = __ZN4wasm15Asm2WasmBuilder15getFunctionTypeEN6cashew3RefER11ArenaVectorIPNS_10ExpressionEE(i130, i131, i2) | 0; HEAP32[i7 + 24 >> 2] = HEAP32[i1 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; i1 = i130 + 8 | 0; i130 = HEAP32[i5 >> 2] | 0; i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i129, 1) | 0, 1) | 0; i129 = __ZN6cashew5Value10getIStringEv(HEAP32[i129 >> 2] | 0) | 0; HEAP32[i60 >> 2] = HEAP32[i129 >> 2]; HEAP32[i125 >> 2] = 0; HEAP32[i125 + 4 >> 2] = 0; HEAP32[i125 + 8 >> 2] = 0; HEAP32[i131 >> 2] = HEAP32[i60 >> 2]; i1 = __ZN4wasm7Builder10makeBinaryENS_8BinaryOpEPNS_10ExpressionES3_(i1, 0, i130, __ZN4wasm7Builder14makeCallImportENS_4NameERKNSt3__26vectorIPNS_10ExpressionENS2_9allocatorIS5_EEEENS_8WasmTypeE(i1, i131, i125, 1) | 0) | 0; HEAP32[i5 >> 2] = i1; __ZNSt3__213__vector_baseIPN4wasm10ExpressionENS_9allocatorIS3_EEED2Ev(i125); i1 = i7; break; } ___assert_fail(27314, 11743, 1408, 42730); } i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 1) | 0; i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0; i5 = HEAP32[i5 >> 2] | 0; i6 = i5; if ((i6 | 0) == (HEAP32[i130 + 64 >> 2] | 0)) { i67 = __ZN6cashew3RefixEj(i126, 2) | 0; if ((__ZN6cashew5Value4sizeEv(HEAP32[i67 >> 2] | 0) | 0) == 2) { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 2; i130 = i127 + 4 | 0; i129 = HEAP32[i130 >> 2] | 0; i128 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0; HEAP32[i44 >> 2] = HEAP32[i128 >> 2]; HEAP32[i131 >> 2] = HEAP32[i44 >> 2]; i129 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i129, i131) | 0; HEAP32[i1 + 12 >> 2] = i129; i130 = HEAP32[i130 >> 2] | 0; i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0; HEAP32[i45 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i45 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 16 >> 2] = i131; HEAP32[i1 + 4 >> 2] = 1; break; } else ___assert_fail(27250, 11743, 1280, 42730); } i4 = i130 + 68 | 0; if ((i6 | 0) != (HEAP32[i4 >> 2] | 0) ? (i6 | 0) != (HEAP32[i130 + 92 >> 2] | 0) : 0) { if ((i6 | 0) == (HEAP32[i130 + 72 >> 2] | 0)) { i128 = __ZN6cashew3RefixEj(i126, 2) | 0; if ((__ZN6cashew5Value4sizeEv(HEAP32[i128 >> 2] | 0) | 0) != 1) ___assert_fail(27270, 11743, 1297, 42730); i128 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0; HEAP32[i46 >> 2] = HEAP32[i128 >> 2]; HEAP32[i131 >> 2] = HEAP32[i46 >> 2]; __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i129, i130, i131); L183 : do switch (HEAP32[i129 >> 2] | 0) { case 1: { d9 = +(__ZNK4wasm7Literal6geti32Ev(i129) | 0); HEAP32[i47 >> 2] = 3; HEAPF32[i47 + 8 >> 2] = d9; HEAP32[i131 >> 2] = HEAP32[i47 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i47 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i47 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i47 + 12 >> 2]; i1 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i130 + 8 | 0, i131) | 0; break; } case 4: { d9 = +__ZNK4wasm7Literal6getf64Ev(i129); HEAP32[i48 >> 2] = 3; HEAPF32[i48 + 8 >> 2] = d9; HEAP32[i131 >> 2] = HEAP32[i48 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i48 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i48 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i48 + 12 >> 2]; i1 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i130 + 8 | 0, i131) | 0; break; } default: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i2 = HEAP32[i127 + 4 >> 2] | 0; i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0; HEAP32[i51 >> 2] = HEAP32[i4 >> 2]; HEAP32[i131 >> 2] = HEAP32[i51 >> 2]; i2 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0; HEAP32[i1 + 12 >> 2] = i2; i4 = i2 + 4 | 0; switch (HEAP32[i4 >> 2] | 0) { case 3: { i1 = i2; break L183; } case 4: { HEAP32[i1 + 8 >> 2] = 44; break; } case 1: { HEAP32[i1 + 8 >> 2] = 35; break; } case 0: { HEAP32[i4 >> 2] = 3; i1 = i2; break L183; } default: { HEAP32[i68 >> 2] = 0; HEAP32[i68 + 4 >> 2] = 0; HEAP32[i68 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i68, 27290, 23); i130 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0; HEAP32[i69 >> 2] = HEAP32[i130 >> 2]; HEAP32[i131 >> 2] = HEAP32[i69 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i68, i131); } } HEAP32[i1 + 4 >> 2] = 3; } } while (0); break; } if ((i6 | 0) != (HEAP32[i130 + 76 >> 2] | 0)) { i2 = i130 + 80 | 0; do if ((i6 | 0) != (HEAP32[i2 >> 2] | 0)) { if ((i6 | 0) == (HEAP32[i130 + 88 >> 2] | 0)) break; if ((i6 | 0) == (HEAP32[i130 + 84 >> 2] | 0)) break; i128 = HEAP32[i130 >> 2] | 0; HEAP32[i53 >> 2] = i5; HEAP32[i131 >> 2] = HEAP32[i53 >> 2]; if (!(__ZN4wasm6Module11checkImportENS_4NameE(i128, i131) | 0)) { i6 = __ZN10MixedArena5allocIN4wasm4CallEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i6 + 24 >> 2] = i5; i1 = i6; i6 = i6 + 8 | 0; } else { i128 = __ZN4wasm14AstStackHelper9getParentEv(i132) | 0; HEAP32[i129 >> 2] = i128; if (__ZN6cashew3RefntEv(i129) | 0) i1 = 0; else { HEAP32[i54 >> 2] = HEAP32[i129 >> 2]; i1 = HEAP32[i127 + 20 >> 2] | 0; HEAP32[i131 >> 2] = HEAP32[i54 >> 2]; i1 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i130, i131, i1) | 0; } i6 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i57 >> 2] = HEAP32[i126 >> 2]; i128 = HEAP32[i127 + 20 >> 2] | 0; HEAP32[i131 >> 2] = HEAP32[i57 >> 2]; __ZN4wasm15Asm2WasmBuilder24noteImportedFunctionCallEN6cashew3RefENS_8WasmTypeEP7AsmDataPNS_10CallImportE(i130, i131, i1, i128, i6); HEAP32[i6 + 24 >> 2] = i5; i1 = i6; i6 = i6 + 8 | 0; } i5 = __ZN6cashew3RefixEj(i126, 2) | 0; i5 = HEAP32[i5 >> 2] | 0; HEAP32[i129 >> 2] = i5; i4 = i127 + 4 | 0; i2 = 0; while (1) { if (i2 >>> 0 >= (__ZN6cashew5Value4sizeEv(i5) | 0) >>> 0) break; i5 = HEAP32[i4 >> 2] | 0; i130 = __ZN6cashew3RefixEj(i129, i2) | 0; HEAP32[i85 >> 2] = HEAP32[i130 >> 2]; HEAP32[i131 >> 2] = HEAP32[i85 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i6, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i5, i131) | 0); i2 = i2 + 1 | 0; i5 = HEAP32[i129 >> 2] | 0; } break L4; } while (0); i1 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0; HEAP32[i52 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i52 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i131) | 0; i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i1 + 12 >> 2] = i131; switch (HEAP32[i131 + 4 >> 2] | 0) { case 3: { if ((i6 | 0) == (HEAP32[i2 >> 2] | 0)) i2 = 12; else i2 = (i6 | 0) == (HEAP32[i130 + 84 >> 2] | 0) ? 10 : 18; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i1 + 4 >> 2] = 3; break; } case 4: { if ((i6 | 0) == (HEAP32[i2 >> 2] | 0)) i2 = 13; else i2 = (i6 | 0) == (HEAP32[i130 + 84 >> 2] | 0) ? 11 : 19; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i1 + 4 >> 2] = 4; break; } default: _abort(); } break; } i16 = HEAP32[i127 + 4 >> 2] | 0; i2 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0; HEAP32[i49 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 >> 2] = HEAP32[i49 >> 2]; i16 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i16, i131) | 0; i2 = i16 + 4 | 0; switch (HEAP32[i2 >> 2] | 0) { case 1: { i15 = HEAP32[i127 + 24 >> 2] | 0; i1 = HEAP32[i15 >> 2] | 0; if (!(HEAP8[i1 >> 0] | 0)) { HEAP8[i1 >> 0] = 1; i14 = HEAP32[HEAP32[i15 + 4 >> 2] >> 2] | 0; HEAP32[i129 >> 2] = HEAP32[11413]; HEAP32[i131 >> 2] = HEAP32[i129 >> 2]; __ZN4wasm7Builder6addVarEPNS_8FunctionENS_4NameENS_8WasmTypeE(i14, i131, 1) | 0; i14 = HEAP32[i15 + 8 >> 2] | 0; i1 = HEAP32[11413] | 0; i13 = i1 * 33 ^ 5381; i10 = i14 + 4 | 0; i11 = HEAP32[i10 >> 2] | 0; i12 = (i11 | 0) == 0; i5 = i1; L230 : do if (i12) { i2 = 0; i124 = 147; } else { i6 = i11 + -1 | 0; i7 = (i6 & i11 | 0) == 0; if (i7) i8 = i6 & i13; else i8 = (i13 >>> 0) % (i11 >>> 0) | 0; i2 = HEAP32[(HEAP32[i14 >> 2] | 0) + (i8 << 2) >> 2] | 0; if (!i2) { i2 = i8; i124 = 147; break; } do { i2 = HEAP32[i2 >> 2] | 0; if (!i2) { i2 = i8; i124 = 147; break L230; } i4 = HEAP32[i2 + 4 >> 2] | 0; if (i7) i4 = i4 & i6; else i4 = (i4 >>> 0) % (i11 >>> 0) | 0; if ((i4 | 0) != (i8 | 0)) { i2 = i8; i124 = 147; break L230; } } while ((HEAP32[i2 + 8 >> 2] | 0) != (i5 | 0)); } while (0); if ((i124 | 0) == 147) { i6 = __Znwj(12) | 0; HEAP32[i6 + 8 >> 2] = i1; HEAP32[i6 + 4 >> 2] = i13; HEAP32[i6 >> 2] = 0; i5 = i14 + 12 | 0; d3 = +(((HEAP32[i5 >> 2] | 0) + 1 | 0) >>> 0); d9 = +HEAPF32[i14 + 16 >> 2]; do if (i12 | d3 > +(i11 >>> 0) * d9) { i1 = (i11 >>> 0 > 2 & (i11 + -1 & i11 | 0) == 0 & 1 | i11 << 1) ^ 1; i2 = ~~+Math_ceil(+(d3 / d9)) >>> 0; __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE6rehashEj(i14, i1 >>> 0 < i2 >>> 0 ? i2 : i1); i1 = HEAP32[i10 >> 2] | 0; i2 = i1 + -1 | 0; if (!(i2 & i1)) { i4 = i1; i1 = i2 & i13; break; } else { i4 = i1; i1 = (i13 >>> 0) % (i1 >>> 0) | 0; break; } } else { i4 = i11; i1 = i2; } while (0); i1 = (HEAP32[i14 >> 2] | 0) + (i1 << 2) | 0; i2 = HEAP32[i1 >> 2] | 0; do if (!i2) { i126 = i14 + 8 | 0; HEAP32[i6 >> 2] = HEAP32[i126 >> 2]; HEAP32[i126 >> 2] = i6; HEAP32[i1 >> 2] = i126; i1 = HEAP32[i6 >> 2] | 0; if (!i1) break; i1 = HEAP32[i1 + 4 >> 2] | 0; i2 = i4 + -1 | 0; if (!(i2 & i4)) i1 = i1 & i2; else i1 = (i1 >>> 0) % (i4 >>> 0) | 0; HEAP32[(HEAP32[i14 >> 2] | 0) + (i1 << 2) >> 2] = i6; } else { HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = i6; } while (0); HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 1; i1 = HEAP32[11413] | 0; } i126 = HEAP32[i15 + 12 >> 2] | 0; HEAP32[i128 >> 2] = i1; HEAP32[i131 >> 2] = HEAP32[i128 >> 2]; __ZN7AsmData6addVarEN6cashew7IStringE7AsmType(i126, i131, 0); } i126 = i130 + 4 | 0; i124 = __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(HEAP32[i126 >> 2] | 0) | 0; i128 = i127 + 12 | 0; i125 = HEAP32[HEAP32[i128 >> 2] >> 2] | 0; HEAP32[i121 >> 2] = HEAP32[11413]; HEAP32[i131 >> 2] = HEAP32[i121 >> 2]; i125 = __ZN4wasm8Function13getLocalIndexENS_4NameE(i125, i131) | 0; HEAP32[i124 + 8 >> 2] = i125; HEAP32[i124 + 12 >> 2] = i16; HEAP32[i124 + 4 >> 2] = 1; HEAP32[i129 >> 2] = i130; HEAP32[i129 + 4 >> 2] = HEAP32[i128 >> 2]; i128 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i126 >> 2] | 0) | 0; HEAP32[i128 + 8 >> 2] = 17; i125 = __ZZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_ENKUlvE_clEv(i129) | 0; HEAP32[i128 + 12 >> 2] = i125; i125 = i130 + 8 | 0; HEAP32[i122 >> 2] = 1; HEAP32[i122 + 8 >> 2] = 0; HEAP32[i131 >> 2] = HEAP32[i122 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i122 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i122 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i122 + 12 >> 2]; i1 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i125, i131) | 0; HEAP32[i128 + 16 >> 2] = i1; __ZN4wasm6Binary8finalizeEv(i128); i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i126 >> 2] | 0) | 0; i130 = i1 + 12 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i130, i124); i127 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i126 >> 2] | 0) | 0; HEAP32[i127 + 8 >> 2] = 1; HEAP32[i123 >> 2] = 1; HEAP32[i123 + 8 >> 2] = 0; HEAP32[i131 >> 2] = HEAP32[i123 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i123 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i123 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i123 + 12 >> 2]; i131 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i125, i131) | 0; HEAP32[i127 + 12 >> 2] = i131; i131 = __ZZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_ENKUlvE_clEv(i129) | 0; HEAP32[i127 + 16 >> 2] = i131; HEAP32[i127 + 4 >> 2] = 1; i131 = __ZN10MixedArena5allocIN4wasm6SelectEEEPT_v(HEAP32[i126 >> 2] | 0) | 0; HEAP32[i131 + 8 >> 2] = i127; i129 = __ZZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_ENKUlvE_clEv(i129) | 0; HEAP32[i131 + 12 >> 2] = i129; HEAP32[i131 + 16 >> 2] = i128; HEAP32[i131 + 4 >> 2] = 1; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i130, i131); __ZN4wasm5Block8finalizeEv(i1); break L4; } case 4: case 3: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i131 = HEAP32[i2 >> 2] | 0; HEAP32[i1 + 8 >> 2] = (i131 | 0) == 3 ? 8 : 9; HEAP32[i1 + 12 >> 2] = i16; HEAP32[i1 + 4 >> 2] = i131; break L4; } default: _abort(); } } i123 = __ZN6cashew3RefixEj(i126, 2) | 0; if ((__ZN6cashew5Value4sizeEv(HEAP32[i123 >> 2] | 0) | 0) == 1) { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = (i6 | 0) == (HEAP32[i4 >> 2] | 0) ? 0 : 2; i130 = HEAP32[i127 + 4 >> 2] | 0; i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0; HEAP32[i56 >> 2] = HEAP32[i129 >> 2]; HEAP32[i131 >> 2] = HEAP32[i56 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 12 >> 2] = i131; HEAP32[i1 + 4 >> 2] = 1; break; } else ___assert_fail(27270, 11743, 1289, 42730); } if ((i66 | 0) == (HEAP32[11269] | 0)) { if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i126, 1) | 0) | 0) i2 = 0; else { i2 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i61 >> 2] = HEAP32[i2 >> 2]; i2 = HEAP32[i127 + 20 >> 2] | 0; HEAP32[i131 >> 2] = HEAP32[i61 >> 2]; i2 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i130, i131, i2) | 0; } i1 = (HEAP32[HEAP32[i127 + 12 >> 2] >> 2] | 0) + 4 | 0; if (HEAP8[HEAP32[i127 + 28 >> 2] >> 0] | 0) { if ((HEAP32[i1 >> 2] | 0) != (i2 | 0)) ___assert_fail(27430, 11743, 1423, 42730); } else HEAP32[i1 >> 2] = i2; i1 = __ZN10MixedArena5allocIN4wasm6ReturnEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i126, 1) | 0) | 0) i2 = 0; else { i2 = HEAP32[i127 + 4 >> 2] | 0; i130 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i79 >> 2] = HEAP32[i130 >> 2]; HEAP32[i131 >> 2] = HEAP32[i79 >> 2]; i2 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0; } HEAP32[i1 + 8 >> 2] = i2; break; } if ((i66 | 0) == (HEAP32[11449] | 0)) { HEAP32[i129 >> 2] = 0; i1 = i127 + 32 | 0; i2 = HEAP32[i1 >> 2] | 0; do if (HEAP32[i2 >> 2] | 0) { HEAP32[i72 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 >> 2] = HEAP32[i72 >> 2]; i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__5clENS1_7IStringE(i131) | 0; HEAP32[i129 >> 2] = i2; HEAP32[HEAP32[i1 >> 2] >> 2] = 0; i1 = HEAP32[i127 + 40 >> 2] | 0; i2 = i1 + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; if ((i4 | 0) == (HEAP32[i1 + 8 >> 2] | 0)) { __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i129); break; } else { HEAP32[i4 >> 2] = HEAP32[i129 >> 2]; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; break; } } while (0); i1 = HEAP32[i127 + 44 >> 2] | 0; i6 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i86 >> 2] = HEAP32[i6 >> 2]; HEAP32[i131 >> 2] = HEAP32[i86 >> 2]; i1 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i1, i131, 0) | 0; i131 = HEAP32[i129 >> 2] | 0; i6 = i131; do if (i131) { i4 = (HEAP32[i127 + 40 >> 2] | 0) + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; i2 = 0; while (1) { if ((i2 | 0) == -1) break; i131 = i2 + -1 | 0; HEAP32[i4 >> 2] = i5 + (i131 << 2); i2 = i131; } if (!((i1 | 0) == 0 | (HEAP32[i1 >> 2] | 0) != 1) ? (i100 = i1 + 8 | 0, (HEAP32[i100 >> 2] | 0) == 0) : 0) { HEAP32[i100 >> 2] = i6; break; } i131 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i131 + 8 >> 2] = HEAP32[i129 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i131 + 12 | 0, i1); __ZN4wasm5Block8finalizeEv(i131); i1 = i131; } while (0); break; } if ((i66 | 0) == (HEAP32[11280] | 0)) { i1 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i2 = i127 + 40 | 0; i130 = HEAP32[i2 >> 2] | 0; if ((HEAP32[i130 + 4 >> 2] | 0) == (HEAP32[i130 >> 2] | 0)) ___assert_fail(27455, 11743, 1455, 42730); if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i126, 1) | 0) | 0) i2 = HEAP32[(HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0) + -4 >> 2] | 0; else { i2 = __ZN6cashew3RefixEj(i126, 1) | 0; i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i73 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 >> 2] = HEAP32[i73 >> 2]; i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__5clENS1_7IStringE(i131) | 0; } HEAP32[i1 + 8 >> 2] = i2; break; } if ((i66 | 0) == (HEAP32[11281] | 0)) { i1 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i2 = i127 + 48 | 0; i130 = HEAP32[i2 >> 2] | 0; if ((HEAP32[i130 + 4 >> 2] | 0) == (HEAP32[i130 >> 2] | 0)) ___assert_fail(27477, 11743, 1460, 42730); if (__ZN6cashew3RefntEv(__ZN6cashew3RefixEj(i126, 1) | 0) | 0) i2 = HEAP32[(HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0) + -4 >> 2] | 0; else { i2 = __ZN6cashew3RefixEj(i126, 1) | 0; i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i74 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 >> 2] = HEAP32[i74 >> 2]; i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i131) | 0; } HEAP32[i1 + 8 >> 2] = i2; break; } if ((i66 | 0) == (HEAP32[11272] | 0)) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 0) | 0, 45112) | 0) { i10 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 1) | 0; i10 = (__ZN6cashew5Value10getIntegerEv(HEAP32[i10 >> 2] | 0) | 0) == 1; } else i10 = 0; i11 = i130 + 4 | 0; i1 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; HEAP32[i129 >> 2] = 0; HEAP32[i128 >> 2] = 0; i2 = i127 + 32 | 0; i4 = HEAP32[i2 >> 2] | 0; if (!(HEAP32[i4 >> 2] | 0)) { i125 = i127 + 56 | 0; i124 = HEAP32[i125 >> 2] | 0; HEAP32[i89 >> 2] = 0; HEAP32[i89 + 4 >> 2] = 0; HEAP32[i89 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i89, 27502, 9); i124 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i124, i89) | 0; HEAP32[i129 >> 2] = i124; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i89); i125 = HEAP32[i125 >> 2] | 0; HEAP32[i90 >> 2] = 0; HEAP32[i90 + 4 >> 2] = 0; HEAP32[i90 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i90, 27512, 8); i125 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i125, i90) | 0; HEAP32[i128 >> 2] = i125; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i90); } else { HEAP32[i87 >> 2] = HEAP32[i4 >> 2]; HEAP32[i131 >> 2] = HEAP32[i87 >> 2]; i125 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__5clENS1_7IStringE(i131) | 0; HEAP32[i129 >> 2] = i125; HEAP32[i88 >> 2] = HEAP32[HEAP32[i2 >> 2] >> 2]; HEAP32[i131 >> 2] = HEAP32[i88 >> 2]; i125 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i131) | 0; HEAP32[i128 >> 2] = i125; HEAP32[HEAP32[i2 >> 2] >> 2] = 0; } i2 = HEAP32[i129 >> 2] | 0; HEAP32[i1 + 8 >> 2] = i2; i7 = i1 + 12 | 0; HEAP32[i7 >> 2] = HEAP32[i128 >> 2]; i8 = i127 + 40 | 0; i4 = HEAP32[i8 >> 2] | 0; i5 = i4 + 4 | 0; i6 = HEAP32[i5 >> 2] | 0; if ((i6 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i129); else { HEAP32[i6 >> 2] = i2; HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4; } i6 = i127 + 48 | 0; i2 = HEAP32[i6 >> 2] | 0; i4 = i2 + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i2, i128); else { HEAP32[i5 >> 2] = HEAP32[i128 >> 2]; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4; } if (i10) { i4 = HEAP32[i127 + 4 >> 2] | 0; i2 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i103 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 >> 2] = HEAP32[i103 >> 2]; i4 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i131) | 0; i2 = i1 + 16 | 0; HEAP32[i2 >> 2] = i4; } else { i4 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; HEAP32[i4 + 8 >> 2] = HEAP32[i129 >> 2]; i128 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; i2 = i127 + 4 | 0; i129 = HEAP32[i2 >> 2] | 0; i127 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i104 >> 2] = HEAP32[i127 >> 2]; HEAP32[i131 >> 2] = HEAP32[i104 >> 2]; i129 = __ZN4wasm7Builder9makeUnaryENS_7UnaryOpEPNS_10ExpressionE(i130 + 8 | 0, 20, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i129, i131) | 0) | 0; HEAP32[i128 + 8 >> 2] = i129; HEAP32[i128 + 12 >> 2] = i4; i4 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; i129 = i4 + 12 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i129, i128); i2 = HEAP32[i2 >> 2] | 0; i128 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i105 >> 2] = HEAP32[i128 >> 2]; HEAP32[i131 >> 2] = HEAP32[i105 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i129, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0); __ZN4wasm5Block8finalizeEv(i4); i2 = i1 + 16 | 0; HEAP32[i2 >> 2] = i4; } i4 = __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i130, i4) | 0; i5 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; HEAP32[i5 + 8 >> 2] = HEAP32[i7 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i4 + 12 | 0, i5); HEAP32[i2 >> 2] = i4; i4 = (HEAP32[i6 >> 2] | 0) + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; i2 = 0; while (1) { if ((i2 | 0) == -1) break; i131 = i2 + -1 | 0; HEAP32[i4 >> 2] = i5 + (i131 << 2); i2 = i131; } i4 = (HEAP32[i8 >> 2] | 0) + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; i2 = 0; while (1) { if ((i2 | 0) == -1) break; i131 = i2 + -1 | 0; HEAP32[i4 >> 2] = i5 + (i131 << 2); i2 = i131; } break; } if ((i66 | 0) == (HEAP32[11273] | 0)) { do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 0) | 0, 45112) | 0) { i124 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 1) | 0; i124 = __ZN6cashew5Value9getNumberEv(HEAP32[i124 >> 2] | 0) | 0; if (!(+HEAPF64[i124 >> 3] == 0.0)) break; HEAP32[i129 >> 2] = 0; i1 = i127 + 32 | 0; i2 = HEAP32[i1 >> 2] | 0; if (!(HEAP32[i2 >> 2] | 0)) { i1 = i127 + 56 | 0; i124 = HEAP32[i1 >> 2] | 0; HEAP32[i76 >> 2] = 0; HEAP32[i76 + 4 >> 2] = 0; HEAP32[i76 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i76, 27521, 7); i124 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i124, i76) | 0; HEAP32[i129 >> 2] = i124; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i76); } else { HEAP32[i75 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 >> 2] = HEAP32[i75 >> 2]; i124 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__5clENS1_7IStringE(i131) | 0; HEAP32[i129 >> 2] = i124; HEAP32[HEAP32[i1 >> 2] >> 2] = 0; i1 = i127 + 56 | 0; } i6 = HEAP32[i1 >> 2] | 0; HEAP32[i80 >> 2] = 0; HEAP32[i80 + 4 >> 2] = 0; HEAP32[i80 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i80, 27529, 17); i6 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i6, i80) | 0; HEAP32[i128 >> 2] = i6; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i80); i6 = i127 + 40 | 0; i1 = HEAP32[i6 >> 2] | 0; i2 = i1 + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; if ((i4 | 0) == (HEAP32[i1 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i129); else { HEAP32[i4 >> 2] = HEAP32[i129 >> 2]; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; } i1 = i127 + 48 | 0; i2 = HEAP32[i1 >> 2] | 0; i4 = i2 + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i2, i128); else { HEAP32[i5 >> 2] = HEAP32[i128 >> 2]; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4; } i2 = HEAP32[i127 + 4 >> 2] | 0; i4 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i101 >> 2] = HEAP32[i4 >> 2]; HEAP32[i131 >> 2] = HEAP32[i101 >> 2]; i2 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0; HEAP32[i125 >> 2] = i2; i2 = (HEAP32[i1 >> 2] | 0) + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i127 = i1 + -1 | 0; HEAP32[i2 >> 2] = i4 + (i127 << 2); i1 = i127; } i2 = (HEAP32[i6 >> 2] | 0) + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i127 = i1 + -1 | 0; HEAP32[i2 >> 2] = i4 + (i127 << 2); i1 = i127; } i127 = HEAP32[i128 >> 2] | 0; HEAP32[i131 >> 2] = 0; HEAP32[i131 + 4 >> 2] = 0; HEAP32[i131 + 8 >> 2] = 0; HEAP32[i131 + 12 >> 2] = 0; HEAP32[i131 + 16 >> 2] = 0; HEAP32[i131 + 20 >> 2] = 0; HEAP32[i131 + 24 >> 2] = i127; i127 = i131 + 28 | 0; HEAP32[i127 >> 2] = 0; __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE4walkERPNS_10ExpressionE(i131, i125); i1 = HEAP32[i130 + 4 >> 2] | 0; if (!(HEAP32[i127 >> 2] | 0)) { i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(i1) | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1 + 12 | 0, HEAP32[i125 >> 2] | 0); HEAP32[i1 + 8 >> 2] = HEAP32[i129 >> 2]; __ZN4wasm5Block8finalizeEv(i1); } else { i1 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(i1) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[i125 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i129 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i128 >> 2]; } __ZNSt3__213__vector_baseIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEED2Ev(i131 + 4 | 0); break L4; } while (0); i11 = i130 + 4 | 0; i1 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; HEAP32[i129 >> 2] = 0; HEAP32[i128 >> 2] = 0; i2 = i127 + 32 | 0; i4 = HEAP32[i2 >> 2] | 0; if (!(HEAP32[i4 >> 2] | 0)) { i125 = i127 + 56 | 0; i124 = HEAP32[i125 >> 2] | 0; HEAP32[i83 >> 2] = 0; HEAP32[i83 + 4 >> 2] = 0; HEAP32[i83 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i83, 27547, 6); i124 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i124, i83) | 0; HEAP32[i129 >> 2] = i124; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i83); i125 = HEAP32[i125 >> 2] | 0; HEAP32[i84 >> 2] = 0; HEAP32[i84 + 4 >> 2] = 0; HEAP32[i84 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i84, 27554, 5); i125 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i125, i84) | 0; HEAP32[i128 >> 2] = i125; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i84); } else { HEAP32[i81 >> 2] = HEAP32[i4 >> 2]; HEAP32[i131 >> 2] = HEAP32[i81 >> 2]; i125 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__5clENS1_7IStringE(i131) | 0; HEAP32[i129 >> 2] = i125; HEAP32[i82 >> 2] = HEAP32[HEAP32[i2 >> 2] >> 2]; HEAP32[i131 >> 2] = HEAP32[i82 >> 2]; i125 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i131) | 0; HEAP32[i128 >> 2] = i125; HEAP32[HEAP32[i2 >> 2] >> 2] = 0; } i2 = HEAP32[i129 >> 2] | 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i1 + 12 >> 2] = HEAP32[i128 >> 2]; i10 = i127 + 40 | 0; i4 = HEAP32[i10 >> 2] | 0; i5 = i4 + 4 | 0; i6 = HEAP32[i5 >> 2] | 0; if ((i6 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i129); else { HEAP32[i6 >> 2] = i2; HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4; } i6 = i127 + 48 | 0; i2 = HEAP32[i6 >> 2] | 0; i4 = i2 + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i2, i128); else { HEAP32[i5 >> 2] = HEAP32[i128 >> 2]; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4; } i8 = i127 + 4 | 0; i4 = HEAP32[i8 >> 2] | 0; i7 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i102 >> 2] = HEAP32[i7 >> 2]; HEAP32[i131 >> 2] = HEAP32[i102 >> 2]; i4 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i4, i131) | 0; i7 = i1 + 16 | 0; HEAP32[i7 >> 2] = i4; i4 = (HEAP32[i6 >> 2] | 0) + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; i2 = 0; while (1) { if ((i2 | 0) == -1) break; i129 = i2 + -1 | 0; HEAP32[i4 >> 2] = i5 + (i129 << 2); i2 = i129; } i4 = (HEAP32[i10 >> 2] | 0) + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; i2 = 0; while (1) { if ((i2 | 0) == -1) break; i129 = i2 + -1 | 0; HEAP32[i4 >> 2] = i5 + (i129 << 2); i2 = i129; } i129 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; HEAP32[i129 + 8 >> 2] = HEAP32[i128 >> 2]; i128 = HEAP32[i8 >> 2] | 0; i127 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i112 >> 2] = HEAP32[i127 >> 2]; HEAP32[i131 >> 2] = HEAP32[i112 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i128, i131) | 0; HEAP32[i129 + 16 >> 2] = i131; i131 = __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i130, HEAP32[i7 >> 2] | 0) | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i131 + 12 | 0, i129); HEAP32[i7 >> 2] = i131; break; } if ((i66 | 0) == (HEAP32[11274] | 0)) { i15 = __ZN6cashew3RefixEj(i126, 1) | 0; i15 = HEAP32[i15 >> 2] | 0; i12 = __ZN6cashew3RefixEj(i126, 2) | 0; i12 = HEAP32[i12 >> 2] | 0; i11 = __ZN6cashew3RefixEj(i126, 3) | 0; i11 = HEAP32[i11 >> 2] | 0; i10 = __ZN6cashew3RefixEj(i126, 4) | 0; i10 = HEAP32[i10 >> 2] | 0; i13 = i130 + 4 | 0; i14 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i13 >> 2] | 0) | 0; HEAP32[i129 >> 2] = 0; HEAP32[i128 >> 2] = 0; i1 = i127 + 32 | 0; i2 = HEAP32[i1 >> 2] | 0; if (!(HEAP32[i2 >> 2] | 0)) { i126 = i127 + 56 | 0; i125 = HEAP32[i126 >> 2] | 0; HEAP32[i97 >> 2] = 0; HEAP32[i97 + 4 >> 2] = 0; HEAP32[i97 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i97, 27560, 7); i125 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i125, i97) | 0; HEAP32[i129 >> 2] = i125; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i97); i126 = HEAP32[i126 >> 2] | 0; HEAP32[i98 >> 2] = 0; HEAP32[i98 + 4 >> 2] = 0; HEAP32[i98 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i98, 27568, 6); i126 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i126, i98) | 0; HEAP32[i128 >> 2] = i126; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i98); } else { HEAP32[i95 >> 2] = HEAP32[i2 >> 2]; HEAP32[i131 >> 2] = HEAP32[i95 >> 2]; i126 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__5clENS1_7IStringE(i131) | 0; HEAP32[i129 >> 2] = i126; HEAP32[i96 >> 2] = HEAP32[HEAP32[i1 >> 2] >> 2]; HEAP32[i131 >> 2] = HEAP32[i96 >> 2]; i126 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i131) | 0; HEAP32[i128 >> 2] = i126; HEAP32[HEAP32[i1 >> 2] >> 2] = 0; } i1 = HEAP32[i129 >> 2] | 0; HEAP32[i14 + 8 >> 2] = i1; i7 = i14 + 12 | 0; HEAP32[i7 >> 2] = HEAP32[i128 >> 2]; i8 = i127 + 40 | 0; i2 = HEAP32[i8 >> 2] | 0; i4 = i2 + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i2, i129); else { HEAP32[i5 >> 2] = i1; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4; } i5 = i127 + 48 | 0; i1 = HEAP32[i5 >> 2] | 0; i2 = i1 + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; if ((i4 | 0) == (HEAP32[i1 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i128); else { HEAP32[i4 >> 2] = HEAP32[i128 >> 2]; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; } i4 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i13 >> 2] | 0) | 0; HEAP32[i4 + 8 >> 2] = HEAP32[i129 >> 2]; i2 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i13 >> 2] | 0) | 0; i6 = i127 + 4 | 0; i1 = HEAP32[i6 >> 2] | 0; HEAP32[i109 >> 2] = i12; HEAP32[i131 >> 2] = HEAP32[i109 >> 2]; i1 = __ZN4wasm7Builder9makeUnaryENS_7UnaryOpEPNS_10ExpressionE(i130 + 8 | 0, 20, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i131) | 0) | 0; HEAP32[i2 + 8 >> 2] = i1; HEAP32[i2 + 12 >> 2] = i4; i4 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i13 >> 2] | 0) | 0; i1 = i4 + 12 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1, i2); i2 = HEAP32[i6 >> 2] | 0; HEAP32[i110 >> 2] = i10; HEAP32[i131 >> 2] = HEAP32[i110 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0); i2 = HEAP32[i6 >> 2] | 0; HEAP32[i111 >> 2] = i11; HEAP32[i131 >> 2] = HEAP32[i111 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0); __ZN4wasm5Block8finalizeEv(i4); i2 = i14 + 16 | 0; HEAP32[i2 >> 2] = i4; i4 = __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i130, i4) | 0; i1 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i13 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = HEAP32[i7 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i4 + 12 | 0, i1); HEAP32[i2 >> 2] = i4; i2 = (HEAP32[i5 >> 2] | 0) + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i130 = i1 + -1 | 0; HEAP32[i2 >> 2] = i4 + (i130 << 2); i1 = i130; } i2 = (HEAP32[i8 >> 2] | 0) + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i130 = i1 + -1 | 0; HEAP32[i2 >> 2] = i4 + (i130 << 2); i1 = i130; } i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i13 >> 2] | 0) | 0; i130 = i1 + 12 | 0; i129 = HEAP32[i6 >> 2] | 0; HEAP32[i113 >> 2] = i15; HEAP32[i131 >> 2] = HEAP32[i113 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i130, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i129, i131) | 0); __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i130, i14); __ZN4wasm5Block8finalizeEv(i1); break; } if ((i66 | 0) == (HEAP32[11279] | 0)) { i2 = HEAP32[i127 + 32 >> 2] | 0; if (!(HEAP32[i2 >> 2] | 0)) { i1 = __ZN6cashew3RefixEj(i126, 1) | 0; i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; i1 = HEAP32[i127 + 4 >> 2] | 0; i130 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i70 >> 2] = HEAP32[i130 >> 2]; HEAP32[i131 >> 2] = HEAP32[i70 >> 2]; i1 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i131) | 0; break; } else ___assert_fail(12614, 11743, 1605, 42730); } if ((i66 | 0) == (HEAP32[11267] | 0)) { i1 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i129 = i127 + 4 | 0; i128 = HEAP32[i129 >> 2] | 0; i130 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i71 >> 2] = HEAP32[i130 >> 2]; HEAP32[i131 >> 2] = HEAP32[i71 >> 2]; i128 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i128, i131) | 0; HEAP32[i1 + 8 >> 2] = i128; i128 = HEAP32[i129 >> 2] | 0; i130 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i62 >> 2] = HEAP32[i130 >> 2]; HEAP32[i131 >> 2] = HEAP32[i62 >> 2]; i128 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i128, i131) | 0; i130 = i1 + 12 | 0; HEAP32[i130 >> 2] = i128; i129 = HEAP32[i129 >> 2] | 0; i128 = __ZN6cashew3RefixEj(i126, 3) | 0; HEAP32[i63 >> 2] = HEAP32[i128 >> 2]; HEAP32[i131 >> 2] = HEAP32[i63 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i129, i131) | 0; HEAP32[i1 + 16 >> 2] = i131; HEAP32[i1 + 4 >> 2] = HEAP32[(HEAP32[i130 >> 2] | 0) + 4 >> 2]; break; } if ((i66 | 0) == (HEAP32[11275] | 0)) { do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 0) | 0, 45052) | 0) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 0) | 0, 45104) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 1) | 0, 0) | 0, 45056) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 2) | 0, 0) | 0, 45072) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 2) | 0, 1) | 0, 45256) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 2) | 0, 2) | 0, 0) | 0, 45056) | 0)) break; i2 = i130 + 96 | 0; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 2) | 0, 2) | 0, 1) | 0, i2) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 2) | 0, 3) | 0, 0) | 0, 45112) | 0)) break; i125 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 2) | 0, 3) | 0, 1) | 0; i125 = __ZN6cashew5Value9getNumberEv(HEAP32[i125 >> 2] | 0) | 0; if (!(+HEAPF64[i125 >> 3] == 2.0)) break; i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 2) | 0, 1) | 0, 1) | 0; i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i129 >> 2] = HEAP32[i1 >> 2]; i1 = i130 + 52 | 0; if ((__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i129) | 0) != (i130 + 56 | 0)) { i1 = (__ZNSt3__23mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i129) | 0) + 8 | 0; i1 = HEAP32[i1 >> 2] | 0; HEAP32[i128 >> 2] = 0; do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0, 45072) | 0) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0, 45200) | 0)) { i124 = 331; break; } if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 3) | 0, 0) | 0, 45112) | 0)) { i124 = 331; break; } i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 3) | 0, 1) | 0; i129 = __ZN6cashew5Value9getNumberEv(HEAP32[i129 >> 2] | 0) | 0; if (!(+HEAPF64[i129 >> 3] == 0.0)) { i124 = 331; break; } i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 2) | 0; HEAP32[i128 >> 2] = HEAP32[i5 >> 2]; i5 = 0; i124 = 338; } else i124 = 331; while (0); L455 : do if ((i124 | 0) == 331) { do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0, 45160) | 0) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0, 45192) | 0)) break; i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 2) | 0; HEAP32[i128 >> 2] = HEAP32[i5 >> 2]; i5 = 1; i124 = 338; break L455; } while (0); if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 0) | 0, 45784) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0, 0) | 0, 45056) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 1) | 0, 1) | 0, i130 + 72 | 0) | 0)) break; i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 2) | 0, 2) | 0, 0) | 0; HEAP32[i128 >> 2] = HEAP32[i5 >> 2]; i5 = 2; i124 = 338; } while (0); L464 : do if ((i124 | 0) == 338) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i128, 0) | 0, 45104) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i128, 1) | 0, 0) | 0, 45056) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i128, 2) | 0, 0) | 0, 45072) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i128, 2) | 0, 1) | 0, 45256) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i128, 2) | 0, 2) | 0, 0) | 0, 45056) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i128, 2) | 0, 2) | 0, 1) | 0, i2) | 0)) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i128, 2) | 0, 3) | 0, 0) | 0, 45112) | 0)) break; i129 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i128, 2) | 0, 3) | 0, 1) | 0; i129 = __ZN6cashew5Value9getNumberEv(HEAP32[i129 >> 2] | 0) | 0; if (!(+HEAPF64[i129 >> 3] == 2.0)) break; i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i126, 1) | 0, 3) | 0; i4 = HEAP32[i4 >> 2] | 0; do if (!i1) { if ((i5 + -1 | 0) >>> 0 >= 2) break L464; i2 = i130 + 4 | 0; i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 45; i130 = HEAP32[i127 + 4 >> 2] | 0; HEAP32[i94 >> 2] = i4; HEAP32[i131 >> 2] = HEAP32[i94 >> 2]; i131 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0; HEAP32[i1 + 12 >> 2] = i131; HEAP32[i1 + 4 >> 2] = 3; if ((i5 | 0) != 1) break; i131 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i131 + 8 >> 2] = 43; HEAP32[i131 + 12 >> 2] = i1; HEAP32[i131 + 4 >> 2] = 4; i1 = i131; } else { if (!((i1 | 0) == 2 & (i5 | 0) == 0)) break L464; i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 33; i2 = HEAP32[i127 + 4 >> 2] | 0; HEAP32[i93 >> 2] = i4; HEAP32[i131 >> 2] = HEAP32[i93 >> 2]; i2 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i131) | 0; i4 = i1 + 12 | 0; HEAP32[i4 >> 2] = i2; if ((HEAP32[i2 + 4 >> 2] | 0) == 4) { i131 = __ZN4wasm7Builder9makeUnaryENS_7UnaryOpEPNS_10ExpressionE(i130 + 8 | 0, 44, i2) | 0; HEAP32[i4 >> 2] = i131; } HEAP32[i1 + 4 >> 2] = 1; } while (0); break L4; } while (0); } } while (0); i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i130 + 4 >> 2] | 0) | 0; i129 = i1 + 12 | 0; i130 = i127 + 4 | 0; i128 = HEAP32[i130 >> 2] | 0; i127 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i91 >> 2] = HEAP32[i127 >> 2]; HEAP32[i131 >> 2] = HEAP32[i91 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i129, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i128, i131) | 0); i130 = HEAP32[i130 >> 2] | 0; i128 = __ZN6cashew3RefixEj(i126, 2) | 0; HEAP32[i92 >> 2] = HEAP32[i128 >> 2]; HEAP32[i131 >> 2] = HEAP32[i92 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i129, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i130, i131) | 0); __ZN4wasm5Block8finalizeEv(i1); break; } if ((i66 | 0) != (HEAP32[11282] | 0)) { HEAP32[i64 >> 2] = 0; HEAP32[i64 + 4 >> 2] = 0; HEAP32[i64 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i64, 27705, 20); HEAP32[i65 >> 2] = HEAP32[i126 >> 2]; HEAP32[i131 >> 2] = HEAP32[i65 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i64, i131); } HEAP32[i129 >> 2] = 0; i2 = i127 + 32 | 0; i4 = HEAP32[i2 >> 2] | 0; if (!(HEAP32[i4 >> 2] | 0)) { i123 = HEAP32[i127 + 56 >> 2] | 0; HEAP32[i78 >> 2] = 0; HEAP32[i78 + 4 >> 2] = 0; HEAP32[i78 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i78, 33482, 6); i123 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i123, i78) | 0; HEAP32[i129 >> 2] = i123; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i78); } else { HEAP32[i77 >> 2] = HEAP32[i4 >> 2]; HEAP32[i131 >> 2] = HEAP32[i77 >> 2]; i123 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__5clENS1_7IStringE(i131) | 0; HEAP32[i129 >> 2] = i123; HEAP32[HEAP32[i2 >> 2] >> 2] = 0; } i15 = i127 + 40 | 0; i2 = HEAP32[i15 >> 2] | 0; i4 = i2 + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i2, i129); else { HEAP32[i5 >> 2] = HEAP32[i129 >> 2]; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4; } i16 = i130 + 4 | 0; i10 = __ZN10MixedArena5allocIN4wasm6SwitchEEEPT_v(HEAP32[i16 >> 2] | 0) | 0; i123 = HEAP32[i127 + 4 >> 2] | 0; i6 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i99 >> 2] = HEAP32[i6 >> 2]; HEAP32[i131 >> 2] = HEAP32[i99 >> 2]; i123 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i123, i131) | 0; i6 = i10 + 28 | 0; HEAP32[i6 >> 2] = i123; if ((HEAP32[i123 + 4 >> 2] | 0) != 1) ___assert_fail(27575, 11743, 1688, 42730); i2 = __ZN6cashew3RefixEj(i126, 2) | 0; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i128 >> 2] = i2; i5 = 0; i14 = 0; i4 = 0; L502 : while (1) { if (i5 >>> 0 >= (__ZN6cashew5Value4sizeEv(i2) | 0) >>> 0) break; i126 = __ZN6cashew3RefixEj(i128, i5) | 0; HEAP32[i125 >> 2] = HEAP32[i126 >> 2]; i126 = __ZN6cashew3RefixEj(i125, 0) | 0; i126 = HEAP32[i126 >> 2] | 0; HEAP32[i114 >> 2] = i126; do if ((HEAP32[i126 >> 2] | 0) == 3) i2 = i14; else { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i114, 0) | 0, 45112) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i114, 0) | 0, 45160) | 0) : 0) { i124 = 373; break L502; } HEAP32[i106 >> 2] = HEAP32[i114 >> 2]; HEAP32[i131 >> 2] = HEAP32[i106 >> 2]; __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i107, i130, i131); i2 = __ZNK4wasm7Literal6geti32Ev(i107) | 0; if (!i4) { i4 = 1; break; } i2 = (i2 | 0) < (i14 | 0) ? i2 : i14; i4 = 1; } while (0); i5 = i5 + 1 | 0; i14 = i2; i2 = HEAP32[i128 >> 2] | 0; } if ((i124 | 0) == 373) ___assert_fail(27602, 11743, 1697, 42730); i13 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i16 >> 2] | 0) | 0; HEAP32[i13 + 8 >> 2] = 1; HEAP32[i13 + 12 >> 2] = HEAP32[i6 >> 2]; HEAP32[i108 >> 2] = 1; HEAP32[i108 + 8 >> 2] = i14; HEAP32[i131 >> 2] = HEAP32[i108 >> 2]; HEAP32[i131 + 4 >> 2] = HEAP32[i108 + 4 >> 2]; HEAP32[i131 + 8 >> 2] = HEAP32[i108 + 8 >> 2]; HEAP32[i131 + 12 >> 2] = HEAP32[i108 + 12 >> 2]; i7 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i130 + 8 | 0, i131) | 0; HEAP32[i13 + 16 >> 2] = i7; HEAP32[i13 + 4 >> 2] = 1; HEAP32[i6 >> 2] = i13; i13 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i16 >> 2] | 0) | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i13 + 12 | 0, i10); __ZN4wasm5Block8finalizeEv(i13); i7 = i127 + 44 | 0; i12 = i10 + 24 | 0; i8 = i127 + 56 | 0; i11 = i10 + 8 | 0; i10 = i10 + 16 | 0; i5 = 0; while (1) { if (i5 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i128 >> 2] | 0) | 0) >>> 0) { i124 = 378; break; } i127 = __ZN6cashew3RefixEj(i128, i5) | 0; HEAP32[i125 >> 2] = HEAP32[i127 >> 2]; i127 = __ZN6cashew3RefixEj(i125, 0) | 0; HEAP32[i114 >> 2] = HEAP32[i127 >> 2]; i127 = __ZN6cashew3RefixEj(i125, 1) | 0; i6 = HEAP32[i7 >> 2] | 0; HEAP32[i115 >> 2] = HEAP32[i127 >> 2]; HEAP32[i131 >> 2] = HEAP32[i115 >> 2]; i6 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i6, i131, 0) | 0; if ((HEAP32[HEAP32[i114 >> 2] >> 2] | 0) == 3) { i2 = HEAP32[i8 >> 2] | 0; HEAP32[i116 >> 2] = 0; HEAP32[i116 + 4 >> 2] = 0; HEAP32[i116 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i116, 27654, 14); i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i116) | 0; HEAP32[i12 >> 2] = i2; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i116); } else { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i114, 0) | 0, 45112) | 0) ? !(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i114, 0) | 0, 45160) | 0) : 0) { i124 = 383; break; } HEAP32[i117 >> 2] = HEAP32[i114 >> 2]; HEAP32[i131 >> 2] = HEAP32[i117 >> 2]; __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i118, i130, i131); i2 = __ZNK4wasm7Literal6geti32Ev(i118) | 0; if ((i2 | 0) < (i14 | 0)) { i124 = 385; break; } i4 = i2 - i14 | 0; if ((i4 | 0) <= -1) { i124 = 387; break; } i2 = HEAP32[i8 >> 2] | 0; HEAP32[i119 >> 2] = 0; HEAP32[i119 + 4 >> 2] = 0; HEAP32[i119 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i119, 27693, 11); i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i2, i119) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i119); if ((HEAP32[i10 >> 2] | 0) >>> 0 <= i4 >>> 0) __ZN11ArenaVectorIN4wasm4NameEE6resizeEj(i11, i4 + 1 | 0); i127 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i11, i4) | 0; HEAP32[i127 >> 2] = i2; } i127 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i16 >> 2] | 0) | 0; HEAP32[i13 + 8 >> 2] = i2; i126 = i127 + 12 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i126, i13); __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i126, i6); __ZN4wasm5Block8finalizeEv(i127); i5 = i5 + 1 | 0; i13 = i127; } if ((i124 | 0) == 378) { if (!(HEAP32[i12 >> 2] | 0)) { i1 = HEAP32[i8 >> 2] | 0; HEAP32[i120 >> 2] = 0; HEAP32[i120 + 4 >> 2] = 0; HEAP32[i120 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i120, 27654, 14); i1 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i1, i120) | 0; HEAP32[i12 >> 2] = i1; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i120); i1 = 0; } else i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i10 >> 2] | 0) >>> 0) break; i131 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i11, i1) | 0; if (!(HEAP32[i131 >> 2] | 0)) { i131 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i11, i1) | 0; HEAP32[i131 >> 2] = HEAP32[i12 >> 2]; } i1 = i1 + 1 | 0; } HEAP32[i13 + 8 >> 2] = HEAP32[i12 >> 2]; i2 = (HEAP32[i15 >> 2] | 0) + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i131 = i1 + -1 | 0; HEAP32[i2 >> 2] = i4 + (i131 << 2); i1 = i131; } i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i16 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = HEAP32[i129 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1 + 12 | 0, i13); break; } else if ((i124 | 0) == 383) ___assert_fail(27602, 11743, 1727, 42730); else if ((i124 | 0) == 385) ___assert_fail(27669, 11743, 1729, 42730); else if ((i124 | 0) == 387) ___assert_fail(27682, 11743, 1731, 42730); } else { i1 = HEAP32[i127 + 4 >> 2] | 0; i130 = __ZN6cashew3RefixEj(i126, 1) | 0; HEAP32[i7 >> 2] = HEAP32[i130 >> 2]; HEAP32[i131 >> 2] = HEAP32[i7 >> 2]; i1 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i131) | 0; } while (0); __ZN4wasm14AstStackHelperD2Ev(i132); STACKTOP = i133; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i2, i8) { i1 = i1 | 0; i2 = i2 | 0; i8 = i8 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i6 = i9 + 24 | 0; i7 = i9; L1 : do if ((i2 - i1 | 0) > 1) do switch (HEAP8[i1 >> 0] | 0) { case 97: switch (HEAP8[i1 + 1 >> 0] | 0) { case 97: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42688); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 110: case 100: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42699); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 78: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42709); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 83: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42720); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 99: switch (HEAP8[i1 + 1 >> 0] | 0) { case 108: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42730); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 109: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42741); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 111: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42751); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 118: { i6 = i8 + 63 | 0; i5 = HEAP8[i6 >> 0] | 0; HEAP8[i6 >> 0] = 0; i7 = i1 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i7, i2, i8) | 0; HEAP8[i6 >> 0] = i5; if ((i2 | 0) == (i7 | 0)) break L1; i3 = HEAP32[i8 + 4 >> 2] | 0; if ((HEAP32[i8 >> 2] | 0) == (i3 | 0)) break L1; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3 + -24 | 0, 0, 42761) | 0; HEAP8[i8 + 60 >> 0] = 1; i1 = i2; break L1; } default: break L1; } case 100: switch (HEAP8[i1 + 1 >> 0] | 0) { case 97: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i7, 42771); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 101: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42789); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 108: { i2 = _malloc(16) | 0; HEAP32[i7 >> 2] = i2; HEAP32[i7 + 8 >> 2] = -2147483632; HEAP32[i7 + 4 >> 2] = 15; i3 = i2; i4 = 42799; i5 = i3 + 15 | 0; do { HEAP8[i3 >> 0] = HEAP8[i4 >> 0] | 0; i3 = i3 + 1 | 0; i4 = i4 + 1 | 0; } while ((i3 | 0) < (i5 | 0)); HEAP8[i2 + 15 >> 0] = 0; i3 = i7 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 118: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42815); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 86: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42825); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 101: switch (HEAP8[i1 + 1 >> 0] | 0) { case 111: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42836); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 79: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42846); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 113: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42857); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 103: switch (HEAP8[i1 + 1 >> 0] | 0) { case 101: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42868); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 116: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42879); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 105: { if ((HEAP8[i1 + 1 >> 0] | 0) != 120) break L1; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42889); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 108: switch (HEAP8[i1 + 1 >> 0] | 0) { case 101: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42900); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 105: { i7 = i1 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i7, i2, i8) | 0; if ((i2 | 0) == (i7 | 0)) break L1; i3 = HEAP32[i8 + 4 >> 2] | 0; if ((HEAP32[i8 >> 2] | 0) == (i3 | 0)) break L1; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3 + -24 | 0, 0, 42911) | 0; i1 = i2; break L1; } case 115: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42923); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 83: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i7, 42934); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 116: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42946); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 109: switch (HEAP8[i1 + 1 >> 0] | 0) { case 105: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42956); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 73: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42966); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 108: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42789); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 76: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42977); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 109: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 42988); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 110: switch (HEAP8[i1 + 1 >> 0] | 0) { case 97: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i7, 42999); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 101: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 43014); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 103: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 42956); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 116: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 43025); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 119: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i7, 43035); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 111: switch (HEAP8[i1 + 1 >> 0] | 0) { case 111: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 43048); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 114: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 43059); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 82: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 43069); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 112: switch (HEAP8[i1 + 1 >> 0] | 0) { case 109: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i7, 43080); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 108: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 43092); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 76: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 43102); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 112: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 43113); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 115: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 43092); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 116: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 43124); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 113: { if ((HEAP8[i1 + 1 >> 0] | 0) != 117) break L1; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 43135); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 114: switch (HEAP8[i1 + 1 >> 0] | 0) { case 109: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i7, 43145); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 77: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 43155); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 115: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i7, 43166); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } case 83: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i7, 43177); i2 = i8 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i6, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i8 + 12 | 0); i5 = i6 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i7); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i6); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i6); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i7); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i1 = i1 + 2 | 0; break L1; } default: break L1; } case 118: { if (((HEAP8[i1 + 1 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break L1; i7 = i1 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i7, i2, i8) | 0; if ((i2 | 0) == (i7 | 0)) break L1; i3 = HEAP32[i8 + 4 >> 2] | 0; if ((HEAP32[i8 >> 2] | 0) == (i3 | 0)) break L1; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3 + -24 | 0, 0, 42761) | 0; i1 = i2; break L1; } default: break L1; } while (0); while (0); STACKTOP = i9; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_118parse_builtin_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i2, i6) { i1 = i1 | 0; i2 = i2 | 0; i6 = i6 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i7 = i9 + 24 | 0; i8 = i9; L1 : do if ((i1 | 0) != (i2 | 0)) do switch (HEAP8[i1 >> 0] | 0) { case 118: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i8, 43892); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 119: { HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; HEAP8[i8 + 11 >> 0] = 7; HEAP8[i8 >> 0] = HEAP8[43503] | 0; HEAP8[i8 + 1 >> 0] = HEAP8[43504] | 0; HEAP8[i8 + 2 >> 0] = HEAP8[43505] | 0; HEAP8[i8 + 3 >> 0] = HEAP8[43506] | 0; HEAP8[i8 + 4 >> 0] = HEAP8[43507] | 0; HEAP8[i8 + 5 >> 0] = HEAP8[43508] | 0; HEAP8[i8 + 6 >> 0] = HEAP8[43509] | 0; HEAP8[i8 + 7 >> 0] = 0; i3 = i8 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 98: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i8, 43897); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 99: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i8, 43522); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 97: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i8, 43527); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 104: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i8, 43539); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 115: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i8, 43553); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 116: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i8, 43559); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 105: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj4EEERAT__Kc(i8, 43902); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 106: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i8, 43906); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 108: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i8, 43919); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 109: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i8, 43924); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 120: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i8, 43938); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 121: { i2 = _malloc(32) | 0; HEAP32[i8 >> 2] = i2; HEAP32[i8 + 8 >> 2] = -2147483616; HEAP32[i8 + 4 >> 2] = 18; i3 = i2; i4 = 43948; i5 = i3 + 18 | 0; do { HEAP8[i3 >> 0] = HEAP8[i4 >> 0] | 0; i3 = i3 + 1 | 0; i4 = i4 + 1 | 0; } while ((i3 | 0) < (i5 | 0)); HEAP8[i2 + 18 >> 0] = 0; i3 = i8 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 110: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i8, 43588); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 111: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i8, 43597); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 102: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i8, 43967); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 100: { HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; HEAP8[i8 + 11 >> 0] = 6; HEAP8[i8 >> 0] = HEAP8[43973] | 0; HEAP8[i8 + 1 >> 0] = HEAP8[43974] | 0; HEAP8[i8 + 2 >> 0] = HEAP8[43975] | 0; HEAP8[i8 + 3 >> 0] = HEAP8[43976] | 0; HEAP8[i8 + 4 >> 0] = HEAP8[43977] | 0; HEAP8[i8 + 5 >> 0] = HEAP8[43978] | 0; HEAP8[i8 + 6 >> 0] = 0; i3 = i8 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 101: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i8, 43980); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 103: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i8, 43992); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 122: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj4EEERAT__Kc(i8, 44003); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 1 | 0; break L1; } case 117: { i7 = i1 + 1 | 0; i8 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i7, i2, i6) | 0; i1 = (i8 | 0) == (i7 | 0) ? i1 : i8; break L1; } case 68: { i3 = i1 + 1 | 0; if ((i3 | 0) == (i2 | 0)) break L1; switch (HEAP8[i3 >> 0] | 0) { case 100: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i8, 44007); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 2 | 0; break L1; } case 101: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i8, 44017); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 2 | 0; break L1; } case 102: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i8, 44028); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 2 | 0; break L1; } case 104: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i8, 44038); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 2 | 0; break L1; } case 105: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i8, 44048); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 2 | 0; break L1; } case 115: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i8, 44057); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 2 | 0; break L1; } case 97: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i8, 44066); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 2 | 0; break L1; } case 110: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i8, 44071); i2 = i6 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i7, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i6 + 12 | 0); i5 = i7 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i8); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i7); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i8); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i1 = i1 + 2 | 0; break L1; } default: break L1; } } default: break L1; } while (0); while (0); STACKTOP = i9; return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i37, i38) { i37 = i37 | 0; i38 = i38 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i39 = 0, i40 = 0, i41 = 0; i39 = STACKTOP; STACKTOP = STACKTOP + 400 | 0; i41 = i39 + 384 | 0; i31 = i39 + 360 | 0; i40 = i39 + 372 | 0; i32 = i39 + 348 | 0; i33 = i39 + 336 | 0; i34 = i39 + 324 | 0; i35 = i39 + 312 | 0; i36 = i39 + 300 | 0; i20 = i39 + 288 | 0; i21 = i39 + 276 | 0; i22 = i39 + 264 | 0; i23 = i39 + 252 | 0; i24 = i39 + 240 | 0; i25 = i39 + 228 | 0; i26 = i39 + 216 | 0; i27 = i39 + 204 | 0; i28 = i39 + 192 | 0; i29 = i39 + 180 | 0; i30 = i39 + 168 | 0; i4 = i39 + 156 | 0; i5 = i39 + 144 | 0; i6 = i39 + 132 | 0; i7 = i39 + 120 | 0; i8 = i39 + 108 | 0; i9 = i39 + 96 | 0; i10 = i39 + 84 | 0; i11 = i39 + 72 | 0; i12 = i39 + 60 | 0; i13 = i39 + 48 | 0; i14 = i39 + 36 | 0; i15 = i39 + 24 | 0; i16 = i39 + 12 | 0; i17 = i39; i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i38, 0) | 0) | 0; i18 = _strchr(i1, 46) | 0; L1 : do if (!i18) do switch (HEAP8[i1 >> 0] | 0) { case 98: switch (HEAP8[i1 + 1 >> 0] | 0) { case 108: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeBlockERNS_7ElementE(i37, i38) | 0; break L1; } case 114: { if ((HEAP8[i1 + 2 >> 0] | 0) == 95 ? (HEAP8[i1 + 3 >> 0] | 0) == 116 : 0) { i1 = __ZN4wasm22SExpressionWasmBuilder14makeBreakTableERNS_7ElementE(i37, i38) | 0; break L1; } i1 = __ZN4wasm22SExpressionWasmBuilder9makeBreakERNS_7ElementE(i37, i38) | 0; break L1; } default: { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i4); ___cxa_throw(i3 | 0, 8, 154); } } case 99: { switch (HEAP8[i1 + 1 >> 0] | 0) { case 97: { i19 = 178; break; } case 117: { i1 = __ZN4wasm22SExpressionWasmBuilder8makeHostERNS_7ElementENS_6HostOpE(i37, i38, 1) | 0; break L1; } default: {} } if ((i19 | 0) == 178) { if ((i1 | 0) == (HEAP32[11446] | 0)) { i1 = __ZN4wasm22SExpressionWasmBuilder8makeCallERNS_7ElementE(i37, i38) | 0; break L1; } if ((i1 | 0) == (HEAP32[11447] | 0)) { i1 = __ZN4wasm22SExpressionWasmBuilder14makeCallImportERNS_7ElementE(i37, i38) | 0; break L1; } if ((i1 | 0) == (HEAP32[11448] | 0)) { i1 = __ZN4wasm22SExpressionWasmBuilder16makeCallIndirectERNS_7ElementE(i37, i38) | 0; break L1; } } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i5); ___cxa_throw(i3 | 0, 8, 154); } case 101: { if ((HEAP8[i1 + 1 >> 0] | 0) == 108) { i1 = __ZN4wasm22SExpressionWasmBuilder14makeThenOrElseERNS_7ElementE(i37, i38) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i6 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i6); ___cxa_throw(i3 | 0, 8, 154); } case 103: { switch (HEAP8[i1 + 1 >> 0] | 0) { case 101: { i19 = 196; break; } case 114: { i1 = __ZN4wasm22SExpressionWasmBuilder8makeHostERNS_7ElementENS_6HostOpE(i37, i38, 2) | 0; break L1; } default: {} } L50 : do if ((i19 | 0) == 196) switch (HEAP8[i1 + 4 >> 0] | 0) { case 108: { i1 = __ZN4wasm22SExpressionWasmBuilder12makeGetLocalERNS_7ElementE(i37, i38) | 0; break L1; } case 103: { i1 = __ZN4wasm22SExpressionWasmBuilder13makeGetGlobalERNS_7ElementE(i37, i38) | 0; break L1; } default: break L50; } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i7); ___cxa_throw(i3 | 0, 8, 154); } case 104: { if ((HEAP8[i1 + 1 >> 0] | 0) == 97) { i1 = __ZN4wasm22SExpressionWasmBuilder8makeHostERNS_7ElementENS_6HostOpE(i37, i38, 3) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i8); ___cxa_throw(i3 | 0, 8, 154); } case 105: { if ((HEAP8[i1 + 1 >> 0] | 0) == 102) { i1 = __ZN4wasm22SExpressionWasmBuilder6makeIfERNS_7ElementE(i37, i38) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i9); ___cxa_throw(i3 | 0, 8, 154); } case 108: { if ((HEAP8[i1 + 1 >> 0] | 0) == 111) { i1 = __ZN4wasm22SExpressionWasmBuilder8makeLoopERNS_7ElementE(i37, i38) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i10 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i10); ___cxa_throw(i3 | 0, 8, 154); } case 110: { if ((HEAP8[i1 + 1 >> 0] | 0) == 111) { i1 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i37 + 4 >> 2] | 0) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i11); ___cxa_throw(i3 | 0, 8, 154); } case 112: { if ((HEAP8[i1 + 1 >> 0] | 0) == 97) { i1 = __ZN4wasm22SExpressionWasmBuilder8makeHostERNS_7ElementENS_6HostOpE(i37, i38, 0) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i12 >> 2] = HEAP32[i2 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i12); ___cxa_throw(i3 | 0, 8, 154); } case 115: { L101 : do if ((HEAP8[i1 + 1 >> 0] | 0) == 101) { switch (HEAP8[i1 + 2 >> 0] | 0) { case 116: break; case 108: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeSelectERNS_7ElementE(i37, i38) | 0; break L1; } default: break L101; } switch (HEAP8[i1 + 4 >> 0] | 0) { case 108: { i1 = __ZN4wasm22SExpressionWasmBuilder12makeSetLocalERNS_7ElementE(i37, i38) | 0; break L1; } case 103: { i1 = __ZN4wasm22SExpressionWasmBuilder13makeSetGlobalERNS_7ElementE(i37, i38) | 0; break L1; } default: break L101; } } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i13 >> 2] = HEAP32[i2 >> 2]; HEAP32[i13 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i13 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i13); ___cxa_throw(i3 | 0, 8, 154); } case 114: { if ((HEAP8[i1 + 1 >> 0] | 0) == 101) { i1 = __ZN4wasm22SExpressionWasmBuilder10makeReturnERNS_7ElementE(i37, i38) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i14 >> 2] = HEAP32[i2 >> 2]; HEAP32[i14 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i14 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i14); ___cxa_throw(i3 | 0, 8, 154); } case 116: { if ((HEAP8[i1 + 1 >> 0] | 0) == 104) { i1 = __ZN4wasm22SExpressionWasmBuilder14makeThenOrElseERNS_7ElementE(i37, i38) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i15 >> 2] = HEAP32[i2 >> 2]; HEAP32[i15 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i15 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i15); ___cxa_throw(i3 | 0, 8, 154); } case 117: { if ((HEAP8[i1 + 1 >> 0] | 0) == 110) { i1 = __ZN10MixedArena5allocIN4wasm11UnreachableEEEPT_v(HEAP32[i37 + 4 >> 2] | 0) | 0; break L1; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i16 >> 2] = HEAP32[i2 >> 2]; HEAP32[i16 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i16 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i16); ___cxa_throw(i3 | 0, 8, 154); } default: { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i41, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i41, i1) | 0; HEAP32[i17 >> 2] = HEAP32[i2 >> 2]; HEAP32[i17 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i17 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i17); ___cxa_throw(i3 | 0, 8, 154); } } while (0); else { i3 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i37, i1, 0, 1) | 0; i1 = i41; i2 = i1 + 16 | 0; do { HEAP8[i1 >> 0] = 0; i1 = i1 + 1 | 0; } while ((i1 | 0) < (i2 | 0)); _strncpy(i41, i18 + 1 | 0, 15) | 0; L139 : do switch (HEAP8[i41 >> 0] | 0) { case 97: switch (HEAP8[i41 + 1 >> 0] | 0) { case 98: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 8 : 9, i3) | 0; break L139; } case 100: { if ((i3 | 0) != 1) if ((i3 | 0) == 2) i1 = 25; else i1 = (i3 | 0) == 3 ? 50 : 63; else i1 = 0; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, i1, i3) | 0; break L139; } case 110: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 1 ? 7 : 32, i3) | 0; break L139; } default: { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i31 >> 2] = HEAP32[i2 >> 2]; HEAP32[i31 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i31 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i31); ___cxa_throw(i3 | 0, 8, 154); } } case 99: { L160 : do switch (HEAP8[i41 + 1 >> 0] | 0) { case 101: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 10 : 11, i3) | 0; break L139; } case 108: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) != 1 & 1, i3) | 0; break L139; } case 111: { switch (HEAP8[i41 + 2 >> 0] | 0) { case 112: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 54 : 67, i3) | 0; break L139; } case 110: break; default: break L160; } switch (HEAP8[i41 + 3 >> 0] | 0) { case 118: break; case 115: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeConstERNS_7ElementENS_8WasmTypeE(i37, i38, i3) | 0; break L139; } default: break L160; } switch (HEAP8[i41 + 8 >> 0] | 0) { case 115: { i1 = (i3 | 0) == 3; i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 11 >> 0] | 0) == 51 ? (i1 ? 35 : 36) : i1 ? 39 : 40, i3) | 0; break L139; } case 117: { i1 = (i3 | 0) == 3; i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 11 >> 0] | 0) == 51 ? (i1 ? 37 : 38) : i1 ? 41 : 42, i3) | 0; break L139; } default: break L160; } } case 116: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 1 ? 2 : 3, i3) | 0; break L139; } default: {} } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i32 >> 2] = HEAP32[i2 >> 2]; HEAP32[i32 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i32 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i32); ___cxa_throw(i3 | 0, 8, 154); } case 100: { switch (HEAP8[i41 + 1 >> 0] | 0) { case 105: { i19 = 30; break; } case 101: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, 44, i3) | 0; break L139; } default: {} } L182 : do if ((i19 | 0) == 30) switch (HEAP8[i41 + 3 >> 0] | 0) { case 95: { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 4 >> 0] | 0) == 117 ? (i1 ? 4 : 29) : i1 ? 3 : 28, i3) | 0; break L139; } case 0: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 53 : 66, i3) | 0; break L139; } default: break L182; } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i33 >> 2] = HEAP32[i2 >> 2]; HEAP32[i33 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i33 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i33); ___cxa_throw(i3 | 0, 8, 154); } case 101: { switch (HEAP8[i41 + 1 >> 0] | 0) { case 113: { i19 = 39; break; } case 120: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 7 >> 0] | 0) == 117 ? 23 : 22, i3) | 0; break L139; } default: {} } L195 : do if ((i19 | 0) == 39) { switch (HEAP8[i41 + 2 >> 0] | 0) { case 0: break; case 122: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 1 ? 20 : 21, i3) | 0; break L139; } default: break L195; } if ((i3 | 0) != 1) if ((i3 | 0) == 2) i1 = 40; else i1 = (i3 | 0) == 3 ? 57 : 70; else i1 = 15; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, i1, i3) | 0; break L139; } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i34 >> 2] = HEAP32[i2 >> 2]; HEAP32[i34 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i34 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i34); ___cxa_throw(i3 | 0, 8, 154); } case 102: { if ((HEAP8[i41 + 1 >> 0] | 0) == 108) { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 12 : 13, i3) | 0; break L139; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i35 >> 2] = HEAP32[i2 >> 2]; HEAP32[i35 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i35 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i35); ___cxa_throw(i3 | 0, 8, 154); } case 103: { L218 : do switch (HEAP8[i41 + 1 >> 0] | 0) { case 116: switch (HEAP8[i41 + 2 >> 0] | 0) { case 95: { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 3 >> 0] | 0) == 117 ? (i1 ? 22 : 47) : i1 ? 21 : 46, i3) | 0; break L139; } case 0: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 61 : 74, i3) | 0; break L139; } default: break L218; } case 101: switch (HEAP8[i41 + 2 >> 0] | 0) { case 95: { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 3 >> 0] | 0) == 117 ? (i1 ? 24 : 49) : i1 ? 23 : 48, i3) | 0; break L139; } case 0: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 62 : 75, i3) | 0; break L139; } default: break L218; } default: {} } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i36 >> 2] = HEAP32[i2 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i36); ___cxa_throw(i3 | 0, 8, 154); } case 108: { L233 : do switch (HEAP8[i41 + 1 >> 0] | 0) { case 116: switch (HEAP8[i41 + 2 >> 0] | 0) { case 95: { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 3 >> 0] | 0) == 117 ? (i1 ? 18 : 43) : i1 ? 17 : 42, i3) | 0; break L139; } case 0: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 59 : 72, i3) | 0; break L139; } default: break L233; } case 101: switch (HEAP8[i41 + 2 >> 0] | 0) { case 95: { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 3 >> 0] | 0) == 117 ? (i1 ? 20 : 45) : i1 ? 19 : 44, i3) | 0; break L139; } case 0: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 60 : 73, i3) | 0; break L139; } default: break L233; } case 111: { i1 = __ZN4wasm22SExpressionWasmBuilder8makeLoadERNS_7ElementENS_8WasmTypeE(i37, i38, i3) | 0; break L139; } default: {} } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i20 >> 2] = HEAP32[i2 >> 2]; HEAP32[i20 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i20 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i20); ___cxa_throw(i3 | 0, 8, 154); } case 109: switch (HEAP8[i41 + 1 >> 0] | 0) { case 105: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 55 : 68, i3) | 0; break L139; } case 97: { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 56 : 69, i3) | 0; break L139; } case 117: { if ((i3 | 0) != 1) if ((i3 | 0) == 2) i1 = 27; else i1 = (i3 | 0) == 3 ? 52 : 65; else i1 = 2; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, i1, i3) | 0; break L139; } default: { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i21 >> 2] = HEAP32[i2 >> 2]; HEAP32[i21 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i21 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i21); ___cxa_throw(i3 | 0, 8, 154); } } case 110: { L263 : do if ((HEAP8[i41 + 1 >> 0] | 0) == 101) switch (HEAP8[i41 + 2 >> 0] | 0) { case 0: { if ((i3 | 0) != 1) if ((i3 | 0) == 2) i1 = 41; else i1 = (i3 | 0) == 3 ? 58 : 71; else i1 = 16; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, i1, i3) | 0; break L139; } case 97: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 16 : 17, i3) | 0; break L139; } case 103: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 6 : 7, i3) | 0; break L139; } default: break L263; } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i22 >> 2] = HEAP32[i2 >> 2]; HEAP32[i22 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i22 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i22); ___cxa_throw(i3 | 0, 8, 154); } case 111: { if ((HEAP8[i41 + 1 >> 0] | 0) == 114) { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 1 ? 8 : 33, i3) | 0; break L139; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i23 >> 2] = HEAP32[i2 >> 2]; HEAP32[i23 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i23 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i23); ___cxa_throw(i3 | 0, 8, 154); } case 112: switch (HEAP8[i41 + 1 >> 0] | 0) { case 114: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, 43, i3) | 0; break L139; } case 111: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 1 ? 4 : 5, i3) | 0; break L139; } default: { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i24 >> 2] = HEAP32[i2 >> 2]; HEAP32[i24 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i24 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i24); ___cxa_throw(i3 | 0, 8, 154); } } case 114: { L296 : do switch (HEAP8[i41 + 1 >> 0] | 0) { case 101: switch (HEAP8[i41 + 2 >> 0] | 0) { case 109: { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 4 >> 0] | 0) == 117 ? (i1 ? 6 : 31) : i1 ? 5 : 30, i3) | 0; break L139; } case 105: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 + -3 | 0) >>> 0 < 2 ? ((i3 | 0) == 3 ? 45 : 46) : (i3 | 0) == 1 ? 33 : 34, i3) | 0; break L139; } default: break L296; } case 111: { if ((HEAP8[i41 + 2 >> 0] | 0) == 116) { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 3 >> 0] | 0) == 108 ? (i1 ? 13 : 38) : i1 ? 14 : 39, i3) | 0; break L139; } break; } default: {} } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i25 >> 2] = HEAP32[i2 >> 2]; HEAP32[i25 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i25 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i25); ___cxa_throw(i3 | 0, 8, 154); } case 115: switch (HEAP8[i41 + 1 >> 0] | 0) { case 104: if ((HEAP8[i41 + 2 >> 0] | 0) == 108) { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 1 ? 10 : 35, i3) | 0; break L139; } else { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 4 >> 0] | 0) == 117 ? (i1 ? 11 : 36) : i1 ? 12 : 37, i3) | 0; break L139; } case 117: { if ((i3 | 0) != 1) if ((i3 | 0) == 2) i1 = 26; else i1 = (i3 | 0) == 3 ? 51 : 64; else i1 = 1; i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, i1, i3) | 0; break L139; } case 113: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 18 : 19, i3) | 0; break L139; } case 116: { i1 = __ZN4wasm22SExpressionWasmBuilder9makeStoreERNS_7ElementENS_8WasmTypeE(i37, i38, i3) | 0; break L139; } default: { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i26 >> 2] = HEAP32[i2 >> 2]; HEAP32[i26 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i26 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i26); ___cxa_throw(i3 | 0, 8, 154); } } case 116: { L327 : do if ((HEAP8[i41 + 1 >> 0] | 0) == 114) switch (HEAP8[i41 + 6 >> 0] | 0) { case 115: { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 9 >> 0] | 0) == 51 ? (i1 ? 25 : 26) : i1 ? 29 : 30, i3) | 0; break L139; } case 117: { i1 = (i3 | 0) == 1; i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (HEAP8[i41 + 9 >> 0] | 0) == 51 ? (i1 ? 27 : 28) : i1 ? 31 : 32, i3) | 0; break L139; } default: { if ((HEAP8[i41 + 2 >> 0] | 0) != 117) break L327; i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 3 ? 14 : 15, i3) | 0; break L139; } } while (0); i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i27 >> 2] = HEAP32[i2 >> 2]; HEAP32[i27 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i27 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i27); ___cxa_throw(i3 | 0, 8, 154); } case 119: { if ((HEAP8[i41 + 1 >> 0] | 0) == 114) { i1 = __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i37, i38, 24, i3) | 0; break L139; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i28 >> 2] = HEAP32[i2 >> 2]; HEAP32[i28 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i28 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i28); ___cxa_throw(i3 | 0, 8, 154); } case 120: { if ((HEAP8[i41 + 1 >> 0] | 0) == 111) { i1 = __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i37, i38, (i3 | 0) == 1 ? 9 : 34, i3) | 0; break L139; } i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i29 >> 2] = HEAP32[i2 >> 2]; HEAP32[i29 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i29 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i29); ___cxa_throw(i3 | 0, 8, 154); } default: { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i40, 17716, 9); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i40, i41) | 0; HEAP32[i30 >> 2] = HEAP32[i2 >> 2]; HEAP32[i30 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i30 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i3, i30); ___cxa_throw(i3 | 0, 8, 154); } } while (0); } while (0); STACKTOP = i39; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i53, i49, i50) { i53 = i53 | 0; i49 = i49 | 0; i50 = i50 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i51 = 0, i52 = 0, i54 = 0; i54 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i52 = i54 + 56 | 0; i48 = i54 + 40 | 0; i47 = i54 + 24 | 0; i44 = i54 + 8 | 0; i45 = i54; i7 = i49; L1 : do if ((i7 - i53 | 0) > 1) { i51 = (HEAP8[i53 >> 0] | 0) == 76 ? i53 + 1 | 0 : i53; i1 = HEAP8[i51 >> 0] | 0; switch (i1 << 24 >> 24 | 0) { case 78: { L43 : do if (i1 << 24 >> 24 == 78 & (i51 | 0) != (i49 | 0)) { i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i51 + 1 | 0, i49, i48) | 0; L45 : do if ((i1 | 0) != (i49 | 0)) { i3 = i50 + 52 | 0; HEAP32[i3 >> 2] = 0; switch (HEAP8[i1 >> 0] | 0) { case 82: { HEAP32[i3 >> 2] = 1; i1 = i1 + 1 | 0; break; } case 79: { HEAP32[i3 >> 2] = 2; i1 = i1 + 1 | 0; break; } default: {} } i43 = i50 + 4 | 0; i4 = HEAP32[i43 >> 2] | 0; i42 = HEAP32[i50 + 8 >> 2] | 0; i5 = i42; if (i4 >>> 0 < i42 >>> 0) { HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; HEAP32[i4 + 12 >> 2] = 0; HEAP32[i4 + 16 >> 2] = 0; HEAP32[i4 + 20 >> 2] = 0; i3 = 0; while (1) { if ((i3 | 0) == 3) break; HEAP32[i4 + (i3 << 2) >> 2] = 0; i3 = i3 + 1 | 0; } i4 = i4 + 12 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; i3 = 0; while (1) { if ((i3 | 0) == 3) break; HEAP32[i4 + (i3 << 2) >> 2] = 0; i3 = i3 + 1 | 0; } HEAP32[i43 >> 2] = (HEAP32[i43 >> 2] | 0) + 24; } else { i6 = HEAP32[i50 >> 2] | 0; i3 = (i4 - i6 | 0) / 24 | 0; i4 = i3 + 1 | 0; if (i4 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i50); i6 = (i5 - i6 | 0) / 24 | 0; i5 = i6 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i52, i6 >>> 0 < 89478485 ? (i5 >>> 0 < i4 >>> 0 ? i4 : i5) : 178956970, i3, i50 + 12 | 0); i5 = i52 + 8 | 0; i6 = HEAP32[i5 >> 2] | 0; HEAP32[i6 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; HEAP32[i6 + 8 >> 2] = 0; HEAP32[i6 + 12 >> 2] = 0; HEAP32[i6 + 16 >> 2] = 0; HEAP32[i6 + 20 >> 2] = 0; i3 = 0; while (1) { if ((i3 | 0) == 3) break; HEAP32[i6 + (i3 << 2) >> 2] = 0; i3 = i3 + 1 | 0; } i4 = i6 + 12 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; i3 = 0; while (1) { if ((i3 | 0) == 3) break; HEAP32[i4 + (i3 << 2) >> 2] = 0; i3 = i3 + 1 | 0; } HEAP32[i5 >> 2] = i6 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i50, i52); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i52); } if (((i7 - i1 | 0) > 1 ? (HEAP8[i1 >> 0] | 0) == 83 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == 116 : 0) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj((HEAP32[i43 >> 2] | 0) + -24 | 0, 42637, 3); i1 = i1 + 2 | 0; } if ((i1 | 0) == (i49 | 0)) { i2 = HEAP32[i43 >> 2] | 0; i1 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i1 | 0)) break L45; i52 = i2 + -24 | 0; HEAP32[i43 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i2 = HEAP32[i43 >> 2] | 0; } } i14 = i47 + 11 | 0; i15 = i47 + 4 | 0; i8 = i50 + 12 | 0; i16 = i50 + 16 | 0; i42 = i50 + 20 | 0; i17 = i50 + 24 | 0; i18 = i44 + 12 | 0; i19 = i44 + 4 | 0; i20 = i44 + 8 | 0; i21 = i50 + 28 | 0; i22 = i52 + 8 | 0; i23 = i44 + 12 | 0; i24 = i44 + 4 | 0; i25 = i44 + 8 | 0; i26 = i52 + 8 | 0; i27 = i52 + 11 | 0; i28 = i52 + 4 | 0; i29 = i52 + 11 | 0; i30 = i52 + 4 | 0; i31 = i44 + 12 | 0; i32 = i44 + 4 | 0; i33 = i44 + 8 | 0; i34 = i52 + 8 | 0; i35 = i44 + 12 | 0; i36 = i44 + 4 | 0; i37 = i44 + 8 | 0; i38 = i52 + 8 | 0; i39 = i52 + 11 | 0; i40 = i52 + 4 | 0; i41 = i44 + 12 | 0; i9 = i44 + 4 | 0; i10 = i44 + 8 | 0; i11 = i52 + 8 | 0; i12 = i52 + 11 | 0; i13 = i52 + 4 | 0; i7 = 0; L85 : while (1) { L87 : while (1) { i3 = HEAP8[i1 >> 0] | 0; if (i3 << 24 >> 24 == 69) { i46 = 116; break L85; } switch (i3 << 24 >> 24 | 0) { case 83: { i46 = 36; break L87; } case 84: { i46 = 54; break L87; } case 68: { i46 = 70; break L87; } case 73: break; case 76: { i1 = i1 + 1 | 0; if ((i1 | 0) == (i49 | 0)) break L45; else continue L87; } default: break L87; } i6 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i1, i49, i50) | 0; if ((i6 | 0) == (i1 | 0) | (i6 | 0) == (i49 | 0)) break L45; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, (HEAP32[i43 >> 2] | 0) + -24 | 0); i1 = HEAP32[i43 >> 2] | 0; i3 = i1 + -24 | 0; i4 = i1; while (1) { if ((i4 | 0) == (i3 | 0)) break; i5 = i4 + -24 | 0; HEAP32[i43 >> 2] = i5; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5); i4 = HEAP32[i43 >> 2] | 0; } i5 = HEAP8[i14 >> 0] | 0; i4 = i5 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i4 ? HEAP32[i47 >> 2] | 0 : i47, i4 ? HEAP32[i15 >> 2] | 0 : i5 & 255) | 0; i1 = (HEAP32[i43 >> 2] | 0) + -24 | 0; HEAP32[i45 >> 2] = HEAP32[i8 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i44, i1, i45); i1 = HEAP32[i42 >> 2] | 0; i5 = HEAP32[i17 >> 2] | 0; i4 = i5; if (i1 >>> 0 < i5 >>> 0) { HEAP32[i1 + 12 >> 2] = HEAP32[i18 >> 2]; HEAP32[i1 >> 2] = HEAP32[i44 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i19 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i20 >> 2]; HEAP32[i20 >> 2] = 0; HEAP32[i19 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i42 >> 2] = (HEAP32[i42 >> 2] | 0) + 16; } else { i5 = HEAP32[i16 >> 2] | 0; i1 = i1 - i5 >> 4; i3 = i1 + 1 | 0; if (i3 >>> 0 > 268435455) { i46 = 95; break L85; } i4 = i4 - i5 | 0; i5 = i4 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i52, i4 >> 4 >>> 0 < 134217727 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 268435455, i1, i21); i5 = HEAP32[i22 >> 2] | 0; HEAP32[i5 + 12 >> 2] = HEAP32[i18 >> 2]; HEAP32[i5 >> 2] = HEAP32[i44 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i19 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i20 >> 2]; HEAP32[i20 >> 2] = 0; HEAP32[i19 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i22 >> 2] = i5 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i16, i52); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i52); } __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i44); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); i1 = i6; } L103 : do if ((i46 | 0) == 36) { i46 = 0; i7 = i1 + 1 | 0; if ((i7 | 0) != (i49 | 0) ? (HEAP8[i7 >> 0] | 0) == 116 : 0) break; i6 = __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i1, i49, i50) | 0; if ((i6 | 0) == (i1 | 0) | (i6 | 0) == (i49 | 0)) break L45; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, (HEAP32[i43 >> 2] | 0) + -24 | 0); i4 = HEAP32[i43 >> 2] | 0; i1 = i4 + -24 | 0; i3 = i4; while (1) { if ((i3 | 0) == (i1 | 0)) break; i7 = i3 + -24 | 0; HEAP32[i43 >> 2] = i7; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i3 = HEAP32[i43 >> 2] | 0; } i3 = i4 + -48 | 0; i1 = HEAP8[i3 + 11 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i4 + -44 >> 2] | 0; else i1 = i1 & 255; if (!i1) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i3, i47); else { __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i52, 42641, i47); i1 = HEAP8[i29 >> 0] | 0; i7 = i1 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3, i7 ? HEAP32[i52 >> 2] | 0 : i52, i7 ? HEAP32[i30 >> 2] | 0 : i1 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52); i1 = (HEAP32[i43 >> 2] | 0) + -24 | 0; HEAP32[i45 >> 2] = HEAP32[i8 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i44, i1, i45); i1 = HEAP32[i42 >> 2] | 0; i7 = HEAP32[i17 >> 2] | 0; i4 = i7; if (i1 >>> 0 < i7 >>> 0) { HEAP32[i1 + 12 >> 2] = HEAP32[i31 >> 2]; HEAP32[i1 >> 2] = HEAP32[i44 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i32 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i33 >> 2]; HEAP32[i33 >> 2] = 0; HEAP32[i32 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i42 >> 2] = (HEAP32[i42 >> 2] | 0) + 16; } else { i5 = HEAP32[i16 >> 2] | 0; i1 = i1 - i5 >> 4; i3 = i1 + 1 | 0; if (i3 >>> 0 > 268435455) { i46 = 49; break L85; } i5 = i4 - i5 | 0; i7 = i5 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i52, i5 >> 4 >>> 0 < 134217727 ? (i7 >>> 0 < i3 >>> 0 ? i3 : i7) : 268435455, i1, i21); i7 = HEAP32[i34 >> 2] | 0; HEAP32[i7 + 12 >> 2] = HEAP32[i31 >> 2]; HEAP32[i7 >> 2] = HEAP32[i44 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i32 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i33 >> 2]; HEAP32[i33 >> 2] = 0; HEAP32[i32 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i34 >> 2] = i7 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i16, i52); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i52); } __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i44); } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); i7 = 1; i1 = i6; continue L85; } else if ((i46 | 0) == 54) { i46 = 0; i6 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i1, i49, i50) | 0; if ((i6 | 0) == (i1 | 0) | (i6 | 0) == (i49 | 0)) break L45; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, (HEAP32[i43 >> 2] | 0) + -24 | 0); i4 = HEAP32[i43 >> 2] | 0; i1 = i4 + -24 | 0; i3 = i4; while (1) { if ((i3 | 0) == (i1 | 0)) break; i7 = i3 + -24 | 0; HEAP32[i43 >> 2] = i7; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i3 = HEAP32[i43 >> 2] | 0; } i3 = i4 + -48 | 0; i1 = HEAP8[i3 + 11 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i4 + -44 >> 2] | 0; else i1 = i1 & 255; if (!i1) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i3, i47); else { __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i52, 42641, i47); i7 = HEAP8[i39 >> 0] | 0; i5 = i7 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3, i5 ? HEAP32[i52 >> 2] | 0 : i52, i5 ? HEAP32[i40 >> 2] | 0 : i7 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52); } i1 = (HEAP32[i43 >> 2] | 0) + -24 | 0; HEAP32[i45 >> 2] = HEAP32[i8 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i44, i1, i45); i1 = HEAP32[i42 >> 2] | 0; i7 = HEAP32[i17 >> 2] | 0; i4 = i7; if (i1 >>> 0 < i7 >>> 0) { HEAP32[i1 + 12 >> 2] = HEAP32[i35 >> 2]; HEAP32[i1 >> 2] = HEAP32[i44 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i36 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i37 >> 2]; HEAP32[i37 >> 2] = 0; HEAP32[i36 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i42 >> 2] = (HEAP32[i42 >> 2] | 0) + 16; } else { i5 = HEAP32[i16 >> 2] | 0; i1 = i1 - i5 >> 4; i3 = i1 + 1 | 0; if (i3 >>> 0 > 268435455) { i46 = 67; break L85; } i5 = i4 - i5 | 0; i7 = i5 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i52, i5 >> 4 >>> 0 < 134217727 ? (i7 >>> 0 < i3 >>> 0 ? i3 : i7) : 268435455, i1, i21); i7 = HEAP32[i38 >> 2] | 0; HEAP32[i7 + 12 >> 2] = HEAP32[i35 >> 2]; HEAP32[i7 >> 2] = HEAP32[i44 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i36 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i37 >> 2]; HEAP32[i37 >> 2] = 0; HEAP32[i36 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i38 >> 2] = i7 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i16, i52); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i52); } __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i44); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); i7 = 1; i1 = i6; continue L85; } else if ((i46 | 0) == 70) { i46 = 0; i3 = i1 + 1 | 0; if ((i3 | 0) != (i49 | 0)) switch (HEAP8[i3 >> 0] | 0) { case 84: case 116: break; default: break L103; } i6 = __ZN10__cxxabiv112_GLOBAL__N_114parse_decltypeINS0_2DbEEEPKcS4_S4_RT_(i1, i49, i50) | 0; if ((i6 | 0) == (i1 | 0) | (i6 | 0) == (i49 | 0)) break L45; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, (HEAP32[i43 >> 2] | 0) + -24 | 0); i4 = HEAP32[i43 >> 2] | 0; i1 = i4 + -24 | 0; i3 = i4; while (1) { if ((i3 | 0) == (i1 | 0)) break; i7 = i3 + -24 | 0; HEAP32[i43 >> 2] = i7; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i3 = HEAP32[i43 >> 2] | 0; } i3 = i4 + -48 | 0; i1 = HEAP8[i3 + 11 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i4 + -44 >> 2] | 0; else i1 = i1 & 255; if (!i1) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i3, i47); else { __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i52, 42641, i47); i7 = HEAP8[i12 >> 0] | 0; i5 = i7 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3, i5 ? HEAP32[i52 >> 2] | 0 : i52, i5 ? HEAP32[i13 >> 2] | 0 : i7 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52); } i1 = (HEAP32[i43 >> 2] | 0) + -24 | 0; HEAP32[i45 >> 2] = HEAP32[i8 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i44, i1, i45); i1 = HEAP32[i42 >> 2] | 0; i7 = HEAP32[i17 >> 2] | 0; i4 = i7; if (i1 >>> 0 < i7 >>> 0) { HEAP32[i1 + 12 >> 2] = HEAP32[i41 >> 2]; HEAP32[i1 >> 2] = HEAP32[i44 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 >> 2]; HEAP32[i10 >> 2] = 0; HEAP32[i9 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i42 >> 2] = (HEAP32[i42 >> 2] | 0) + 16; } else { i5 = HEAP32[i16 >> 2] | 0; i1 = i1 - i5 >> 4; i3 = i1 + 1 | 0; if (i3 >>> 0 > 268435455) { i46 = 85; break L85; } i5 = i4 - i5 | 0; i7 = i5 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i52, i5 >> 4 >>> 0 < 134217727 ? (i7 >>> 0 < i3 >>> 0 ? i3 : i7) : 268435455, i1, i21); i7 = HEAP32[i11 >> 2] | 0; HEAP32[i7 + 12 >> 2] = HEAP32[i41 >> 2]; HEAP32[i7 >> 2] = HEAP32[i44 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i10 >> 2]; HEAP32[i10 >> 2] = 0; HEAP32[i9 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i11 >> 2] = i7 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i16, i52); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i52); } __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i44); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); i7 = 1; i1 = i6; continue L85; } while (0); i6 = __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i49, i50) | 0; if ((i6 | 0) == (i1 | 0) | (i6 | 0) == (i49 | 0)) break L45; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i47, (HEAP32[i43 >> 2] | 0) + -24 | 0); i4 = HEAP32[i43 >> 2] | 0; i1 = i4 + -24 | 0; i3 = i4; while (1) { if ((i3 | 0) == (i1 | 0)) break; i7 = i3 + -24 | 0; HEAP32[i43 >> 2] = i7; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i7); i3 = HEAP32[i43 >> 2] | 0; } i3 = i4 + -48 | 0; i1 = HEAP8[i3 + 11 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i4 + -44 >> 2] | 0; else i1 = i1 & 255; if (!i1) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i3, i47); else { __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i52, 42641, i47); i7 = HEAP8[i27 >> 0] | 0; i5 = i7 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3, i5 ? HEAP32[i52 >> 2] | 0 : i52, i5 ? HEAP32[i28 >> 2] | 0 : i7 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52); } i1 = (HEAP32[i43 >> 2] | 0) + -24 | 0; HEAP32[i45 >> 2] = HEAP32[i8 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i44, i1, i45); i1 = HEAP32[i42 >> 2] | 0; i7 = HEAP32[i17 >> 2] | 0; i4 = i7; if (i1 >>> 0 < i7 >>> 0) { HEAP32[i1 + 12 >> 2] = HEAP32[i23 >> 2]; HEAP32[i1 >> 2] = HEAP32[i44 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i24 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i25 >> 2]; HEAP32[i25 >> 2] = 0; HEAP32[i24 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i42 >> 2] = (HEAP32[i42 >> 2] | 0) + 16; } else { i5 = HEAP32[i16 >> 2] | 0; i1 = i1 - i5 >> 4; i3 = i1 + 1 | 0; if (i3 >>> 0 > 268435455) { i46 = 112; break; } i5 = i4 - i5 | 0; i7 = i5 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i52, i5 >> 4 >>> 0 < 134217727 ? (i7 >>> 0 < i3 >>> 0 ? i3 : i7) : 268435455, i1, i21); i7 = HEAP32[i26 >> 2] | 0; HEAP32[i7 + 12 >> 2] = HEAP32[i23 >> 2]; HEAP32[i7 >> 2] = HEAP32[i44 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i24 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i25 >> 2]; HEAP32[i25 >> 2] = 0; HEAP32[i24 >> 2] = 0; HEAP32[i44 >> 2] = 0; HEAP32[i26 >> 2] = i7 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i16, i52); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i52); } __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i44); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i47); i7 = 1; i1 = i6; } if ((i46 | 0) == 49) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i16); else if ((i46 | 0) == 67) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i16); else if ((i46 | 0) == 85) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i16); else if ((i46 | 0) == 95) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i16); else if ((i46 | 0) == 112) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i16); else if ((i46 | 0) == 116) { i1 = i1 + 1 | 0; HEAP32[i50 + 48 >> 2] = HEAP32[i48 >> 2]; L192 : do if (i7 ? (i2 = HEAP32[i42 >> 2] | 0, (HEAP32[i50 + 16 >> 2] | 0) != (i2 | 0)) : 0) { i3 = i2 + -16 | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break L192; i52 = i2 + -16 | 0; HEAP32[i42 >> 2] = i52; __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i52); i2 = HEAP32[i42 >> 2] | 0; } } while (0); break L43; } } while (0); i1 = i51; } else i1 = i51; while (0); i1 = (i1 | 0) == (i51 | 0) ? i53 : i1; break L1; } case 90: { L203 : do if (((i1 << 24 >> 24 == 90 & (i51 | 0) != (i49 | 0) ? (i48 = i51 + 1 | 0, i3 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i48, i49, i50) | 0, !((i3 | 0) == (i48 | 0) | (i3 | 0) == (i49 | 0))) : 0) ? (HEAP8[i3 >> 0] | 0) == 69 : 0) ? (i4 = i3 + 1 | 0, (i4 | 0) != (i49 | 0)) : 0) switch (HEAP8[i4 >> 0] | 0) { case 115: { i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_discriminatorEPKcS2_(i3 + 2 | 0, i49) | 0; i2 = HEAP32[i50 + 4 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i2 | 0)) break L203; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 42644) | 0; break L203; } case 100: { i1 = i3 + 2 | 0; if ((i1 | 0) == (i49 | 0)) { i1 = i51; break L203; } i1 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1, i49) | 0; if ((i1 | 0) == (i49 | 0)) { i1 = i51; break L203; } if ((HEAP8[i1 >> 0] | 0) != 95) { i1 = i51; break L203; } i48 = i1 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i48, i49, i50) | 0; i5 = i50 + 4 | 0; if ((i1 | 0) == (i48 | 0)) { i2 = HEAP32[i5 >> 2] | 0; i1 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i1 | 0)) { i1 = i51; break L203; } i52 = i2 + -24 | 0; HEAP32[i5 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i2 = HEAP32[i5 >> 2] | 0; } } i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i51; break L203; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i52, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i50 = i4 + -24 | 0; HEAP32[i5 >> 2] = i50; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i50); i4 = HEAP32[i5 >> 2] | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 42641) | 0; i50 = HEAP8[i52 + 11 >> 0] | 0; i49 = i50 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i5 >> 2] | 0) + -24 | 0, i49 ? HEAP32[i52 >> 2] | 0 : i52, i49 ? HEAP32[i52 + 4 >> 2] | 0 : i50 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52); break L203; } default: { i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i4, i49, i50) | 0; if ((i1 | 0) == (i4 | 0)) { i1 = i50 + 4 | 0; i3 = HEAP32[i1 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) { i1 = i51; break L203; } i52 = i3 + -24 | 0; HEAP32[i1 >> 2] = i52; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i52); i3 = HEAP32[i1 >> 2] | 0; } } i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_discriminatorEPKcS2_(i1, i49) | 0; i5 = i50 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L203; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i52, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i50 = i4 + -24 | 0; HEAP32[i5 >> 2] = i50; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i50); i4 = HEAP32[i5 >> 2] | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 42641) | 0; i50 = HEAP8[i52 + 11 >> 0] | 0; i49 = i50 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i5 >> 2] | 0) + -24 | 0, i49 ? HEAP32[i52 >> 2] | 0 : i52, i49 ? HEAP32[i52 + 4 >> 2] | 0 : i50 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52); break L203; } } else i1 = i51; while (0); i1 = (i1 | 0) == (i51 | 0) ? i53 : i1; break L1; } default: { do if ((i7 - i51 | 0) > 1) { if (i1 << 24 >> 24 == 83 ? (HEAP8[i51 + 1 >> 0] | 0) == 116 : 0) { i1 = i51 + 2 | 0; if ((i1 | 0) == (i49 | 0)) { i3 = 0; i2 = i49; } else { i3 = 0; i2 = (HEAP8[i1 >> 0] | 0) == 76 ? i51 + 3 | 0 : i1; } } else { i3 = 1; i2 = i51; } i1 = __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i2, i49, i50) | 0; i2 = (i1 | 0) == (i2 | 0); if (i3 | i2) i1 = i2 ? i51 : i1; else { i2 = HEAP32[i50 + 4 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i2 | 0)) break; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 42661) | 0; } if ((i1 | 0) != (i51 | 0)) { if ((i1 | 0) == (i49 | 0)) { i1 = i49; break L1; } if ((HEAP8[i1 >> 0] | 0) != 73) break L1; i7 = i50 + 4 | 0; i2 = HEAP32[i7 >> 2] | 0; if ((HEAP32[i50 >> 2] | 0) == (i2 | 0)) { i1 = i53; break L1; } i6 = i50 + 16 | 0; HEAP32[i47 >> 2] = HEAP32[i50 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i48, i2 + -24 | 0, i47); i2 = i50 + 20 | 0; i3 = HEAP32[i2 >> 2] | 0; i51 = HEAP32[i50 + 24 >> 2] | 0; i5 = i51; do if (i3 >>> 0 >= i51 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i3 - i4 >> 4; i3 = i2 + 1 | 0; if (i3 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); else { i47 = i5 - i4 | 0; i51 = i47 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i52, i47 >> 4 >>> 0 < 134217727 ? (i51 >>> 0 < i3 >>> 0 ? i3 : i51) : 268435455, i2, i50 + 28 | 0); i51 = i52 + 8 | 0; i47 = HEAP32[i51 >> 2] | 0; HEAP32[i47 + 12 >> 2] = HEAP32[i48 + 12 >> 2]; HEAP32[i47 >> 2] = HEAP32[i48 >> 2]; i46 = i48 + 4 | 0; HEAP32[i47 + 4 >> 2] = HEAP32[i46 >> 2]; i45 = i48 + 8 | 0; HEAP32[i47 + 8 >> 2] = HEAP32[i45 >> 2]; HEAP32[i45 >> 2] = 0; HEAP32[i46 >> 2] = 0; HEAP32[i48 >> 2] = 0; HEAP32[i51 >> 2] = i47 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i6, i52); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i52); break; } } else { HEAP32[i3 + 12 >> 2] = HEAP32[i48 + 12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i48 >> 2]; i51 = i48 + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i51 >> 2]; i47 = i48 + 8 | 0; HEAP32[i3 + 8 >> 2] = HEAP32[i47 >> 2]; HEAP32[i47 >> 2] = 0; HEAP32[i51 >> 2] = 0; HEAP32[i48 >> 2] = 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i48); i4 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i1, i49, i50) | 0; if ((i4 | 0) == (i1 | 0)) { i1 = i53; break L1; } i1 = HEAP32[i7 >> 2] | 0; if (((i1 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i53; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i52, i1 + -24 | 0); i1 = HEAP32[i7 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i53 = i3 + -24 | 0; HEAP32[i7 >> 2] = i53; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i53); i3 = HEAP32[i7 >> 2] | 0; } i53 = HEAP8[i52 + 11 >> 0] | 0; i51 = i53 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i51 ? HEAP32[i52 >> 2] | 0 : i52, i51 ? HEAP32[i52 + 4 >> 2] | 0 : i53 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52); i1 = i4; break L1; } } while (0); i2 = __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i51, i49, i50) | 0; if ((i2 | 0) == (i51 | 0) | (i2 | 0) == (i49 | 0)) { i1 = i53; break L1; } if ((HEAP8[i2 >> 0] | 0) != 73) { i1 = i53; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i2, i49, i50) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i53; break L1; } i5 = i50 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i50 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i53; break L1; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i52, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i53 = i4 + -24 | 0; HEAP32[i5 >> 2] = i53; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i53); i4 = HEAP32[i5 >> 2] | 0; } i53 = HEAP8[i52 + 11 >> 0] | 0; i51 = i53 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -48 | 0, i51 ? HEAP32[i52 >> 2] | 0 : i52, i51 ? HEAP32[i52 + 4 >> 2] | 0 : i53 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i52); break L1; } } } else i1 = i53; while (0); STACKTOP = i54; return i1 | 0; } function __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i67, i3) { i67 = i67 | 0; i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i52 = 0, i53 = 0, i54 = 0, i55 = 0, i56 = 0, i57 = 0, i58 = 0, i59 = 0, i60 = 0, i61 = 0, i62 = 0, i63 = 0, i64 = 0, i65 = 0, i66 = 0, i68 = 0, i69 = 0, i70 = 0, i71 = 0, i72 = 0, i73 = 0, i74 = 0, i75 = 0, i76 = 0, i77 = 0, i78 = 0, i79 = 0; i79 = STACKTOP; STACKTOP = STACKTOP + 352 | 0; i69 = i79 + 312 | 0; i77 = i79 + 284 | 0; i76 = i79 + 252 | 0; i4 = i79 + 180 | 0; i50 = i79 + 172 | 0; i54 = i79 + 148 | 0; i73 = i79 + 140 | 0; i74 = i79 + 124 | 0; i2 = i79 + 104 | 0; i75 = i79 + 88 | 0; i55 = i79 + 280 | 0; i36 = i79 + 276 | 0; i37 = i79 + 272 | 0; i38 = i79 + 268 | 0; i39 = i79 + 264 | 0; i70 = i79 + 72 | 0; i40 = i79 + 248 | 0; i41 = i79 + 244 | 0; i42 = i79 + 240 | 0; i43 = i79 + 236 | 0; i44 = i79 + 232 | 0; i45 = i79 + 228 | 0; i46 = i79 + 224 | 0; i47 = i79 + 220 | 0; i48 = i79 + 216 | 0; i49 = i79 + 212 | 0; i56 = i79 + 200 | 0; i57 = i79 + 196 | 0; i58 = i79 + 184 | 0; i59 = i79 + 176 | 0; i60 = i79 + 160 | 0; i61 = i79 + 156 | 0; i51 = i79 + 152 | 0; i52 = i79 + 144 | 0; i53 = i79 + 136 | 0; i62 = i79 + 112 | 0; i63 = i79 + 100 | 0; i64 = i79 + 84 | 0; i65 = i79 + 60 | 0; i66 = i79 + 56 | 0; i71 = i79 + 52 | 0; i72 = i79 + 48 | 0; i1 = i79; i78 = i79 + 4 | 0; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45036) | 0)) ___assert_fail(11724, 11743, 450, 11758); i68 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 0) | 0; HEAP32[i4 >> 2] = HEAP32[i68 >> 2]; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 45040) | 0)) ___assert_fail(11769, 11743, 452, 11758); i68 = __ZN6cashew3RefixEj(i4, 3) | 0; HEAP32[i50 >> 2] = HEAP32[i68 >> 2]; do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i50, 0) | 0, 0) | 0, 45048) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i50, 0) | 0, 1) | 0, 0) | 0, 45132) | 0 : 0) { i68 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i50, 0) | 0, 1) | 0, 1) | 0; i68 = __ZN6cashew5Value10getIStringEv(HEAP32[i68 >> 2] | 0) | 0; __ZN6cashew7IString3setEPKcb(i69, 34839, 1); if ((HEAP32[i68 >> 2] | 0) != (HEAP32[i69 >> 2] | 0) ? (i68 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i50, 0) | 0, 1) | 0, 1) | 0, i68 = __ZN6cashew5Value10getIStringEv(HEAP32[i68 >> 2] | 0) | 0, __ZN6cashew7IString3setEPKcb(i77, 11793, 1), (HEAP32[i68 >> 2] | 0) != (HEAP32[i77 >> 2] | 0)) : 0) break; HEAP32[i54 >> 2] = i67; i35 = i67 + 39 | 0; if (HEAP8[i35 >> 0] | 0) { i3 = 0; i4 = 1; while (1) { if (i4 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i50 >> 2] | 0) | 0) >>> 0) break; i3 = ((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i50, i4) | 0, 0) | 0, 45040) | 0) & 1) + i3 | 0; i4 = i4 + 1 | 0; } i34 = __Znwj(132) | 0; __ZN4wasm34OptimizingIncrementalModuleBuilderC2EPNS_6ModuleEj(i34, HEAP32[i67 >> 2] | 0, i3); i68 = i67 + 12 | 0; i3 = HEAP32[i68 >> 2] | 0; HEAP32[i68 >> 2] = i34; if (i3) { __ZN4wasm34OptimizingIncrementalModuleBuilderD2Ev(i3); __ZdlPv(i3); i68 = i67; } else i68 = i67; } else i68 = i67; i34 = i67 + 12 | 0; i27 = i74 + 4 | 0; i28 = i74 + 8 | 0; i29 = i74 + 4 | 0; i22 = i67 + 100 | 0; i23 = i67 + 104 | 0; i30 = i67 + 72 | 0; i31 = i67 + 52 | 0; i32 = i67 + 56 | 0; i33 = i76 + 4 | 0; i24 = i76 + 5 | 0; i25 = i76 + 8 | 0; i26 = i67 + 24 | 0; i21 = 1; i3 = 0; i15 = 0; i16 = 0; i6 = 0; i10 = 0; i9 = 0; i17 = 0; i18 = 0; i11 = 0; i12 = 0; i13 = 0; i14 = 0; L22 : while (1) { if (i21 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i50 >> 2] | 0) | 0) >>> 0) { i3 = 19; break; } i20 = __ZN6cashew3RefixEj(i50, i21) | 0; HEAP32[i73 >> 2] = HEAP32[i20 >> 2]; L25 : do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i73, 0) | 0, 45060) | 0)) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i73, 0) | 0, 45040) | 0) { HEAP32[i51 >> 2] = HEAP32[i73 >> 2]; HEAP32[i69 >> 2] = HEAP32[i51 >> 2]; i4 = __ZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefE(i67, i69) | 0; if (!(HEAP8[i35 >> 0] | 0)) { __ZN4wasm6Module11addFunctionEPNS_8FunctionE(HEAP32[i68 >> 2] | 0, i4); i4 = i15; i8 = i17; i7 = i18; i5 = i14; break; } else { __ZN4wasm34OptimizingIncrementalModuleBuilder11addFunctionEPNS_8FunctionE(HEAP32[i34 >> 2] | 0, i4); i4 = i15; i8 = i17; i7 = i18; i5 = i14; break; } } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i73, 0) | 0, 45076) | 0) { i4 = __ZN6cashew3RefixEj(i73, 1) | 0; HEAP32[i77 >> 2] = HEAP32[i4 >> 2]; i4 = __ZN6cashew3RefixEj(i77, 1) | 0; i4 = HEAP32[i4 >> 2] | 0; HEAP32[i76 >> 2] = i4; HEAP32[i27 >> 2] = 0; HEAP32[i28 >> 2] = 0; HEAP32[i74 >> 2] = i29; i8 = 0; while (1) { if (i8 >>> 0 >= (__ZN6cashew5Value4sizeEv(i4) | 0) >>> 0) break; i5 = __ZN6cashew3RefixEj(i76, i8) | 0; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; i5 = __ZN6cashew3RefixEj(i2, 0) | 0; i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0; i5 = HEAP32[i5 >> 2] | 0; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i2, 1) | 0, 0) | 0, 45056) | 0)) { i3 = 113; break L22; } i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i2, 1) | 0, 1) | 0; i4 = __ZN6cashew5Value10getIStringEv(HEAP32[i4 >> 2] | 0) | 0; i4 = HEAP32[i4 >> 2] | 0; __ZN6cashew7IString3setEPKcb(i69, 12371, 0); i7 = i5; do if ((i7 | 0) == (HEAP32[i69 >> 2] | 0)) { i20 = HEAP32[i68 >> 2] | 0; HEAP32[i52 >> 2] = i4; HEAP32[i69 >> 2] = HEAP32[i52 >> 2]; if (__ZN4wasm6Module13checkFunctionENS_4NameE(i20, i69) | 0) { i3 = 116; break L22; } } else { do if ((i7 | 0) == (HEAP32[11289] | 0)) HEAP32[i22 >> 2] = i4; else { if ((i7 | 0) != (HEAP32[11287] | 0)) break; HEAP32[i23 >> 2] = i4; } while (0); i20 = HEAP32[i68 >> 2] | 0; HEAP32[i53 >> 2] = i4; HEAP32[i69 >> 2] = HEAP32[i53 >> 2]; if (!(__ZN4wasm6Module13checkFunctionENS_4NameE(i20, i69) | 0)) { i3 = 122; break L22; } HEAP32[i69 >> 2] = i5; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i74, i69) | 0)) { i19 = __Znwj(8) | 0; HEAP32[i19 >> 2] = i5; HEAP32[i19 + 4 >> 2] = i4; __ZN4wasm6Module9addExportEPNS_6ExportE(HEAP32[i68 >> 2] | 0, i19); HEAP32[i69 >> 2] = i5; i20 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i74, i69) | 0; HEAP32[i20 >> 2] = i19; break; } else { HEAP32[i69 >> 2] = i5; i20 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i74, i69) | 0; HEAP32[(HEAP32[i20 >> 2] | 0) + 4 >> 2] = i4; break; } } while (0); i8 = i8 + 1 | 0; i4 = HEAP32[i76 >> 2] | 0; } __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEED2Ev(i74); i4 = i15; i8 = i17; i7 = i18; i5 = i14; } else { i4 = i15; i8 = i17; i7 = i18; i5 = i14; } } else { i20 = 0; i4 = i15; i15 = i10; i19 = i9; while (1) { i10 = __ZN6cashew3RefixEj(i73, 1) | 0; if (i20 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i10 >> 2] | 0) | 0) >>> 0) { i10 = i15; i9 = i19; i8 = i17; i7 = i18; i5 = i14; break L25; } i10 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i73, 1) | 0, i20) | 0; HEAP32[i74 >> 2] = HEAP32[i10 >> 2]; i10 = __ZN6cashew3RefixEj(i74, 0) | 0; i10 = __ZN6cashew5Value10getIStringEv(HEAP32[i10 >> 2] | 0) | 0; HEAP32[i2 >> 2] = HEAP32[i10 >> 2]; i10 = __ZN6cashew3RefixEj(i74, 1) | 0; HEAP32[i75 >> 2] = HEAP32[i10 >> 2]; do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 0) | 0, 45112) | 0) { i10 = __ZN6cashew3RefixEj(i75, 1) | 0; i10 = __ZN6cashew5Value9getNumberEv(HEAP32[i10 >> 2] | 0) | 0; if (!(+HEAPF64[i10 >> 3] == 0.0)) { i3 = 24; break L22; } HEAP32[i55 >> 2] = HEAP32[i2 >> 2]; HEAP32[i36 >> 2] = 0; HEAP32[i37 >> 2] = 0; HEAP32[i76 >> 2] = HEAP32[i55 >> 2]; HEAP32[i77 >> 2] = HEAP32[i36 >> 2]; HEAP32[i69 >> 2] = HEAP32[i37 >> 2]; __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i67, i76, 1, 0, i77, i69); i5 = i16; i7 = i15; i8 = i19; i9 = i17; i10 = i18; } else { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 0) | 0, 45072) | 0) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 1) | 0, 45200) | 0)) { i3 = 30; break L22; } if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i75, 3) | 0, 0) | 0, 45112) | 0)) { i3 = 30; break L22; } i10 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i75, 3) | 0, 1) | 0; i10 = __ZN6cashew5Value9getNumberEv(HEAP32[i10 >> 2] | 0) | 0; if (!(+HEAPF64[i10 >> 3] == 0.0)) { i3 = 30; break L22; } i5 = __ZN6cashew3RefixEj(i75, 2) | 0; i5 = HEAP32[i5 >> 2] | 0; HEAP32[i38 >> 2] = HEAP32[i2 >> 2]; HEAP32[i39 >> 2] = i5; HEAP32[i77 >> 2] = HEAP32[i38 >> 2]; HEAP32[i69 >> 2] = HEAP32[i39 >> 2]; __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i54, i77, i69, 1); i5 = i16; i7 = i15; i8 = i19; i9 = i17; i10 = i18; break; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 0) | 0, 45160) | 0) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 1) | 0, 45192) | 0)) { i3 = 34; break L22; } i10 = __ZN6cashew3RefixEj(i75, 2) | 0; HEAP32[i70 >> 2] = HEAP32[i10 >> 2]; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i70, 0) | 0, 45112) | 0) { i10 = __ZN6cashew3RefixEj(i70, 1) | 0; i10 = __ZN6cashew5Value9getNumberEv(HEAP32[i10 >> 2] | 0) | 0; if (!(+HEAPF64[i10 >> 3] == 0.0)) { i3 = 37; break L22; } HEAP32[i40 >> 2] = HEAP32[i2 >> 2]; HEAP32[i41 >> 2] = 0; HEAP32[i42 >> 2] = 0; HEAP32[i76 >> 2] = HEAP32[i40 >> 2]; HEAP32[i77 >> 2] = HEAP32[i41 >> 2]; HEAP32[i69 >> 2] = HEAP32[i42 >> 2]; __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i67, i76, 4, 0, i77, i69); } else { HEAP32[i43 >> 2] = HEAP32[i2 >> 2]; HEAP32[i44 >> 2] = HEAP32[i70 >> 2]; HEAP32[i77 >> 2] = HEAP32[i43 >> 2]; HEAP32[i69 >> 2] = HEAP32[i44 >> 2]; __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i54, i77, i69, 4); } i5 = i16; i7 = i15; i8 = i19; i9 = i17; i10 = i18; break; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 0) | 0, 45784) | 0) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i75, 1) | 0, 0) | 0, 45056) | 0)) { i3 = 46; break L22; } if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i75, 1) | 0, 1) | 0, i30) | 0)) { i3 = 46; break L22; } if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i75, 2) | 0, 0) | 0, 0) | 0, 45112) | 0)) { i3 = 46; break L22; } i10 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i75, 2) | 0, 0) | 0, 1) | 0; i10 = __ZN6cashew5Value9getNumberEv(HEAP32[i10 >> 2] | 0) | 0; if (!(+HEAPF64[i10 >> 3] == 0.0)) { i3 = 46; break L22; } HEAP32[i45 >> 2] = HEAP32[i2 >> 2]; HEAP32[i46 >> 2] = 0; HEAP32[i47 >> 2] = 0; HEAP32[i76 >> 2] = HEAP32[i45 >> 2]; HEAP32[i77 >> 2] = HEAP32[i46 >> 2]; HEAP32[i69 >> 2] = HEAP32[i47 >> 2]; __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i67, i76, 3, 0, i77, i69); i5 = i16; i7 = i15; i8 = i19; i9 = i17; i10 = i18; break; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 0) | 0, 45352) | 0) { do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i75, 1) | 0, 0) | 0, 45056) | 0) { i10 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i75, 1) | 0, 1) | 0; i10 = __ZN6cashew5Value10getIStringEv(HEAP32[i10 >> 2] | 0) | 0; i10 = HEAP32[i10 >> 2] | 0; i5 = __ZN6cashew3RefixEj(i75, 2) | 0; i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0; if ((i10 | 0) != (HEAP32[11382] | 0)) { i7 = i15; i8 = i19; i9 = i17; i10 = i18; break; } i5 = HEAP32[i5 >> 2] | 0; if ((i5 | 0) == (HEAP32[11388] | 0)) { i7 = i15; i8 = i19; i9 = i17; i10 = i18; i14 = HEAP32[i2 >> 2] | 0; break; } if ((i5 | 0) == (HEAP32[11389] | 0)) { i7 = i15; i8 = i19; i9 = i17; i10 = i18; i13 = HEAP32[i2 >> 2] | 0; break; } if ((i5 | 0) == (HEAP32[11390] | 0)) { i7 = i15; i8 = i19; i9 = i17; i10 = i18; i12 = HEAP32[i2 >> 2] | 0; break; } if ((i5 | 0) == (HEAP32[11391] | 0)) { i7 = i15; i8 = i19; i9 = i17; i10 = i18; i11 = HEAP32[i2 >> 2] | 0; break; } if ((i5 | 0) == (HEAP32[11392] | 0)) { i7 = i15; i8 = i19; i9 = i17; i10 = HEAP32[i2 >> 2] | 0; break; } if ((i5 | 0) == (HEAP32[11393] | 0)) { i7 = i15; i8 = i19; i9 = HEAP32[i2 >> 2] | 0; i10 = i18; break; } if ((i5 | 0) == (HEAP32[11394] | 0)) { i7 = i15; i8 = HEAP32[i2 >> 2] | 0; i9 = i17; i10 = i18; break; } else { i7 = (i5 | 0) == (HEAP32[11395] | 0) ? HEAP32[i2 >> 2] | 0 : i15; i8 = i19; i9 = i17; i10 = i18; break; } } else { i7 = i15; i8 = i19; i9 = i17; i10 = i18; } while (0); HEAP32[i48 >> 2] = HEAP32[i2 >> 2]; HEAP32[i49 >> 2] = HEAP32[i75 >> 2]; HEAP32[i77 >> 2] = HEAP32[i48 >> 2]; HEAP32[i69 >> 2] = HEAP32[i49 >> 2]; __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i54, i77, i69, 0); i5 = i16; break; } if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 0) | 0, 45360) | 0)) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 0) | 0, 45364) | 0)) { i3 = 102; break L22; } i10 = HEAP32[i68 >> 2] | 0; i10 = (HEAP32[i10 + 64 >> 2] | 0) - (HEAP32[i10 + 60 >> 2] | 0) >> 2; i5 = __ZNSt3__23mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS7_(i26, i2) | 0; HEAP32[i5 >> 2] = i10; i5 = __ZN6cashew3RefixEj(i75, 1) | 0; i5 = HEAP32[i5 >> 2] | 0; HEAP32[i69 >> 2] = i5; i10 = 0; while (1) { if (i10 >>> 0 >= (__ZN6cashew5Value4sizeEv(i5) | 0) >>> 0) break; i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i69, i10) | 0, 1) | 0; i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0; i5 = HEAP32[i5 >> 2] | 0; i7 = HEAP32[i68 >> 2] | 0; HEAP32[i77 >> 2] = i5; i8 = i7 + 64 | 0; i9 = HEAP32[i8 >> 2] | 0; if (i9 >>> 0 < (HEAP32[i7 + 68 >> 2] | 0) >>> 0) { HEAP32[i9 >> 2] = i5; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4; } else __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i7 + 60 | 0, i77); i10 = i10 + 1 | 0; i5 = HEAP32[i69 >> 2] | 0; } i5 = i16; i7 = i15; i8 = i19; i9 = i17; i10 = i18; break; } i16 = __ZN6cashew3RefixEj(i75, 1) | 0; HEAP32[i75 >> 2] = HEAP32[i16 >> 2]; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i75, 0) | 0, 45784) | 0)) { i3 = 69; break L22; } i16 = __ZN6cashew3RefixEj(i75, 1) | 0; HEAP32[i77 >> 2] = HEAP32[i16 >> 2]; do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i77, 0) | 0, 45352) | 0) { i4 = __ZN6cashew3RefixEj(i77, 2) | 0; i4 = __ZN6cashew5Value10getIStringEv(HEAP32[i4 >> 2] | 0) | 0; i4 = HEAP32[i4 >> 2] | 0; i3 = i4; if ((i3 | 0) == (HEAP32[11388] | 0)) { i3 = 1; i4 = 0; i5 = 1; i6 = 1; break; } if ((i3 | 0) == (HEAP32[11389] | 0)) { i3 = 2; i4 = 0; i5 = 1; i6 = 1; break; } if ((i3 | 0) == (HEAP32[11390] | 0)) { i3 = 4; i4 = 0; i5 = 1; i6 = 1; break; } if ((i3 | 0) == (HEAP32[11391] | 0)) { i3 = 1; i4 = 0; i5 = 0; i6 = 1; break; } if ((i3 | 0) == (HEAP32[11392] | 0)) { i3 = 2; i4 = 0; i5 = 0; i6 = 1; break; } if ((i3 | 0) == (HEAP32[11393] | 0)) { i3 = 4; i4 = 0; i5 = 0; i6 = 1; break; } if ((i3 | 0) == (HEAP32[11394] | 0)) { i3 = 4; i4 = 2; i5 = 1; i6 = 0; break; } if ((i3 | 0) == (HEAP32[11395] | 0)) { i3 = 8; i4 = 1; i5 = 1; i6 = 0; } else { i3 = 79; break L22; } } else { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i77, 0) | 0, 45056) | 0)) { i3 = 81; break L22; } i4 = __ZN6cashew3RefixEj(i77, 1) | 0; i4 = __ZN6cashew5Value10getIStringEv(HEAP32[i4 >> 2] | 0) | 0; i4 = HEAP32[i4 >> 2] | 0; i3 = i4; if ((i3 | 0) == (i14 | 0)) { i3 = 1; i4 = 0; i5 = 1; i6 = 1; break; } if ((i3 | 0) == (i13 | 0)) { i3 = 2; i4 = 0; i5 = 1; i6 = 1; break; } if ((i3 | 0) == (i12 | 0)) { i3 = 4; i4 = 0; i5 = 1; i6 = 1; break; } if ((i3 | 0) == (i11 | 0)) { i3 = 1; i4 = 0; i5 = 0; i6 = 1; break; } if ((i3 | 0) == (i18 | 0)) { i3 = 2; i4 = 0; i5 = 0; i6 = 1; break; } if ((i3 | 0) == (i17 | 0)) { i3 = 4; i4 = 0; i5 = 0; i6 = 1; break; } if ((i3 | 0) == (i19 | 0)) { i3 = 4; i4 = 2; i5 = 1; i6 = 0; break; } if ((i3 | 0) == (i15 | 0)) { i3 = 8; i4 = 1; i5 = 1; i6 = 0; } else { i3 = 90; break L22; } } while (0); if ((__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i31, i2) | 0) != (i32 | 0)) { i3 = 92; break L22; } HEAP32[i76 >> 2] = i3; HEAP8[i33 >> 0] = i6 & 1; HEAP8[i24 >> 0] = i5 & 1; HEAP32[i25 >> 2] = i4; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE25__emplace_unique_key_argsIS3_JRS3_S6_EEENS_4pairINS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEEbEERKT_DpOT0_(i69, i31, i2, i2, i76); i7 = i15; i8 = i19; i9 = i17; i10 = i18; } while (0); i20 = i20 + 1 | 0; i16 = i5; i15 = i7; i19 = i8; i17 = i9; i18 = i10; } } while (0); i21 = i21 + 1 | 0; i15 = i4; i17 = i8; i18 = i7; i14 = i5; } switch (i3 | 0) { case 19: { if (HEAP8[i35 >> 0] | 0 ? (__ZN4wasm34OptimizingIncrementalModuleBuilder6finishEv(HEAP32[i34 >> 2] | 0), (HEAP32[i67 + 20 >> 2] | 0) >>> 0 < 1024) : 0) { i61 = HEAP32[i68 >> 2] | 0; HEAP32[i69 >> 2] = i61; HEAP32[i69 + 4 >> 2] = i61 + 100; HEAP32[i69 + 8 >> 2] = 0; HEAP32[i69 + 12 >> 2] = 0; HEAP32[i69 + 16 >> 2] = 0; HEAP8[i69 + 24 >> 0] = 0; HEAP32[i62 >> 2] = 0; HEAP32[i62 + 4 >> 2] = 0; HEAP32[i62 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i62, 30231, 15); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i69, i62); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i62); __ZN4wasm10PassRunner3runEv(i69); __ZN4wasm10PassRunnerD2Ev(i69); } HEAP32[i76 >> 2] = 0; i5 = i76 + 4 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i76 + 8 >> 2] = 0; i4 = HEAP32[i68 >> 2] | 0; i6 = HEAP32[i4 + 16 >> 2] | 0; i7 = i67 + 108 | 0; i8 = i67 + 112 | 0; i9 = i76 + 8 | 0; i4 = HEAP32[i4 + 12 >> 2] | 0; while (1) { if ((i4 | 0) == (i6 | 0)) break; HEAP32[i73 >> 2] = HEAP32[HEAP32[i4 >> 2] >> 2]; i62 = (__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE4findIS3_EENS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEEiEERKT_(i7, i73) | 0) == (i8 | 0); i3 = HEAP32[i4 >> 2] | 0; do if (i62) { if ((HEAP32[i3 + 4 >> 2] | 0) != (HEAP32[11401] | 0)) { i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i9 >> 2] | 0)) { __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i76, i73); break; } else { HEAP32[i3 >> 2] = HEAP32[i73 >> 2]; HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4; break; } } } else { HEAP32[i63 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i64 >> 2] = HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2]; HEAP32[i77 >> 2] = HEAP32[i63 >> 2]; HEAP32[i69 >> 2] = HEAP32[i64 >> 2]; i3 = __ZN4wasm15Asm2WasmBuilder22getBuiltinFunctionTypeENS_4NameES1_P11ArenaVectorIPNS_10ExpressionEE(i67, i77, i69, 0) | 0; if (!i3) { i62 = __ZNSt3__23mapIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS5_EEEENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S8_EEEEEixERSD_(i7, i73) | 0; __ZN4wasm6getSigEPKNS_12FunctionTypeE(i65, HEAP32[i62 >> 2] | 0); i62 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i65, HEAP32[i68 >> 2] | 0) | 0; HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] = i62; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i65); break; } else { HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] = i3; break; } } while (0); i4 = i4 + 4 | 0; } i4 = HEAP32[i5 >> 2] | 0; i3 = HEAP32[i76 >> 2] | 0; while (1) { if ((i3 | 0) == (i4 | 0)) break; i65 = HEAP32[i68 >> 2] | 0; HEAP32[i66 >> 2] = HEAP32[i3 >> 2]; HEAP32[i69 >> 2] = HEAP32[i66 >> 2]; __ZN4wasm6Module12removeImportENS_4NameE(i65, i69); i3 = i3 + 4 | 0; } i3 = HEAP32[i68 >> 2] | 0; HEAP32[i77 >> 2] = i3; HEAP32[i77 + 4 >> 2] = i3 + 100; HEAP32[i77 + 8 >> 2] = 0; i3 = i77 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i77 + 16 >> 2] = 0; HEAP8[i77 + 24 >> 0] = 0; i4 = __Znwj(44) | 0; __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCallsC2EPS0_(i4, i67); HEAP32[i69 >> 2] = i4; i5 = HEAP32[i3 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i77 + 16 >> 2] | 0) >>> 0) { HEAP32[i5 >> 2] = i4; HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 4; } else __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i77 + 8 | 0, i69); __ZN4wasm10PassRunner3runEv(i77); if (HEAP8[i67 + 36 >> 0] | 0) { i6 = HEAP32[i68 >> 2] | 0; i3 = i6 + 100 | 0; HEAP32[i73 >> 2] = i3; HEAP32[i71 >> 2] = HEAP32[11432]; HEAP32[i2 >> 2] = HEAP32[11433]; HEAP32[i2 + 4 >> 2] = 1; HEAP32[i74 >> 2] = 0; i4 = i74 + 4 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i74 + 8 >> 2] = 0; __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE8allocateEj(i74, 1); i5 = i2 + 8 | 0; while (1) { if ((i2 | 0) == (i5 | 0)) break; i65 = i2; i66 = HEAP32[i65 + 4 >> 2] | 0; i67 = HEAP32[i4 >> 2] | 0; HEAP32[i67 >> 2] = HEAP32[i65 >> 2]; HEAP32[i67 + 4 >> 2] = i66; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 8; i2 = i2 + 8 | 0; } HEAP32[i75 >> 2] = 0; HEAP32[i75 + 4 >> 2] = 0; HEAP32[i75 + 8 >> 2] = 0; HEAP32[i72 >> 2] = 0; i2 = __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(i3) | 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 1; HEAP32[i1 >> 2] = i2; HEAP32[i70 >> 2] = 0; i2 = i70 + 4 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i70 + 8 >> 2] = 0; __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE8allocateEj(i70, 1); i3 = i1 + 4 | 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; HEAP32[HEAP32[i2 >> 2] >> 2] = HEAP32[i1 >> 2]; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; i1 = i1 + 4 | 0; } HEAP32[i69 >> 2] = HEAP32[i72 >> 2]; i72 = __ZN4wasm7Builder8makeHostENS_6HostOpENS_4NameEONSt3__26vectorIPNS_10ExpressionENS3_9allocatorIS6_EEEE(i73, 2, i69, i70) | 0; HEAP32[i69 >> 2] = HEAP32[i71 >> 2]; __ZN4wasm6Module11addFunctionEPNS_8FunctionE(i6, __ZN4wasm7Builder12makeFunctionENS_4NameEONSt3__26vectorINS_8NameTypeENS2_9allocatorIS4_EEEENS_8WasmTypeES8_PNS_10ExpressionE(i73, i69, i74, 0, i75, i72) | 0); __ZNSt3__213__vector_baseIPN4wasm10ExpressionENS_9allocatorIS3_EEED2Ev(i70); __ZNSt3__213__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i75); __ZNSt3__213__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i74); i75 = __Znwj(8) | 0; i74 = HEAP32[11432] | 0; HEAP32[i75 + 4 >> 2] = i74; HEAP32[i75 >> 2] = i74; __ZN4wasm6Module9addExportEPNS_6ExportE(HEAP32[i68 >> 2] | 0, i75); } HEAP32[(HEAP32[i68 >> 2] | 0) + 92 >> 2] = HEAP32[11439]; i1 = i78 + 24 | 0; i2 = i78; i3 = i2 + 40 | 0; do { HEAP32[i2 >> 2] = 0; i2 = i2 + 4 | 0; } while ((i2 | 0) < (i3 | 0)); HEAP8[i1 >> 0] = 1; HEAP8[i78 + 25 >> 0] = 0; HEAP32[i78 + 32 >> 2] = 0; HEAP32[i78 + 36 >> 2] = 0; HEAP32[i78 + 28 >> 2] = i78 + 32; HEAP32[i78 + 40 >> 2] = 5; if (__ZN4wasm13WasmValidator8validateERNS_6ModuleEb(i78, HEAP32[i68 >> 2] | 0, 0) | 0) { __ZN4wasm13WasmValidatorD2Ev(i78); __ZN4wasm10PassRunnerD2Ev(i77); __ZNSt3__213__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i76); STACKTOP = i79; return; } else ___assert_fail(12451, 11743, 913, 11758); break; } case 24: { ___assert_fail(11961, 11743, 555, 11758); break; } case 30: { ___assert_fail(11988, 11743, 559, 11758); break; } case 34: { ___assert_fail(12058, 11743, 564, 11758); break; } case 37: { ___assert_fail(12075, 11743, 568, 11758); break; } case 46: { ___assert_fail(12103, 11743, 575, 11758); break; } case 69: { ___assert_fail(12214, 11743, 607, 11758); break; } case 79: { HEAP32[i56 >> 2] = 0; HEAP32[i56 + 4 >> 2] = 0; HEAP32[i56 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i56, 12231, 19); HEAP32[i57 >> 2] = i4; HEAP32[i69 >> 2] = HEAP32[i57 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i56, i69); break; } case 81: { ___assert_fail(12251, 11743, 634, 11758); break; } case 90: { HEAP32[i58 >> 2] = 0; HEAP32[i58 + 4 >> 2] = 0; HEAP32[i58 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i58, 12274, 25); HEAP32[i59 >> 2] = i4; HEAP32[i69 >> 2] = HEAP32[i59 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i58, i69); break; } case 92: { ___assert_fail(12300, 11743, 656, 11758); break; } case 102: { HEAP32[i60 >> 2] = 0; HEAP32[i60 + 4 >> 2] = 0; HEAP32[i60 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i60, 12332, 19); HEAP32[i61 >> 2] = HEAP32[i74 >> 2]; HEAP32[i69 >> 2] = HEAP32[i61 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i60, i69); break; } case 113: { ___assert_fail(12352, 11743, 689, 11758); break; } case 116: { ___assert_fail(12398, 11743, 693, 11758); break; } case 122: { ___assert_fail(12425, 11743, 700, 11758); break; } } } while (0); ___assert_fail(11804, 11743, 454, 11758); } function _malloc(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0; i36 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i14 = i36; do if (i2 >>> 0 < 245) { i13 = i2 >>> 0 < 11 ? 16 : i2 + 11 & -8; i2 = i13 >>> 3; i18 = HEAP32[11483] | 0; i3 = i18 >>> i2; if (i3 & 3 | 0) { i2 = (i3 & 1 ^ 1) + i2 | 0; i3 = 45972 + (i2 << 1 << 2) | 0; i4 = i3 + 8 | 0; i5 = HEAP32[i4 >> 2] | 0; i6 = i5 + 8 | 0; i7 = HEAP32[i6 >> 2] | 0; do if ((i3 | 0) != (i7 | 0)) { if (i7 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i7 + 12 | 0; if ((HEAP32[i1 >> 2] | 0) == (i5 | 0)) { HEAP32[i1 >> 2] = i3; HEAP32[i4 >> 2] = i7; break; } else _abort(); } else HEAP32[11483] = i18 & ~(1 << i2); while (0); i35 = i2 << 3; HEAP32[i5 + 4 >> 2] = i35 | 3; i35 = i5 + i35 + 4 | 0; HEAP32[i35 >> 2] = HEAP32[i35 >> 2] | 1; i35 = i6; STACKTOP = i36; return i35 | 0; } i17 = HEAP32[11485] | 0; if (i13 >>> 0 > i17 >>> 0) { if (i3 | 0) { i8 = 2 << i2; i2 = i3 << i2 & (i8 | 0 - i8); i2 = (i2 & 0 - i2) + -1 | 0; i8 = i2 >>> 12 & 16; i2 = i2 >>> i8; i4 = i2 >>> 5 & 8; i2 = i2 >>> i4; i6 = i2 >>> 2 & 4; i2 = i2 >>> i6; i3 = i2 >>> 1 & 2; i2 = i2 >>> i3; i1 = i2 >>> 1 & 1; i1 = (i4 | i8 | i6 | i3 | i1) + (i2 >>> i1) | 0; i2 = 45972 + (i1 << 1 << 2) | 0; i3 = i2 + 8 | 0; i6 = HEAP32[i3 >> 2] | 0; i8 = i6 + 8 | 0; i4 = HEAP32[i8 >> 2] | 0; do if ((i2 | 0) != (i4 | 0)) { if (i4 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i5 = i4 + 12 | 0; if ((HEAP32[i5 >> 2] | 0) == (i6 | 0)) { HEAP32[i5 >> 2] = i2; HEAP32[i3 >> 2] = i4; i9 = i18; break; } else _abort(); } else { i9 = i18 & ~(1 << i1); HEAP32[11483] = i9; } while (0); i7 = (i1 << 3) - i13 | 0; HEAP32[i6 + 4 >> 2] = i13 | 3; i4 = i6 + i13 | 0; HEAP32[i4 + 4 >> 2] = i7 | 1; HEAP32[i4 + i7 >> 2] = i7; if (i17 | 0) { i5 = HEAP32[11488] | 0; i1 = i17 >>> 3; i3 = 45972 + (i1 << 1 << 2) | 0; i1 = 1 << i1; if (i9 & i1) { i1 = i3 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { i10 = i2; i11 = i1; } } else { HEAP32[11483] = i9 | i1; i10 = i3; i11 = i3 + 8 | 0; } HEAP32[i11 >> 2] = i5; HEAP32[i10 + 12 >> 2] = i5; HEAP32[i5 + 8 >> 2] = i10; HEAP32[i5 + 12 >> 2] = i3; } HEAP32[11485] = i7; HEAP32[11488] = i4; i35 = i8; STACKTOP = i36; return i35 | 0; } i10 = HEAP32[11484] | 0; if (i10) { i2 = (i10 & 0 - i10) + -1 | 0; i34 = i2 >>> 12 & 16; i2 = i2 >>> i34; i33 = i2 >>> 5 & 8; i2 = i2 >>> i33; i35 = i2 >>> 2 & 4; i2 = i2 >>> i35; i8 = i2 >>> 1 & 2; i2 = i2 >>> i8; i9 = i2 >>> 1 & 1; i9 = HEAP32[46236 + ((i33 | i34 | i35 | i8 | i9) + (i2 >>> i9) << 2) >> 2] | 0; i2 = i9; i8 = i9; i9 = (HEAP32[i9 + 4 >> 2] & -8) - i13 | 0; while (1) { i1 = HEAP32[i2 + 16 >> 2] | 0; if (!i1) { i1 = HEAP32[i2 + 20 >> 2] | 0; if (!i1) break; } i35 = (HEAP32[i1 + 4 >> 2] & -8) - i13 | 0; i34 = i35 >>> 0 < i9 >>> 0; i2 = i1; i8 = i34 ? i1 : i8; i9 = i34 ? i35 : i9; } i5 = HEAP32[11487] | 0; if (i8 >>> 0 < i5 >>> 0) _abort(); i7 = i8 + i13 | 0; if (i8 >>> 0 >= i7 >>> 0) _abort(); i6 = HEAP32[i8 + 24 >> 2] | 0; i3 = HEAP32[i8 + 12 >> 2] | 0; do if ((i3 | 0) == (i8 | 0)) { i2 = i8 + 20 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i2 = i8 + 16 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i12 = 0; break; } } while (1) { i3 = i1 + 20 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 | 0) { i1 = i4; i2 = i3; continue; } i3 = i1 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; if (!i4) break; else { i1 = i4; i2 = i3; } } if (i2 >>> 0 < i5 >>> 0) _abort(); else { HEAP32[i2 >> 2] = 0; i12 = i1; break; } } else { i4 = HEAP32[i8 + 8 >> 2] | 0; if (i4 >>> 0 < i5 >>> 0) _abort(); i1 = i4 + 12 | 0; if ((HEAP32[i1 >> 2] | 0) != (i8 | 0)) _abort(); i2 = i3 + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == (i8 | 0)) { HEAP32[i1 >> 2] = i3; HEAP32[i2 >> 2] = i4; i12 = i3; break; } else _abort(); } while (0); do if (i6 | 0) { i1 = HEAP32[i8 + 28 >> 2] | 0; i2 = 46236 + (i1 << 2) | 0; if ((i8 | 0) == (HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = i12; if (!i12) { HEAP32[11484] = i10 & ~(1 << i1); break; } } else { if (i6 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i6 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) == (i8 | 0)) HEAP32[i1 >> 2] = i12; else HEAP32[i6 + 20 >> 2] = i12; if (!i12) break; } i2 = HEAP32[11487] | 0; if (i12 >>> 0 < i2 >>> 0) _abort(); HEAP32[i12 + 24 >> 2] = i6; i1 = HEAP32[i8 + 16 >> 2] | 0; do if (i1 | 0) if (i1 >>> 0 < i2 >>> 0) _abort(); else { HEAP32[i12 + 16 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i12; break; } while (0); i1 = HEAP32[i8 + 20 >> 2] | 0; if (i1 | 0) if (i1 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i12 + 20 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i12; break; } } while (0); if (i9 >>> 0 < 16) { i35 = i9 + i13 | 0; HEAP32[i8 + 4 >> 2] = i35 | 3; i35 = i8 + i35 + 4 | 0; HEAP32[i35 >> 2] = HEAP32[i35 >> 2] | 1; } else { HEAP32[i8 + 4 >> 2] = i13 | 3; HEAP32[i7 + 4 >> 2] = i9 | 1; HEAP32[i7 + i9 >> 2] = i9; if (i17 | 0) { i4 = HEAP32[11488] | 0; i1 = i17 >>> 3; i3 = 45972 + (i1 << 1 << 2) | 0; i1 = 1 << i1; if (i18 & i1) { i1 = i3 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { i15 = i2; i16 = i1; } } else { HEAP32[11483] = i18 | i1; i15 = i3; i16 = i3 + 8 | 0; } HEAP32[i16 >> 2] = i4; HEAP32[i15 + 12 >> 2] = i4; HEAP32[i4 + 8 >> 2] = i15; HEAP32[i4 + 12 >> 2] = i3; } HEAP32[11485] = i9; HEAP32[11488] = i7; } i35 = i8 + 8 | 0; STACKTOP = i36; return i35 | 0; } } } else if (i2 >>> 0 <= 4294967231) { i2 = i2 + 11 | 0; i13 = i2 & -8; i10 = HEAP32[11484] | 0; if (i10) { i4 = 0 - i13 | 0; i2 = i2 >>> 8; if (i2) if (i13 >>> 0 > 16777215) i9 = 31; else { i16 = (i2 + 1048320 | 0) >>> 16 & 8; i28 = i2 << i16; i15 = (i28 + 520192 | 0) >>> 16 & 4; i28 = i28 << i15; i9 = (i28 + 245760 | 0) >>> 16 & 2; i9 = 14 - (i15 | i16 | i9) + (i28 << i9 >>> 15) | 0; i9 = i13 >>> (i9 + 7 | 0) & 1 | i9 << 1; } else i9 = 0; i2 = HEAP32[46236 + (i9 << 2) >> 2] | 0; L123 : do if (!i2) { i3 = 0; i5 = 0; i28 = 86; } else { i5 = 0; i8 = i2; i7 = i13 << ((i9 | 0) == 31 ? 0 : 25 - (i9 >>> 1) | 0); i3 = 0; while (1) { i2 = (HEAP32[i8 + 4 >> 2] & -8) - i13 | 0; if (i2 >>> 0 < i4 >>> 0) if (!i2) { i2 = i8; i4 = 0; i3 = i8; i28 = 90; break L123; } else { i5 = i8; i4 = i2; } i2 = HEAP32[i8 + 20 >> 2] | 0; i8 = HEAP32[i8 + 16 + (i7 >>> 31 << 2) >> 2] | 0; i3 = (i2 | 0) == 0 | (i2 | 0) == (i8 | 0) ? i3 : i2; i2 = (i8 | 0) == 0; if (i2) { i28 = 86; break; } else i7 = i7 << (i2 & 1 ^ 1); } } while (0); if ((i28 | 0) == 86) { if ((i3 | 0) == 0 & (i5 | 0) == 0) { i2 = 2 << i9; i2 = i10 & (i2 | 0 - i2); if (!i2) break; i16 = (i2 & 0 - i2) + -1 | 0; i11 = i16 >>> 12 & 16; i16 = i16 >>> i11; i9 = i16 >>> 5 & 8; i16 = i16 >>> i9; i12 = i16 >>> 2 & 4; i16 = i16 >>> i12; i15 = i16 >>> 1 & 2; i16 = i16 >>> i15; i3 = i16 >>> 1 & 1; i3 = HEAP32[46236 + ((i9 | i11 | i12 | i15 | i3) + (i16 >>> i3) << 2) >> 2] | 0; } if (!i3) { i9 = i5; i8 = i4; } else { i2 = i5; i28 = 90; } } if ((i28 | 0) == 90) while (1) { i28 = 0; i16 = (HEAP32[i3 + 4 >> 2] & -8) - i13 | 0; i5 = i16 >>> 0 < i4 >>> 0; i4 = i5 ? i16 : i4; i2 = i5 ? i3 : i2; i5 = HEAP32[i3 + 16 >> 2] | 0; if (i5 | 0) { i3 = i5; i28 = 90; continue; } i3 = HEAP32[i3 + 20 >> 2] | 0; if (!i3) { i9 = i2; i8 = i4; break; } else i28 = 90; } if ((i9 | 0) != 0 ? i8 >>> 0 < ((HEAP32[11485] | 0) - i13 | 0) >>> 0 : 0) { i5 = HEAP32[11487] | 0; if (i9 >>> 0 < i5 >>> 0) _abort(); i7 = i9 + i13 | 0; if (i9 >>> 0 >= i7 >>> 0) _abort(); i6 = HEAP32[i9 + 24 >> 2] | 0; i3 = HEAP32[i9 + 12 >> 2] | 0; do if ((i3 | 0) == (i9 | 0)) { i2 = i9 + 20 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i2 = i9 + 16 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i17 = 0; break; } } while (1) { i3 = i1 + 20 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 | 0) { i1 = i4; i2 = i3; continue; } i3 = i1 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; if (!i4) break; else { i1 = i4; i2 = i3; } } if (i2 >>> 0 < i5 >>> 0) _abort(); else { HEAP32[i2 >> 2] = 0; i17 = i1; break; } } else { i4 = HEAP32[i9 + 8 >> 2] | 0; if (i4 >>> 0 < i5 >>> 0) _abort(); i1 = i4 + 12 | 0; if ((HEAP32[i1 >> 2] | 0) != (i9 | 0)) _abort(); i2 = i3 + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == (i9 | 0)) { HEAP32[i1 >> 2] = i3; HEAP32[i2 >> 2] = i4; i17 = i3; break; } else _abort(); } while (0); do if (i6) { i1 = HEAP32[i9 + 28 >> 2] | 0; i2 = 46236 + (i1 << 2) | 0; if ((i9 | 0) == (HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = i17; if (!i17) { i18 = i10 & ~(1 << i1); HEAP32[11484] = i18; break; } } else { if (i6 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i6 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) == (i9 | 0)) HEAP32[i1 >> 2] = i17; else HEAP32[i6 + 20 >> 2] = i17; if (!i17) { i18 = i10; break; } } i2 = HEAP32[11487] | 0; if (i17 >>> 0 < i2 >>> 0) _abort(); HEAP32[i17 + 24 >> 2] = i6; i1 = HEAP32[i9 + 16 >> 2] | 0; do if (i1 | 0) if (i1 >>> 0 < i2 >>> 0) _abort(); else { HEAP32[i17 + 16 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i17; break; } while (0); i1 = HEAP32[i9 + 20 >> 2] | 0; if (i1) if (i1 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i17 + 20 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i17; i18 = i10; break; } else i18 = i10; } else i18 = i10; while (0); do if (i8 >>> 0 >= 16) { HEAP32[i9 + 4 >> 2] = i13 | 3; HEAP32[i7 + 4 >> 2] = i8 | 1; HEAP32[i7 + i8 >> 2] = i8; i1 = i8 >>> 3; if (i8 >>> 0 < 256) { i3 = 45972 + (i1 << 1 << 2) | 0; i2 = HEAP32[11483] | 0; i1 = 1 << i1; if (i2 & i1) { i1 = i3 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { i26 = i2; i27 = i1; } } else { HEAP32[11483] = i2 | i1; i26 = i3; i27 = i3 + 8 | 0; } HEAP32[i27 >> 2] = i7; HEAP32[i26 + 12 >> 2] = i7; HEAP32[i7 + 8 >> 2] = i26; HEAP32[i7 + 12 >> 2] = i3; break; } i1 = i8 >>> 8; if (i1) if (i8 >>> 0 > 16777215) i1 = 31; else { i34 = (i1 + 1048320 | 0) >>> 16 & 8; i35 = i1 << i34; i33 = (i35 + 520192 | 0) >>> 16 & 4; i35 = i35 << i33; i1 = (i35 + 245760 | 0) >>> 16 & 2; i1 = 14 - (i33 | i34 | i1) + (i35 << i1 >>> 15) | 0; i1 = i8 >>> (i1 + 7 | 0) & 1 | i1 << 1; } else i1 = 0; i3 = 46236 + (i1 << 2) | 0; HEAP32[i7 + 28 >> 2] = i1; i2 = i7 + 16 | 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 >> 2] = 0; i2 = 1 << i1; if (!(i18 & i2)) { HEAP32[11484] = i18 | i2; HEAP32[i3 >> 2] = i7; HEAP32[i7 + 24 >> 2] = i3; HEAP32[i7 + 12 >> 2] = i7; HEAP32[i7 + 8 >> 2] = i7; break; } i2 = i8 << ((i1 | 0) == 31 ? 0 : 25 - (i1 >>> 1) | 0); i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((HEAP32[i4 + 4 >> 2] & -8 | 0) == (i8 | 0)) { i28 = 148; break; } i3 = i4 + 16 + (i2 >>> 31 << 2) | 0; i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i28 = 145; break; } else { i2 = i2 << 1; i4 = i1; } } if ((i28 | 0) == 145) if (i3 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i3 >> 2] = i7; HEAP32[i7 + 24 >> 2] = i4; HEAP32[i7 + 12 >> 2] = i7; HEAP32[i7 + 8 >> 2] = i7; break; } else if ((i28 | 0) == 148) { i1 = i4 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; i35 = HEAP32[11487] | 0; if (i2 >>> 0 >= i35 >>> 0 & i4 >>> 0 >= i35 >>> 0) { HEAP32[i2 + 12 >> 2] = i7; HEAP32[i1 >> 2] = i7; HEAP32[i7 + 8 >> 2] = i2; HEAP32[i7 + 12 >> 2] = i4; HEAP32[i7 + 24 >> 2] = 0; break; } else _abort(); } } else { i35 = i8 + i13 | 0; HEAP32[i9 + 4 >> 2] = i35 | 3; i35 = i9 + i35 + 4 | 0; HEAP32[i35 >> 2] = HEAP32[i35 >> 2] | 1; } while (0); i35 = i9 + 8 | 0; STACKTOP = i36; return i35 | 0; } } } else i13 = -1; while (0); i3 = HEAP32[11485] | 0; if (i3 >>> 0 >= i13 >>> 0) { i1 = i3 - i13 | 0; i2 = HEAP32[11488] | 0; if (i1 >>> 0 > 15) { i35 = i2 + i13 | 0; HEAP32[11488] = i35; HEAP32[11485] = i1; HEAP32[i35 + 4 >> 2] = i1 | 1; HEAP32[i35 + i1 >> 2] = i1; HEAP32[i2 + 4 >> 2] = i13 | 3; } else { HEAP32[11485] = 0; HEAP32[11488] = 0; HEAP32[i2 + 4 >> 2] = i3 | 3; i35 = i2 + i3 + 4 | 0; HEAP32[i35 >> 2] = HEAP32[i35 >> 2] | 1; } i35 = i2 + 8 | 0; STACKTOP = i36; return i35 | 0; } i8 = HEAP32[11486] | 0; if (i8 >>> 0 > i13 >>> 0) { i33 = i8 - i13 | 0; HEAP32[11486] = i33; i35 = HEAP32[11489] | 0; i34 = i35 + i13 | 0; HEAP32[11489] = i34; HEAP32[i34 + 4 >> 2] = i33 | 1; HEAP32[i35 + 4 >> 2] = i13 | 3; i35 = i35 + 8 | 0; STACKTOP = i36; return i35 | 0; } if (!(HEAP32[11601] | 0)) { HEAP32[11603] = 4096; HEAP32[11602] = 4096; HEAP32[11604] = -1; HEAP32[11605] = -1; HEAP32[11606] = 0; HEAP32[11594] = 0; i2 = i14 & -16 ^ 1431655768; HEAP32[i14 >> 2] = i2; HEAP32[11601] = i2; i2 = 4096; } else i2 = HEAP32[11603] | 0; i9 = i13 + 48 | 0; i10 = i13 + 47 | 0; i7 = i2 + i10 | 0; i5 = 0 - i2 | 0; i11 = i7 & i5; if (i11 >>> 0 <= i13 >>> 0) { i35 = 0; STACKTOP = i36; return i35 | 0; } i2 = HEAP32[11593] | 0; if (i2 | 0 ? (i26 = HEAP32[11591] | 0, i27 = i26 + i11 | 0, i27 >>> 0 <= i26 >>> 0 | i27 >>> 0 > i2 >>> 0) : 0) { i35 = 0; STACKTOP = i36; return i35 | 0; } L255 : do if (!(HEAP32[11594] & 4)) { i3 = HEAP32[11489] | 0; L257 : do if (i3) { i4 = 46380; while (1) { i2 = HEAP32[i4 >> 2] | 0; if (i2 >>> 0 <= i3 >>> 0 ? (i19 = i4 + 4 | 0, (i2 + (HEAP32[i19 >> 2] | 0) | 0) >>> 0 > i3 >>> 0) : 0) break; i2 = HEAP32[i4 + 8 >> 2] | 0; if (!i2) { i28 = 172; break L257; } else i4 = i2; } i3 = i7 - i8 & i5; if (i3 >>> 0 < 2147483647) { i2 = _sbrk(i3 | 0) | 0; if ((i2 | 0) == ((HEAP32[i4 >> 2] | 0) + (HEAP32[i19 >> 2] | 0) | 0)) { if ((i2 | 0) != (-1 | 0)) { i7 = i3; i6 = i2; i28 = 190; break L255; } } else { i1 = i3; i28 = 180; } } } else i28 = 172; while (0); do if (((i28 | 0) == 172 ? (i6 = _sbrk(0) | 0, (i6 | 0) != (-1 | 0)) : 0) ? (i1 = i6, i20 = HEAP32[11602] | 0, i21 = i20 + -1 | 0, i1 = ((i21 & i1 | 0) == 0 ? 0 : (i21 + i1 & 0 - i20) - i1 | 0) + i11 | 0, i20 = HEAP32[11591] | 0, i21 = i1 + i20 | 0, i1 >>> 0 > i13 >>> 0 & i1 >>> 0 < 2147483647) : 0) { i27 = HEAP32[11593] | 0; if (i27 | 0 ? i21 >>> 0 <= i20 >>> 0 | i21 >>> 0 > i27 >>> 0 : 0) break; i2 = _sbrk(i1 | 0) | 0; if ((i2 | 0) == (i6 | 0)) { i7 = i1; i28 = 190; break L255; } else i28 = 180; } while (0); L274 : do if ((i28 | 0) == 180) { i3 = 0 - i1 | 0; do if (i9 >>> 0 > i1 >>> 0 & (i1 >>> 0 < 2147483647 & (i2 | 0) != (-1 | 0)) ? (i22 = HEAP32[11603] | 0, i22 = i10 - i1 + i22 & 0 - i22, i22 >>> 0 < 2147483647) : 0) if ((_sbrk(i22 | 0) | 0) == (-1 | 0)) { _sbrk(i3 | 0) | 0; break L274; } else { i1 = i22 + i1 | 0; break; } while (0); if ((i2 | 0) != (-1 | 0)) { i7 = i1; i6 = i2; i28 = 190; break L255; } } while (0); HEAP32[11594] = HEAP32[11594] | 4; i28 = 187; } else i28 = 187; while (0); if ((((i28 | 0) == 187 ? i11 >>> 0 < 2147483647 : 0) ? (i25 = _sbrk(i11 | 0) | 0, i23 = _sbrk(0) | 0, i25 >>> 0 < i23 >>> 0 & ((i25 | 0) != (-1 | 0) & (i23 | 0) != (-1 | 0))) : 0) ? (i24 = i23 - i25 | 0, i24 >>> 0 > (i13 + 40 | 0) >>> 0) : 0) { i7 = i24; i6 = i25; i28 = 190; } if ((i28 | 0) == 190) { i1 = (HEAP32[11591] | 0) + i7 | 0; HEAP32[11591] = i1; if (i1 >>> 0 > (HEAP32[11592] | 0) >>> 0) HEAP32[11592] = i1; i10 = HEAP32[11489] | 0; do if (i10) { i1 = 46380; while (1) { i2 = HEAP32[i1 >> 2] | 0; i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i6 | 0) == (i2 + i4 | 0)) { i28 = 200; break; } i5 = HEAP32[i1 + 8 >> 2] | 0; if (!i5) break; else i1 = i5; } if (((i28 | 0) == 200 ? (HEAP32[i1 + 12 >> 2] & 8 | 0) == 0 : 0) ? i10 >>> 0 < i6 >>> 0 & i10 >>> 0 >= i2 >>> 0 : 0) { HEAP32[i3 >> 2] = i4 + i7; i35 = i10 + 8 | 0; i35 = (i35 & 7 | 0) == 0 ? 0 : 0 - i35 & 7; i34 = i10 + i35 | 0; i35 = i7 - i35 + (HEAP32[11486] | 0) | 0; HEAP32[11489] = i34; HEAP32[11486] = i35; HEAP32[i34 + 4 >> 2] = i35 | 1; HEAP32[i34 + i35 + 4 >> 2] = 40; HEAP32[11490] = HEAP32[11605]; break; } i1 = HEAP32[11487] | 0; if (i6 >>> 0 < i1 >>> 0) { HEAP32[11487] = i6; i8 = i6; } else i8 = i1; i2 = i6 + i7 | 0; i1 = 46380; while (1) { if ((HEAP32[i1 >> 2] | 0) == (i2 | 0)) { i28 = 208; break; } i1 = HEAP32[i1 + 8 >> 2] | 0; if (!i1) { i2 = 46380; break; } } if ((i28 | 0) == 208) if (!(HEAP32[i1 + 12 >> 2] & 8)) { HEAP32[i1 >> 2] = i6; i12 = i1 + 4 | 0; HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + i7; i12 = i6 + 8 | 0; i12 = i6 + ((i12 & 7 | 0) == 0 ? 0 : 0 - i12 & 7) | 0; i1 = i2 + 8 | 0; i1 = i2 + ((i1 & 7 | 0) == 0 ? 0 : 0 - i1 & 7) | 0; i11 = i12 + i13 | 0; i9 = i1 - i12 - i13 | 0; HEAP32[i12 + 4 >> 2] = i13 | 3; do if ((i1 | 0) != (i10 | 0)) { if ((i1 | 0) == (HEAP32[11488] | 0)) { i35 = (HEAP32[11485] | 0) + i9 | 0; HEAP32[11485] = i35; HEAP32[11488] = i11; HEAP32[i11 + 4 >> 2] = i35 | 1; HEAP32[i11 + i35 >> 2] = i35; break; } i2 = HEAP32[i1 + 4 >> 2] | 0; if ((i2 & 3 | 0) == 1) { i7 = i2 & -8; i5 = i2 >>> 3; L326 : do if (i2 >>> 0 >= 256) { i6 = HEAP32[i1 + 24 >> 2] | 0; i4 = HEAP32[i1 + 12 >> 2] | 0; do if ((i4 | 0) == (i1 | 0)) { i4 = i1 + 16 | 0; i3 = i4 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = HEAP32[i4 >> 2] | 0; if (!i2) { i33 = 0; break; } else i3 = i4; } while (1) { i4 = i2 + 20 | 0; i5 = HEAP32[i4 >> 2] | 0; if (i5 | 0) { i2 = i5; i3 = i4; continue; } i4 = i2 + 16 | 0; i5 = HEAP32[i4 >> 2] | 0; if (!i5) break; else { i2 = i5; i3 = i4; } } if (i3 >>> 0 < i8 >>> 0) _abort(); else { HEAP32[i3 >> 2] = 0; i33 = i2; break; } } else { i5 = HEAP32[i1 + 8 >> 2] | 0; if (i5 >>> 0 < i8 >>> 0) _abort(); i2 = i5 + 12 | 0; if ((HEAP32[i2 >> 2] | 0) != (i1 | 0)) _abort(); i3 = i4 + 8 | 0; if ((HEAP32[i3 >> 2] | 0) == (i1 | 0)) { HEAP32[i2 >> 2] = i4; HEAP32[i3 >> 2] = i5; i33 = i4; break; } else _abort(); } while (0); if (!i6) break; i2 = HEAP32[i1 + 28 >> 2] | 0; i3 = 46236 + (i2 << 2) | 0; do if ((i1 | 0) != (HEAP32[i3 >> 2] | 0)) { if (i6 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i2 = i6 + 16 | 0; if ((HEAP32[i2 >> 2] | 0) == (i1 | 0)) HEAP32[i2 >> 2] = i33; else HEAP32[i6 + 20 >> 2] = i33; if (!i33) break L326; } else { HEAP32[i3 >> 2] = i33; if (i33 | 0) break; HEAP32[11484] = HEAP32[11484] & ~(1 << i2); break L326; } while (0); i4 = HEAP32[11487] | 0; if (i33 >>> 0 < i4 >>> 0) _abort(); HEAP32[i33 + 24 >> 2] = i6; i2 = i1 + 16 | 0; i3 = HEAP32[i2 >> 2] | 0; do if (i3 | 0) if (i3 >>> 0 < i4 >>> 0) _abort(); else { HEAP32[i33 + 16 >> 2] = i3; HEAP32[i3 + 24 >> 2] = i33; break; } while (0); i2 = HEAP32[i2 + 4 >> 2] | 0; if (!i2) break; if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i33 + 20 >> 2] = i2; HEAP32[i2 + 24 >> 2] = i33; break; } } else { i3 = HEAP32[i1 + 8 >> 2] | 0; i4 = HEAP32[i1 + 12 >> 2] | 0; i2 = 45972 + (i5 << 1 << 2) | 0; do if ((i3 | 0) != (i2 | 0)) { if (i3 >>> 0 < i8 >>> 0) _abort(); if ((HEAP32[i3 + 12 >> 2] | 0) == (i1 | 0)) break; _abort(); } while (0); if ((i4 | 0) == (i3 | 0)) { HEAP32[11483] = HEAP32[11483] & ~(1 << i5); break; } do if ((i4 | 0) == (i2 | 0)) i30 = i4 + 8 | 0; else { if (i4 >>> 0 < i8 >>> 0) _abort(); i2 = i4 + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == (i1 | 0)) { i30 = i2; break; } _abort(); } while (0); HEAP32[i3 + 12 >> 2] = i4; HEAP32[i30 >> 2] = i3; } while (0); i1 = i1 + i7 | 0; i5 = i7 + i9 | 0; } else i5 = i9; i1 = i1 + 4 | 0; HEAP32[i1 >> 2] = HEAP32[i1 >> 2] & -2; HEAP32[i11 + 4 >> 2] = i5 | 1; HEAP32[i11 + i5 >> 2] = i5; i1 = i5 >>> 3; if (i5 >>> 0 < 256) { i3 = 45972 + (i1 << 1 << 2) | 0; i2 = HEAP32[11483] | 0; i1 = 1 << i1; do if (!(i2 & i1)) { HEAP32[11483] = i2 | i1; i34 = i3; i35 = i3 + 8 | 0; } else { i1 = i3 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 >= (HEAP32[11487] | 0) >>> 0) { i34 = i2; i35 = i1; break; } _abort(); } while (0); HEAP32[i35 >> 2] = i11; HEAP32[i34 + 12 >> 2] = i11; HEAP32[i11 + 8 >> 2] = i34; HEAP32[i11 + 12 >> 2] = i3; break; } i1 = i5 >>> 8; do if (!i1) i1 = 0; else { if (i5 >>> 0 > 16777215) { i1 = 31; break; } i34 = (i1 + 1048320 | 0) >>> 16 & 8; i35 = i1 << i34; i33 = (i35 + 520192 | 0) >>> 16 & 4; i35 = i35 << i33; i1 = (i35 + 245760 | 0) >>> 16 & 2; i1 = 14 - (i33 | i34 | i1) + (i35 << i1 >>> 15) | 0; i1 = i5 >>> (i1 + 7 | 0) & 1 | i1 << 1; } while (0); i4 = 46236 + (i1 << 2) | 0; HEAP32[i11 + 28 >> 2] = i1; i2 = i11 + 16 | 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 >> 2] = 0; i2 = HEAP32[11484] | 0; i3 = 1 << i1; if (!(i2 & i3)) { HEAP32[11484] = i2 | i3; HEAP32[i4 >> 2] = i11; HEAP32[i11 + 24 >> 2] = i4; HEAP32[i11 + 12 >> 2] = i11; HEAP32[i11 + 8 >> 2] = i11; break; } i2 = i5 << ((i1 | 0) == 31 ? 0 : 25 - (i1 >>> 1) | 0); i4 = HEAP32[i4 >> 2] | 0; while (1) { if ((HEAP32[i4 + 4 >> 2] & -8 | 0) == (i5 | 0)) { i28 = 278; break; } i3 = i4 + 16 + (i2 >>> 31 << 2) | 0; i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i28 = 275; break; } else { i2 = i2 << 1; i4 = i1; } } if ((i28 | 0) == 275) if (i3 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i3 >> 2] = i11; HEAP32[i11 + 24 >> 2] = i4; HEAP32[i11 + 12 >> 2] = i11; HEAP32[i11 + 8 >> 2] = i11; break; } else if ((i28 | 0) == 278) { i1 = i4 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; i35 = HEAP32[11487] | 0; if (i2 >>> 0 >= i35 >>> 0 & i4 >>> 0 >= i35 >>> 0) { HEAP32[i2 + 12 >> 2] = i11; HEAP32[i1 >> 2] = i11; HEAP32[i11 + 8 >> 2] = i2; HEAP32[i11 + 12 >> 2] = i4; HEAP32[i11 + 24 >> 2] = 0; break; } else _abort(); } } else { i35 = (HEAP32[11486] | 0) + i9 | 0; HEAP32[11486] = i35; HEAP32[11489] = i11; HEAP32[i11 + 4 >> 2] = i35 | 1; } while (0); i35 = i12 + 8 | 0; STACKTOP = i36; return i35 | 0; } else i2 = 46380; while (1) { i1 = HEAP32[i2 >> 2] | 0; if (i1 >>> 0 <= i10 >>> 0 ? (i29 = i1 + (HEAP32[i2 + 4 >> 2] | 0) | 0, i29 >>> 0 > i10 >>> 0) : 0) break; i2 = HEAP32[i2 + 8 >> 2] | 0; } i5 = i29 + -47 | 0; i2 = i5 + 8 | 0; i2 = i5 + ((i2 & 7 | 0) == 0 ? 0 : 0 - i2 & 7) | 0; i5 = i10 + 16 | 0; i2 = i2 >>> 0 < i5 >>> 0 ? i10 : i2; i1 = i2 + 8 | 0; i3 = i6 + 8 | 0; i3 = (i3 & 7 | 0) == 0 ? 0 : 0 - i3 & 7; i35 = i6 + i3 | 0; i3 = i7 + -40 - i3 | 0; HEAP32[11489] = i35; HEAP32[11486] = i3; HEAP32[i35 + 4 >> 2] = i3 | 1; HEAP32[i35 + i3 + 4 >> 2] = 40; HEAP32[11490] = HEAP32[11605]; i3 = i2 + 4 | 0; HEAP32[i3 >> 2] = 27; HEAP32[i1 >> 2] = HEAP32[11595]; HEAP32[i1 + 4 >> 2] = HEAP32[11596]; HEAP32[i1 + 8 >> 2] = HEAP32[11597]; HEAP32[i1 + 12 >> 2] = HEAP32[11598]; HEAP32[11595] = i6; HEAP32[11596] = i7; HEAP32[11598] = 0; HEAP32[11597] = i1; i1 = i2 + 24 | 0; do { i1 = i1 + 4 | 0; HEAP32[i1 >> 2] = 7; } while ((i1 + 4 | 0) >>> 0 < i29 >>> 0); if ((i2 | 0) != (i10 | 0)) { i6 = i2 - i10 | 0; HEAP32[i3 >> 2] = HEAP32[i3 >> 2] & -2; HEAP32[i10 + 4 >> 2] = i6 | 1; HEAP32[i2 >> 2] = i6; i1 = i6 >>> 3; if (i6 >>> 0 < 256) { i3 = 45972 + (i1 << 1 << 2) | 0; i2 = HEAP32[11483] | 0; i1 = 1 << i1; if (i2 & i1) { i1 = i3 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { i31 = i2; i32 = i1; } } else { HEAP32[11483] = i2 | i1; i31 = i3; i32 = i3 + 8 | 0; } HEAP32[i32 >> 2] = i10; HEAP32[i31 + 12 >> 2] = i10; HEAP32[i10 + 8 >> 2] = i31; HEAP32[i10 + 12 >> 2] = i3; break; } i1 = i6 >>> 8; if (i1) if (i6 >>> 0 > 16777215) i3 = 31; else { i34 = (i1 + 1048320 | 0) >>> 16 & 8; i35 = i1 << i34; i33 = (i35 + 520192 | 0) >>> 16 & 4; i35 = i35 << i33; i3 = (i35 + 245760 | 0) >>> 16 & 2; i3 = 14 - (i33 | i34 | i3) + (i35 << i3 >>> 15) | 0; i3 = i6 >>> (i3 + 7 | 0) & 1 | i3 << 1; } else i3 = 0; i4 = 46236 + (i3 << 2) | 0; HEAP32[i10 + 28 >> 2] = i3; HEAP32[i10 + 20 >> 2] = 0; HEAP32[i5 >> 2] = 0; i1 = HEAP32[11484] | 0; i2 = 1 << i3; if (!(i1 & i2)) { HEAP32[11484] = i1 | i2; HEAP32[i4 >> 2] = i10; HEAP32[i10 + 24 >> 2] = i4; HEAP32[i10 + 12 >> 2] = i10; HEAP32[i10 + 8 >> 2] = i10; break; } i2 = i6 << ((i3 | 0) == 31 ? 0 : 25 - (i3 >>> 1) | 0); i4 = HEAP32[i4 >> 2] | 0; while (1) { if ((HEAP32[i4 + 4 >> 2] & -8 | 0) == (i6 | 0)) { i28 = 304; break; } i3 = i4 + 16 + (i2 >>> 31 << 2) | 0; i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i28 = 301; break; } else { i2 = i2 << 1; i4 = i1; } } if ((i28 | 0) == 301) if (i3 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i3 >> 2] = i10; HEAP32[i10 + 24 >> 2] = i4; HEAP32[i10 + 12 >> 2] = i10; HEAP32[i10 + 8 >> 2] = i10; break; } else if ((i28 | 0) == 304) { i1 = i4 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; i35 = HEAP32[11487] | 0; if (i2 >>> 0 >= i35 >>> 0 & i4 >>> 0 >= i35 >>> 0) { HEAP32[i2 + 12 >> 2] = i10; HEAP32[i1 >> 2] = i10; HEAP32[i10 + 8 >> 2] = i2; HEAP32[i10 + 12 >> 2] = i4; HEAP32[i10 + 24 >> 2] = 0; break; } else _abort(); } } } else { i35 = HEAP32[11487] | 0; if ((i35 | 0) == 0 | i6 >>> 0 < i35 >>> 0) HEAP32[11487] = i6; HEAP32[11595] = i6; HEAP32[11596] = i7; HEAP32[11598] = 0; HEAP32[11492] = HEAP32[11601]; HEAP32[11491] = -1; i1 = 0; do { i35 = 45972 + (i1 << 1 << 2) | 0; HEAP32[i35 + 12 >> 2] = i35; HEAP32[i35 + 8 >> 2] = i35; i1 = i1 + 1 | 0; } while ((i1 | 0) != 32); i35 = i6 + 8 | 0; i35 = (i35 & 7 | 0) == 0 ? 0 : 0 - i35 & 7; i34 = i6 + i35 | 0; i35 = i7 + -40 - i35 | 0; HEAP32[11489] = i34; HEAP32[11486] = i35; HEAP32[i34 + 4 >> 2] = i35 | 1; HEAP32[i34 + i35 + 4 >> 2] = 40; HEAP32[11490] = HEAP32[11605]; } while (0); i1 = HEAP32[11486] | 0; if (i1 >>> 0 > i13 >>> 0) { i33 = i1 - i13 | 0; HEAP32[11486] = i33; i35 = HEAP32[11489] | 0; i34 = i35 + i13 | 0; HEAP32[11489] = i34; HEAP32[i34 + 4 >> 2] = i33 | 1; HEAP32[i35 + 4 >> 2] = i13 | 3; i35 = i35 + 8 | 0; STACKTOP = i36; return i35 | 0; } } i35 = ___errno_location() | 0; HEAP32[i35 >> 2] = 12; i35 = 0; STACKTOP = i36; return i35 | 0; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11visitBinaryEPNS_6BinaryE(i36, i5, i16) { i36 = i36 | 0; i5 = i5 | 0; i16 = i16 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i37 = 0; i37 = STACKTOP; STACKTOP = STACKTOP + 496 | 0; i1 = i37 + 472 | 0; i34 = i37 + 456 | 0; i35 = i37 + 432 | 0; i30 = i37 + 416 | 0; i31 = i37 + 400 | 0; i32 = i37 + 384 | 0; i33 = i37 + 368 | 0; i6 = i37 + 352 | 0; i7 = i37 + 336 | 0; i8 = i37 + 320 | 0; i9 = i37 + 304 | 0; i10 = i37 + 288 | 0; i11 = i37 + 272 | 0; i12 = i37 + 256 | 0; i13 = i37 + 240 | 0; i14 = i37 + 224 | 0; i15 = i37 + 208 | 0; i17 = i37 + 192 | 0; i18 = i37 + 176 | 0; i19 = i37 + 160 | 0; i20 = i37 + 144 | 0; i21 = i37 + 128 | 0; i22 = i37 + 112 | 0; i23 = i37 + 96 | 0; i24 = i37 + 80 | 0; i25 = i37 + 64 | 0; i26 = i37 + 48 | 0; i27 = i37 + 32 | 0; i28 = i37 + 16 | 0; i29 = i37; i2 = i16 + 12 | 0; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i5, HEAP32[i2 >> 2] | 0); i3 = i1 + 16 | 0; if ((HEAP32[i3 >> 2] | 0) == 0 ? (HEAP32[i34 >> 2] = HEAP32[i1 >> 2], HEAP32[i34 + 4 >> 2] = HEAP32[i1 + 4 >> 2], HEAP32[i34 + 8 >> 2] = HEAP32[i1 + 8 >> 2], HEAP32[i34 + 12 >> 2] = HEAP32[i1 + 12 >> 2], i4 = i16 + 16 | 0, __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i35, i5, HEAP32[i4 >> 2] | 0), HEAP32[i1 >> 2] = HEAP32[i35 >> 2], HEAP32[i1 + 4 >> 2] = HEAP32[i35 + 4 >> 2], HEAP32[i1 + 8 >> 2] = HEAP32[i35 + 8 >> 2], HEAP32[i1 + 12 >> 2] = HEAP32[i35 + 12 >> 2], HEAP32[i1 + 16 >> 2] = HEAP32[i35 + 16 >> 2], (HEAP32[i3 >> 2] | 0) == 0) : 0) { HEAP32[i35 >> 2] = HEAP32[i1 >> 2]; HEAP32[i35 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i35 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i35 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0; switch (i1 | 0) { case 0: case 5: break; default: if ((HEAP32[i34 >> 2] | 0) != (i1 | 0)) ___assert_fail(24619, 24695, 315, 24718); } i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + 4 >> 2] | 0; switch (i1 | 0) { case 0: case 5: break; default: if ((HEAP32[i35 >> 2] | 0) != (i1 | 0)) ___assert_fail(24730, 24695, 316, 24718); } L13 : do switch (HEAP32[i34 >> 2] | 0) { case 1: { do switch (HEAP32[i16 + 8 >> 2] | 0) { case 0: { __ZNK4wasm7Literal3addERKS0_(i30, i34, i35); HEAP32[i36 >> 2] = HEAP32[i30 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i30 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i30 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i30 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 1: { __ZNK4wasm7Literal3subERKS0_(i31, i34, i35); HEAP32[i36 >> 2] = HEAP32[i31 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i31 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i31 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i31 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 2: { __ZNK4wasm7Literal3mulERKS0_(i32, i34, i35); HEAP32[i36 >> 2] = HEAP32[i32 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i32 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i32 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i32 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 3: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24809); if ((__ZN4wasm7Literal10getIntegerEv(i34) | 0) == -2147483648 & (tempRet0 | 0) == -1 ? (i33 = __ZN4wasm7Literal10getIntegerEv(i35) | 0, (i33 | 0) == -1 & (tempRet0 | 0) == -1) : 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24824); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = (HEAP32[i1 >> 2] | 0) / (HEAP32[i35 + 8 >> 2] | 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___divdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 4: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24843); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = ((HEAP32[i1 >> 2] | 0) >>> 0) / ((HEAP32[i35 + 8 >> 2] | 0) >>> 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___udivdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 5: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24858); if ((__ZN4wasm7Literal10getIntegerEv(i34) | 0) == -2147483648 & (tempRet0 | 0) == -1 ? (i33 = __ZN4wasm7Literal10getIntegerEv(i35) | 0, (i33 | 0) == -1 & (tempRet0 | 0) == -1) : 0) { HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = (HEAP32[i1 >> 2] | 0) % (HEAP32[i35 + 8 >> 2] | 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___remdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 6: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24873); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = ((HEAP32[i1 >> 2] | 0) >>> 0) % ((HEAP32[i35 + 8 >> 2] | 0) >>> 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___uremdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 7: { i34 = HEAP32[i35 + 8 >> 2] & HEAP32[i34 + 8 >> 2]; HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 8: { i34 = HEAP32[i35 + 8 >> 2] | HEAP32[i34 + 8 >> 2]; HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 9: { i34 = HEAP32[i35 + 8 >> 2] ^ HEAP32[i34 + 8 >> 2]; HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 10: { i33 = i35 + 8 | 0; i34 = HEAP32[i34 + 8 >> 2] << (((HEAP32[i35 >> 2] | 0) == 1 ? HEAP32[i33 >> 2] | 0 : HEAP32[i33 >> 2] | 0) & 31); HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 11: { i33 = i35 + 8 | 0; i34 = (HEAP32[i34 + 8 >> 2] | 0) >>> (((HEAP32[i35 >> 2] | 0) == 1 ? HEAP32[i33 >> 2] | 0 : HEAP32[i33 >> 2] | 0) & 31); HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 12: { i33 = i35 + 8 | 0; i34 = HEAP32[i34 + 8 >> 2] >> (((HEAP32[i35 >> 2] | 0) == 1 ? HEAP32[i33 >> 2] | 0 : HEAP32[i33 >> 2] | 0) & 31); HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 13: { __ZNK4wasm7Literal4rotLERKS0_(i33, i34, i35); HEAP32[i36 >> 2] = HEAP32[i33 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i33 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i33 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i33 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 14: { __ZNK4wasm7Literal4rotRERKS0_(i6, i34, i35); HEAP32[i36 >> 2] = HEAP32[i6 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 15: { __ZNK4wasm7Literal2eqERKS0_(i7, i34, i35); HEAP32[i36 >> 2] = HEAP32[i7 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i7 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 16: { __ZNK4wasm7Literal2neERKS0_(i8, i34, i35); HEAP32[i36 >> 2] = HEAP32[i8 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i8 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i8 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i8 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 17: { i35 = (HEAP32[i34 + 8 >> 2] | 0) < (HEAP32[i35 + 8 >> 2] | 0) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 18: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >>> 0 < (HEAP32[i35 + 8 >> 2] | 0) >>> 0 & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 19: { i35 = (HEAP32[i34 + 8 >> 2] | 0) <= (HEAP32[i35 + 8 >> 2] | 0) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 20: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >>> 0 <= (HEAP32[i35 + 8 >> 2] | 0) >>> 0 & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 21: { i35 = (HEAP32[i34 + 8 >> 2] | 0) > (HEAP32[i35 + 8 >> 2] | 0) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 22: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >>> 0 > (HEAP32[i35 + 8 >> 2] | 0) >>> 0 & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 23: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >= (HEAP32[i35 + 8 >> 2] | 0) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 24: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >>> 0 >= (HEAP32[i35 + 8 >> 2] | 0) >>> 0 & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } default: _abort(); } while (0); break; } case 2: { do switch (HEAP32[i16 + 8 >> 2] | 0) { case 25: { __ZNK4wasm7Literal3addERKS0_(i9, i34, i35); HEAP32[i36 >> 2] = HEAP32[i9 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i9 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i9 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i9 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 26: { __ZNK4wasm7Literal3subERKS0_(i10, i34, i35); HEAP32[i36 >> 2] = HEAP32[i10 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i10 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 27: { __ZNK4wasm7Literal3mulERKS0_(i11, i34, i35); HEAP32[i36 >> 2] = HEAP32[i11 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 28: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24888); if ((__ZN4wasm7Literal10getIntegerEv(i34) | 0) == 0 & (tempRet0 | 0) == -2147483648 ? (i33 = __ZN4wasm7Literal10getIntegerEv(i35) | 0, (i33 | 0) == -1 & (tempRet0 | 0) == -1) : 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24903); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = (HEAP32[i1 >> 2] | 0) / (HEAP32[i35 + 8 >> 2] | 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___divdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 29: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24922); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = ((HEAP32[i1 >> 2] | 0) >>> 0) / ((HEAP32[i35 + 8 >> 2] | 0) >>> 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___udivdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 30: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24937); if ((__ZN4wasm7Literal10getIntegerEv(i34) | 0) == 0 & (tempRet0 | 0) == -2147483648 ? (i33 = __ZN4wasm7Literal10getIntegerEv(i35) | 0, (i33 | 0) == -1 & (tempRet0 | 0) == -1) : 0) { HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = 0; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = (HEAP32[i1 >> 2] | 0) % (HEAP32[i35 + 8 >> 2] | 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___remdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 31: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24952); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = ((HEAP32[i1 >> 2] | 0) >>> 0) % ((HEAP32[i35 + 8 >> 2] | 0) >>> 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___uremdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 32: { i34 = i34 + 8 | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 >> 2] & HEAP32[i34 >> 2]; i34 = HEAP32[i35 + 4 >> 2] & HEAP32[i34 + 4 >> 2]; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i33; HEAP32[i35 + 4 >> 2] = i34; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 33: { i34 = i34 + 8 | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 >> 2] | HEAP32[i34 >> 2]; i34 = HEAP32[i35 + 4 >> 2] | HEAP32[i34 + 4 >> 2]; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i33; HEAP32[i35 + 4 >> 2] = i34; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 34: { i34 = i34 + 8 | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 >> 2] ^ HEAP32[i34 >> 2]; i34 = HEAP32[i35 + 4 >> 2] ^ HEAP32[i34 + 4 >> 2]; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i33; HEAP32[i35 + 4 >> 2] = i34; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 35: { i1 = i35 + 8 | 0; if ((HEAP32[i35 >> 2] | 0) == 1) i1 = HEAP32[i1 >> 2] & 63; else i1 = HEAP32[i1 >> 2] & 63; i34 = i34 + 8 | 0; i34 = _bitshift64Shl(HEAP32[i34 >> 2] | 0, HEAP32[i34 + 4 >> 2] | 0, i1 & 63 | 0) | 0; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = tempRet0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 36: { i1 = i35 + 8 | 0; if ((HEAP32[i35 >> 2] | 0) == 1) i1 = HEAP32[i1 >> 2] & 63; else i1 = HEAP32[i1 >> 2] & 63; i34 = i34 + 8 | 0; i34 = _bitshift64Lshr(HEAP32[i34 >> 2] | 0, HEAP32[i34 + 4 >> 2] | 0, i1 & 63 | 0) | 0; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = tempRet0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 37: { i1 = i35 + 8 | 0; if ((HEAP32[i35 >> 2] | 0) == 1) i1 = HEAP32[i1 >> 2] & 63; else i1 = HEAP32[i1 >> 2] & 63; i34 = i34 + 8 | 0; i34 = _bitshift64Ashr(HEAP32[i34 >> 2] | 0, HEAP32[i34 + 4 >> 2] | 0, i1 & 63 | 0) | 0; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = tempRet0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 38: { __ZNK4wasm7Literal4rotLERKS0_(i12, i34, i35); HEAP32[i36 >> 2] = HEAP32[i12 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i12 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 39: { __ZNK4wasm7Literal4rotRERKS0_(i13, i34, i35); HEAP32[i36 >> 2] = HEAP32[i13 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i13 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i13 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i13 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 40: { __ZNK4wasm7Literal2eqERKS0_(i14, i34, i35); HEAP32[i36 >> 2] = HEAP32[i14 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i14 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i14 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i14 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 41: { __ZNK4wasm7Literal2neERKS0_(i15, i34, i35); HEAP32[i36 >> 2] = HEAP32[i15 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i15 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i15 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i15 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 42: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = ((i32 | 0) < (i33 | 0) | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 < (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 43: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = (i32 >>> 0 < i33 >>> 0 | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 < (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 44: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = ((i32 | 0) < (i33 | 0) | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 <= (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 45: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = (i32 >>> 0 < i33 >>> 0 | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 <= (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 46: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = ((i32 | 0) > (i33 | 0) | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 > (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 47: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = (i32 >>> 0 > i33 >>> 0 | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 > (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 48: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = ((i32 | 0) > (i33 | 0) | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 >= (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 49: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = (i32 >>> 0 > i33 >>> 0 | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 >= (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } default: _abort(); } while (0); break; } case 4: case 3: { do switch (HEAP32[i16 + 8 >> 2] | 0) { case 63: case 50: { __ZNK4wasm7Literal3addERKS0_(i17, i34, i35); HEAP32[i36 >> 2] = HEAP32[i17 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i17 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i17 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i17 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 64: case 51: { __ZNK4wasm7Literal3subERKS0_(i18, i34, i35); HEAP32[i36 >> 2] = HEAP32[i18 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i18 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i18 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i18 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 65: case 52: { __ZNK4wasm7Literal3mulERKS0_(i19, i34, i35); HEAP32[i36 >> 2] = HEAP32[i19 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i19 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i19 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i19 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 66: case 53: { __ZNK4wasm7Literal3divERKS0_(i20, i34, i35); HEAP32[i36 >> 2] = HEAP32[i20 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i20 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i20 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i20 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 67: case 54: { __ZNK4wasm7Literal8copysignERKS0_(i21, i34, i35); HEAP32[i36 >> 2] = HEAP32[i21 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i21 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i21 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i21 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 68: case 55: { __ZNK4wasm7Literal3minERKS0_(i22, i34, i35); HEAP32[i36 >> 2] = HEAP32[i22 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i22 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i22 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i22 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 69: case 56: { __ZNK4wasm7Literal3maxERKS0_(i23, i34, i35); HEAP32[i36 >> 2] = HEAP32[i23 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i23 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i23 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i23 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 70: case 57: { __ZNK4wasm7Literal2eqERKS0_(i24, i34, i35); HEAP32[i36 >> 2] = HEAP32[i24 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 71: case 58: { __ZNK4wasm7Literal2neERKS0_(i25, i34, i35); HEAP32[i36 >> 2] = HEAP32[i25 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i25 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i25 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 72: case 59: { __ZNK4wasm7Literal2ltERKS0_(i26, i34, i35); HEAP32[i36 >> 2] = HEAP32[i26 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i26 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i26 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i26 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 73: case 60: { __ZNK4wasm7Literal2leERKS0_(i27, i34, i35); HEAP32[i36 >> 2] = HEAP32[i27 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i27 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i27 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i27 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 74: case 61: { __ZNK4wasm7Literal2gtERKS0_(i28, i34, i35); HEAP32[i36 >> 2] = HEAP32[i28 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i28 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i28 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i28 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 75: case 62: { __ZNK4wasm7Literal2geERKS0_(i29, i34, i35); HEAP32[i36 >> 2] = HEAP32[i29 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i29 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i29 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i29 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } default: _abort(); } while (0); break; } default: _abort(); } while (0); } else { HEAP32[i36 >> 2] = HEAP32[i1 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = HEAP32[i1 + 16 >> 2]; HEAP32[i36 + 20 >> 2] = HEAP32[i1 + 20 >> 2]; } STACKTOP = i37; return; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11visitBinaryEPNS_6BinaryE(i36, i5, i16) { i36 = i36 | 0; i5 = i5 | 0; i16 = i16 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i37 = 0; i37 = STACKTOP; STACKTOP = STACKTOP + 496 | 0; i1 = i37 + 472 | 0; i34 = i37 + 456 | 0; i35 = i37 + 432 | 0; i30 = i37 + 416 | 0; i31 = i37 + 400 | 0; i32 = i37 + 384 | 0; i33 = i37 + 368 | 0; i6 = i37 + 352 | 0; i7 = i37 + 336 | 0; i8 = i37 + 320 | 0; i9 = i37 + 304 | 0; i10 = i37 + 288 | 0; i11 = i37 + 272 | 0; i12 = i37 + 256 | 0; i13 = i37 + 240 | 0; i14 = i37 + 224 | 0; i15 = i37 + 208 | 0; i17 = i37 + 192 | 0; i18 = i37 + 176 | 0; i19 = i37 + 160 | 0; i20 = i37 + 144 | 0; i21 = i37 + 128 | 0; i22 = i37 + 112 | 0; i23 = i37 + 96 | 0; i24 = i37 + 80 | 0; i25 = i37 + 64 | 0; i26 = i37 + 48 | 0; i27 = i37 + 32 | 0; i28 = i37 + 16 | 0; i29 = i37; i2 = i16 + 12 | 0; __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i1, i5, HEAP32[i2 >> 2] | 0); i3 = i1 + 16 | 0; if ((HEAP32[i3 >> 2] | 0) == 0 ? (HEAP32[i34 >> 2] = HEAP32[i1 >> 2], HEAP32[i34 + 4 >> 2] = HEAP32[i1 + 4 >> 2], HEAP32[i34 + 8 >> 2] = HEAP32[i1 + 8 >> 2], HEAP32[i34 + 12 >> 2] = HEAP32[i1 + 12 >> 2], i4 = i16 + 16 | 0, __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i35, i5, HEAP32[i4 >> 2] | 0), HEAP32[i1 >> 2] = HEAP32[i35 >> 2], HEAP32[i1 + 4 >> 2] = HEAP32[i35 + 4 >> 2], HEAP32[i1 + 8 >> 2] = HEAP32[i35 + 8 >> 2], HEAP32[i1 + 12 >> 2] = HEAP32[i35 + 12 >> 2], HEAP32[i1 + 16 >> 2] = HEAP32[i35 + 16 >> 2], (HEAP32[i3 >> 2] | 0) == 0) : 0) { HEAP32[i35 >> 2] = HEAP32[i1 >> 2]; HEAP32[i35 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i35 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i35 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0; switch (i1 | 0) { case 0: case 5: break; default: if ((HEAP32[i34 >> 2] | 0) != (i1 | 0)) ___assert_fail(24619, 24695, 315, 24718); } i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + 4 >> 2] | 0; switch (i1 | 0) { case 0: case 5: break; default: if ((HEAP32[i35 >> 2] | 0) != (i1 | 0)) ___assert_fail(24730, 24695, 316, 24718); } L13 : do switch (HEAP32[i34 >> 2] | 0) { case 1: { do switch (HEAP32[i16 + 8 >> 2] | 0) { case 0: { __ZNK4wasm7Literal3addERKS0_(i30, i34, i35); HEAP32[i36 >> 2] = HEAP32[i30 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i30 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i30 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i30 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 1: { __ZNK4wasm7Literal3subERKS0_(i31, i34, i35); HEAP32[i36 >> 2] = HEAP32[i31 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i31 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i31 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i31 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 2: { __ZNK4wasm7Literal3mulERKS0_(i32, i34, i35); HEAP32[i36 >> 2] = HEAP32[i32 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i32 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i32 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i32 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 3: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24809); if ((__ZN4wasm7Literal10getIntegerEv(i34) | 0) == -2147483648 & (tempRet0 | 0) == -1 ? (i33 = __ZN4wasm7Literal10getIntegerEv(i35) | 0, (i33 | 0) == -1 & (tempRet0 | 0) == -1) : 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24824); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = (HEAP32[i1 >> 2] | 0) / (HEAP32[i35 + 8 >> 2] | 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___divdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 4: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24843); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = ((HEAP32[i1 >> 2] | 0) >>> 0) / ((HEAP32[i35 + 8 >> 2] | 0) >>> 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___udivdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 5: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24858); if ((__ZN4wasm7Literal10getIntegerEv(i34) | 0) == -2147483648 & (tempRet0 | 0) == -1 ? (i33 = __ZN4wasm7Literal10getIntegerEv(i35) | 0, (i33 | 0) == -1 & (tempRet0 | 0) == -1) : 0) { HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = (HEAP32[i1 >> 2] | 0) % (HEAP32[i35 + 8 >> 2] | 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___remdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 6: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24873); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = ((HEAP32[i1 >> 2] | 0) >>> 0) % ((HEAP32[i35 + 8 >> 2] | 0) >>> 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___uremdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 7: { i34 = HEAP32[i35 + 8 >> 2] & HEAP32[i34 + 8 >> 2]; HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 8: { i34 = HEAP32[i35 + 8 >> 2] | HEAP32[i34 + 8 >> 2]; HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 9: { i34 = HEAP32[i35 + 8 >> 2] ^ HEAP32[i34 + 8 >> 2]; HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 10: { i33 = i35 + 8 | 0; i34 = HEAP32[i34 + 8 >> 2] << (((HEAP32[i35 >> 2] | 0) == 1 ? HEAP32[i33 >> 2] | 0 : HEAP32[i33 >> 2] | 0) & 31); HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 11: { i33 = i35 + 8 | 0; i34 = (HEAP32[i34 + 8 >> 2] | 0) >>> (((HEAP32[i35 >> 2] | 0) == 1 ? HEAP32[i33 >> 2] | 0 : HEAP32[i33 >> 2] | 0) & 31); HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 12: { i33 = i35 + 8 | 0; i34 = HEAP32[i34 + 8 >> 2] >> (((HEAP32[i35 >> 2] | 0) == 1 ? HEAP32[i33 >> 2] | 0 : HEAP32[i33 >> 2] | 0) & 31); HEAP32[i36 >> 2] = 1; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 13: { __ZNK4wasm7Literal4rotLERKS0_(i33, i34, i35); HEAP32[i36 >> 2] = HEAP32[i33 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i33 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i33 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i33 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 14: { __ZNK4wasm7Literal4rotRERKS0_(i6, i34, i35); HEAP32[i36 >> 2] = HEAP32[i6 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 15: { __ZNK4wasm7Literal2eqERKS0_(i7, i34, i35); HEAP32[i36 >> 2] = HEAP32[i7 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i7 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 16: { __ZNK4wasm7Literal2neERKS0_(i8, i34, i35); HEAP32[i36 >> 2] = HEAP32[i8 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i8 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i8 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i8 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 17: { i35 = (HEAP32[i34 + 8 >> 2] | 0) < (HEAP32[i35 + 8 >> 2] | 0) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 18: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >>> 0 < (HEAP32[i35 + 8 >> 2] | 0) >>> 0 & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 19: { i35 = (HEAP32[i34 + 8 >> 2] | 0) <= (HEAP32[i35 + 8 >> 2] | 0) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 20: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >>> 0 <= (HEAP32[i35 + 8 >> 2] | 0) >>> 0 & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 21: { i35 = (HEAP32[i34 + 8 >> 2] | 0) > (HEAP32[i35 + 8 >> 2] | 0) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 22: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >>> 0 > (HEAP32[i35 + 8 >> 2] | 0) >>> 0 & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 23: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >= (HEAP32[i35 + 8 >> 2] | 0) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 24: { i35 = (HEAP32[i34 + 8 >> 2] | 0) >>> 0 >= (HEAP32[i35 + 8 >> 2] | 0) >>> 0 & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } default: _abort(); } while (0); break; } case 2: { do switch (HEAP32[i16 + 8 >> 2] | 0) { case 25: { __ZNK4wasm7Literal3addERKS0_(i9, i34, i35); HEAP32[i36 >> 2] = HEAP32[i9 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i9 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i9 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i9 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 26: { __ZNK4wasm7Literal3subERKS0_(i10, i34, i35); HEAP32[i36 >> 2] = HEAP32[i10 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i10 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 27: { __ZNK4wasm7Literal3mulERKS0_(i11, i34, i35); HEAP32[i36 >> 2] = HEAP32[i11 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 28: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24888); if ((__ZN4wasm7Literal10getIntegerEv(i34) | 0) == 0 & (tempRet0 | 0) == -2147483648 ? (i33 = __ZN4wasm7Literal10getIntegerEv(i35) | 0, (i33 | 0) == -1 & (tempRet0 | 0) == -1) : 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24903); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = (HEAP32[i1 >> 2] | 0) / (HEAP32[i35 + 8 >> 2] | 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___divdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 29: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24922); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = ((HEAP32[i1 >> 2] | 0) >>> 0) / ((HEAP32[i35 + 8 >> 2] | 0) >>> 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___udivdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 30: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24937); if ((__ZN4wasm7Literal10getIntegerEv(i34) | 0) == 0 & (tempRet0 | 0) == -2147483648 ? (i33 = __ZN4wasm7Literal10getIntegerEv(i35) | 0, (i33 | 0) == -1 & (tempRet0 | 0) == -1) : 0) { HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = 0; HEAP32[i35 + 4 >> 2] = 0; HEAP32[i36 + 16 >> 2] = 0; break L13; } i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = (HEAP32[i1 >> 2] | 0) % (HEAP32[i35 + 8 >> 2] | 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___remdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 31: { if ((__ZN4wasm7Literal10getIntegerEv(i35) | 0) == 0 & (tempRet0 | 0) == 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i5 >> 2] >> 2] & 255](i5, 24952); i1 = i34 + 8 | 0; if ((HEAP32[i34 >> 2] | 0) == 1) { i3 = 1; i1 = ((HEAP32[i1 >> 2] | 0) >>> 0) % ((HEAP32[i35 + 8 >> 2] | 0) >>> 0) | 0; i2 = 0; } else { i3 = i1; i1 = i35 + 8 | 0; i1 = ___uremdi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = 2; i2 = tempRet0; } HEAP32[i36 >> 2] = i3; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i1; HEAP32[i35 + 4 >> 2] = i2; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 32: { i34 = i34 + 8 | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 >> 2] & HEAP32[i34 >> 2]; i34 = HEAP32[i35 + 4 >> 2] & HEAP32[i34 + 4 >> 2]; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i33; HEAP32[i35 + 4 >> 2] = i34; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 33: { i34 = i34 + 8 | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 >> 2] | HEAP32[i34 >> 2]; i34 = HEAP32[i35 + 4 >> 2] | HEAP32[i34 + 4 >> 2]; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i33; HEAP32[i35 + 4 >> 2] = i34; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 34: { i34 = i34 + 8 | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 >> 2] ^ HEAP32[i34 >> 2]; i34 = HEAP32[i35 + 4 >> 2] ^ HEAP32[i34 + 4 >> 2]; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i33; HEAP32[i35 + 4 >> 2] = i34; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 35: { i1 = i35 + 8 | 0; if ((HEAP32[i35 >> 2] | 0) == 1) i1 = HEAP32[i1 >> 2] & 63; else i1 = HEAP32[i1 >> 2] & 63; i34 = i34 + 8 | 0; i34 = _bitshift64Shl(HEAP32[i34 >> 2] | 0, HEAP32[i34 + 4 >> 2] | 0, i1 & 63 | 0) | 0; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = tempRet0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 36: { i1 = i35 + 8 | 0; if ((HEAP32[i35 >> 2] | 0) == 1) i1 = HEAP32[i1 >> 2] & 63; else i1 = HEAP32[i1 >> 2] & 63; i34 = i34 + 8 | 0; i34 = _bitshift64Lshr(HEAP32[i34 >> 2] | 0, HEAP32[i34 + 4 >> 2] | 0, i1 & 63 | 0) | 0; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = tempRet0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 37: { i1 = i35 + 8 | 0; if ((HEAP32[i35 >> 2] | 0) == 1) i1 = HEAP32[i1 >> 2] & 63; else i1 = HEAP32[i1 >> 2] & 63; i34 = i34 + 8 | 0; i34 = _bitshift64Ashr(HEAP32[i34 >> 2] | 0, HEAP32[i34 + 4 >> 2] | 0, i1 & 63 | 0) | 0; HEAP32[i36 >> 2] = 2; i35 = i36 + 8 | 0; HEAP32[i35 >> 2] = i34; HEAP32[i35 + 4 >> 2] = tempRet0; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 38: { __ZNK4wasm7Literal4rotLERKS0_(i12, i34, i35); HEAP32[i36 >> 2] = HEAP32[i12 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i12 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 39: { __ZNK4wasm7Literal4rotRERKS0_(i13, i34, i35); HEAP32[i36 >> 2] = HEAP32[i13 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i13 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i13 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i13 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 40: { __ZNK4wasm7Literal2eqERKS0_(i14, i34, i35); HEAP32[i36 >> 2] = HEAP32[i14 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i14 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i14 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i14 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 41: { __ZNK4wasm7Literal2neERKS0_(i15, i34, i35); HEAP32[i36 >> 2] = HEAP32[i15 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i15 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i15 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i15 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 42: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = ((i32 | 0) < (i33 | 0) | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 < (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 43: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = (i32 >>> 0 < i33 >>> 0 | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 < (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 44: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = ((i32 | 0) < (i33 | 0) | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 <= (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 45: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = (i32 >>> 0 < i33 >>> 0 | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 <= (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 46: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = ((i32 | 0) > (i33 | 0) | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 > (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 47: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = (i32 >>> 0 > i33 >>> 0 | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 > (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 48: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = ((i32 | 0) > (i33 | 0) | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 >= (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 49: { i34 = i34 + 8 | 0; i32 = HEAP32[i34 + 4 >> 2] | 0; i35 = i35 + 8 | 0; i33 = HEAP32[i35 + 4 >> 2] | 0; i35 = (i32 >>> 0 > i33 >>> 0 | ((i32 | 0) == (i33 | 0) ? (HEAP32[i34 >> 2] | 0) >>> 0 >= (HEAP32[i35 >> 2] | 0) >>> 0 : 0)) & 1; HEAP32[i36 >> 2] = 1; HEAP32[i36 + 8 >> 2] = i35; HEAP32[i36 + 16 >> 2] = 0; break L13; } default: _abort(); } while (0); break; } case 4: case 3: { do switch (HEAP32[i16 + 8 >> 2] | 0) { case 63: case 50: { __ZNK4wasm7Literal3addERKS0_(i17, i34, i35); HEAP32[i36 >> 2] = HEAP32[i17 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i17 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i17 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i17 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 64: case 51: { __ZNK4wasm7Literal3subERKS0_(i18, i34, i35); HEAP32[i36 >> 2] = HEAP32[i18 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i18 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i18 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i18 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 65: case 52: { __ZNK4wasm7Literal3mulERKS0_(i19, i34, i35); HEAP32[i36 >> 2] = HEAP32[i19 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i19 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i19 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i19 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 66: case 53: { __ZNK4wasm7Literal3divERKS0_(i20, i34, i35); HEAP32[i36 >> 2] = HEAP32[i20 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i20 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i20 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i20 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 67: case 54: { __ZNK4wasm7Literal8copysignERKS0_(i21, i34, i35); HEAP32[i36 >> 2] = HEAP32[i21 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i21 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i21 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i21 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 68: case 55: { __ZNK4wasm7Literal3minERKS0_(i22, i34, i35); HEAP32[i36 >> 2] = HEAP32[i22 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i22 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i22 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i22 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 69: case 56: { __ZNK4wasm7Literal3maxERKS0_(i23, i34, i35); HEAP32[i36 >> 2] = HEAP32[i23 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i23 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i23 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i23 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 70: case 57: { __ZNK4wasm7Literal2eqERKS0_(i24, i34, i35); HEAP32[i36 >> 2] = HEAP32[i24 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 71: case 58: { __ZNK4wasm7Literal2neERKS0_(i25, i34, i35); HEAP32[i36 >> 2] = HEAP32[i25 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i25 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i25 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 72: case 59: { __ZNK4wasm7Literal2ltERKS0_(i26, i34, i35); HEAP32[i36 >> 2] = HEAP32[i26 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i26 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i26 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i26 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 73: case 60: { __ZNK4wasm7Literal2leERKS0_(i27, i34, i35); HEAP32[i36 >> 2] = HEAP32[i27 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i27 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i27 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i27 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 74: case 61: { __ZNK4wasm7Literal2gtERKS0_(i28, i34, i35); HEAP32[i36 >> 2] = HEAP32[i28 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i28 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i28 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i28 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } case 75: case 62: { __ZNK4wasm7Literal2geERKS0_(i29, i34, i35); HEAP32[i36 >> 2] = HEAP32[i29 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i29 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i29 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i29 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = 0; break L13; } default: _abort(); } while (0); break; } default: _abort(); } while (0); } else { HEAP32[i36 >> 2] = HEAP32[i1 >> 2]; HEAP32[i36 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i36 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i36 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; HEAP32[i36 + 16 >> 2] = HEAP32[i1 + 16 >> 2]; HEAP32[i36 + 20 >> 2] = HEAP32[i1 + 20 >> 2]; } STACKTOP = i37; return; } function _printf_core(i28, i3, i52, i53, i54) { i28 = i28 | 0; i3 = i3 | 0; i52 = i52 | 0; i53 = i53 | 0; i54 = i54 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, d6 = 0.0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, d11 = 0.0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0, i55 = 0; i55 = STACKTOP; STACKTOP = STACKTOP + 624 | 0; i48 = i55 + 24 | 0; i49 = i55 + 16 | 0; i50 = i55 + 588 | 0; i39 = i55 + 576 | 0; i51 = i55; i34 = i55 + 536 | 0; i29 = i55 + 8 | 0; i30 = i55 + 528 | 0; i31 = (i28 | 0) != 0; i32 = i34 + 40 | 0; i33 = i32; i34 = i34 + 39 | 0; i35 = i29 + 4 | 0; i36 = i50; i37 = 0 - i36 | 0; i38 = i39 + 12 | 0; i39 = i39 + 11 | 0; i40 = i38; i41 = i40 - i36 | 0; i42 = -2 - i36 | 0; i43 = i40 + 2 | 0; i44 = i48 + 288 | 0; i45 = i50 + 9 | 0; i46 = i45; i47 = i50 + 8 | 0; i2 = 0; i1 = 0; i8 = 0; L1 : while (1) { do if ((i1 | 0) > -1) if ((i2 | 0) > (2147483647 - i1 | 0)) { i1 = ___errno_location() | 0; HEAP32[i1 >> 2] = 75; i1 = -1; break; } else { i1 = i2 + i1 | 0; break; } while (0); i2 = HEAP8[i3 >> 0] | 0; if (!(i2 << 24 >> 24)) { i27 = 243; break; } else i4 = i3; L9 : while (1) { switch (i2 << 24 >> 24) { case 37: { i2 = i4; i27 = 9; break L9; } case 0: { i2 = i4; break L9; } default: {} } i2 = i4 + 1 | 0; i4 = i2; i2 = HEAP8[i2 >> 0] | 0; } L12 : do if ((i27 | 0) == 9) while (1) { i27 = 0; if ((HEAP8[i4 + 1 >> 0] | 0) != 37) break L12; i2 = i2 + 1 | 0; i4 = i4 + 2 | 0; if ((HEAP8[i4 >> 0] | 0) == 37) i27 = 9; else break; } while (0); i2 = i2 - i3 | 0; if (i31 ? (HEAP32[i28 >> 2] & 32 | 0) == 0 : 0) ___fwritex(i3, i2, i28) | 0; if (i2 | 0) { i3 = i4; continue; } i7 = i4 + 1 | 0; i5 = HEAP8[i7 >> 0] | 0; i2 = (i5 << 24 >> 24) + -48 | 0; if (i2 >>> 0 < 10) { i10 = (HEAP8[i4 + 2 >> 0] | 0) == 36; i7 = i10 ? i4 + 3 | 0 : i7; i12 = i10 ? i2 : -1; i10 = i10 ? 1 : i8; i2 = HEAP8[i7 >> 0] | 0; } else { i12 = -1; i10 = i8; i2 = i5; } i4 = (i2 << 24 >> 24) + -32 | 0; L25 : do if (i4 >>> 0 < 32) { i5 = 0; do { if (!(1 << i4 & 75913)) break L25; i5 = 1 << (i2 << 24 >> 24) + -32 | i5; i7 = i7 + 1 | 0; i2 = HEAP8[i7 >> 0] | 0; i4 = (i2 << 24 >> 24) + -32 | 0; } while (i4 >>> 0 < 32); } else i5 = 0; while (0); do if (i2 << 24 >> 24 != 42) { i4 = (i2 << 24 >> 24) + -48 | 0; if (i4 >>> 0 < 10) { i8 = 0; do { i8 = (i8 * 10 | 0) + i4 | 0; i7 = i7 + 1 | 0; i2 = HEAP8[i7 >> 0] | 0; i4 = (i2 << 24 >> 24) + -48 | 0; } while (i4 >>> 0 < 10); if ((i8 | 0) < 0) { i1 = -1; break L1; } else i26 = i10; } else { i8 = 0; i26 = i10; } } else { i9 = i7 + 1 | 0; i2 = HEAP8[i9 >> 0] | 0; i4 = (i2 << 24 >> 24) + -48 | 0; if (i4 >>> 0 < 10 ? (HEAP8[i7 + 2 >> 0] | 0) == 36 : 0) { HEAP32[i54 + (i4 << 2) >> 2] = 10; i2 = HEAP32[i53 + ((HEAP8[i9 >> 0] | 0) + -48 << 3) >> 2] | 0; i4 = 1; i9 = i7 + 3 | 0; } else { if (i10 | 0) { i1 = -1; break L1; } if (!i31) { i8 = 0; i26 = 0; i7 = i9; break; } i4 = (HEAP32[i52 >> 2] | 0) + (4 - 1) & ~(4 - 1); i2 = HEAP32[i4 >> 2] | 0; HEAP32[i52 >> 2] = i4 + 4; i4 = 0; } i26 = (i2 | 0) < 0; i8 = i26 ? 0 - i2 | 0 : i2; i5 = i26 ? i5 | 8192 : i5; i26 = i4; i7 = i9; i2 = HEAP8[i9 >> 0] | 0; } while (0); L45 : do if (i2 << 24 >> 24 == 46) { i2 = i7 + 1 | 0; i4 = HEAP8[i2 >> 0] | 0; if (i4 << 24 >> 24 != 42) { i7 = (i4 << 24 >> 24) + -48 | 0; if (i7 >>> 0 < 10) i4 = 0; else { i13 = 0; break; } while (1) { i4 = (i4 * 10 | 0) + i7 | 0; i2 = i2 + 1 | 0; i7 = (HEAP8[i2 >> 0] | 0) + -48 | 0; if (i7 >>> 0 >= 10) { i13 = i4; break L45; } } } i2 = i7 + 2 | 0; i4 = (HEAP8[i2 >> 0] | 0) + -48 | 0; if (i4 >>> 0 < 10 ? (HEAP8[i7 + 3 >> 0] | 0) == 36 : 0) { HEAP32[i54 + (i4 << 2) >> 2] = 10; i13 = HEAP32[i53 + ((HEAP8[i2 >> 0] | 0) + -48 << 3) >> 2] | 0; i2 = i7 + 4 | 0; break; } if (i26 | 0) { i1 = -1; break L1; } if (i31) { i25 = (HEAP32[i52 >> 2] | 0) + (4 - 1) & ~(4 - 1); i13 = HEAP32[i25 >> 2] | 0; HEAP32[i52 >> 2] = i25 + 4; } else i13 = 0; } else { i13 = -1; i2 = i7; } while (0); i10 = 0; while (1) { i4 = (HEAP8[i2 >> 0] | 0) + -65 | 0; if (i4 >>> 0 > 57) { i1 = -1; break L1; } i25 = i2 + 1 | 0; i4 = HEAP8[35643 + (i10 * 58 | 0) + i4 >> 0] | 0; i7 = i4 & 255; if ((i7 + -1 | 0) >>> 0 < 8) { i10 = i7; i2 = i25; } else break; } if (!(i4 << 24 >> 24)) { i1 = -1; break; } i9 = (i12 | 0) > -1; do if (i4 << 24 >> 24 == 19) if (i9) { i1 = -1; break L1; } else i27 = 51; else { if (i9) { HEAP32[i54 + (i12 << 2) >> 2] = i7; i23 = i53 + (i12 << 3) | 0; i24 = HEAP32[i23 + 4 >> 2] | 0; i27 = i51; HEAP32[i27 >> 2] = HEAP32[i23 >> 2]; HEAP32[i27 + 4 >> 2] = i24; i27 = 51; break; } if (!i31) { i1 = 0; break L1; } _pop_arg_529(i51, i7, i52); } while (0); if ((i27 | 0) == 51 ? (i27 = 0, !i31) : 0) { i2 = 0; i8 = i26; i3 = i25; continue; } i20 = HEAP8[i2 >> 0] | 0; i20 = (i10 | 0) != 0 & (i20 & 15 | 0) == 3 ? i20 & -33 : i20; i9 = i5 & -65537; i24 = (i5 & 8192 | 0) == 0 ? i5 : i9; L74 : do switch (i20 | 0) { case 110: switch ((i10 & 255) << 24 >> 24) { case 0: { HEAP32[HEAP32[i51 >> 2] >> 2] = i1; i2 = 0; i8 = i26; i3 = i25; continue L1; } case 1: { HEAP32[HEAP32[i51 >> 2] >> 2] = i1; i2 = 0; i8 = i26; i3 = i25; continue L1; } case 2: { i2 = HEAP32[i51 >> 2] | 0; HEAP32[i2 >> 2] = i1; HEAP32[i2 + 4 >> 2] = ((i1 | 0) < 0) << 31 >> 31; i2 = 0; i8 = i26; i3 = i25; continue L1; } case 3: { HEAP16[HEAP32[i51 >> 2] >> 1] = i1; i2 = 0; i8 = i26; i3 = i25; continue L1; } case 4: { HEAP8[HEAP32[i51 >> 2] >> 0] = i1; i2 = 0; i8 = i26; i3 = i25; continue L1; } case 6: { HEAP32[HEAP32[i51 >> 2] >> 2] = i1; i2 = 0; i8 = i26; i3 = i25; continue L1; } case 7: { i2 = HEAP32[i51 >> 2] | 0; HEAP32[i2 >> 2] = i1; HEAP32[i2 + 4 >> 2] = ((i1 | 0) < 0) << 31 >> 31; i2 = 0; i8 = i26; i3 = i25; continue L1; } default: { i2 = 0; i8 = i26; i3 = i25; continue L1; } } case 112: { i9 = 120; i10 = i13 >>> 0 > 8 ? i13 : 8; i2 = i24 | 8; i27 = 63; break; } case 88: case 120: { i9 = i20; i10 = i13; i2 = i24; i27 = 63; break; } case 111: { i4 = i51; i2 = HEAP32[i4 >> 2] | 0; i4 = HEAP32[i4 + 4 >> 2] | 0; if ((i2 | 0) == 0 & (i4 | 0) == 0) i3 = i32; else { i3 = i32; do { i3 = i3 + -1 | 0; HEAP8[i3 >> 0] = i2 & 7 | 48; i2 = _bitshift64Lshr(i2 | 0, i4 | 0, 3) | 0; i4 = tempRet0; } while (!((i2 | 0) == 0 & (i4 | 0) == 0)); } if (!(i24 & 8)) { i4 = 0; i5 = 36123; i7 = i13; i2 = i24; i27 = 76; } else { i7 = i33 - i3 | 0; i4 = 0; i5 = 36123; i7 = (i13 | 0) > (i7 | 0) ? i13 : i7 + 1 | 0; i2 = i24; i27 = 76; } break; } case 105: case 100: { i3 = i51; i2 = HEAP32[i3 >> 2] | 0; i3 = HEAP32[i3 + 4 >> 2] | 0; if ((i3 | 0) < 0) { i2 = _i64Subtract(0, 0, i2 | 0, i3 | 0) | 0; i3 = tempRet0; i4 = i51; HEAP32[i4 >> 2] = i2; HEAP32[i4 + 4 >> 2] = i3; i4 = 1; i5 = 36123; i27 = 75; break L74; } if (!(i24 & 2048)) { i5 = i24 & 1; i4 = i5; i5 = (i5 | 0) == 0 ? 36123 : 36125; i27 = 75; } else { i4 = 1; i5 = 36124; i27 = 75; } break; } case 117: { i3 = i51; i4 = 0; i5 = 36123; i2 = HEAP32[i3 >> 2] | 0; i3 = HEAP32[i3 + 4 >> 2] | 0; i27 = 75; break; } case 99: { HEAP8[i34 >> 0] = HEAP32[i51 >> 2]; i3 = i34; i12 = 0; i10 = 36123; i4 = i32; i2 = 1; break; } case 109: { i2 = ___errno_location() | 0; i2 = _strerror(HEAP32[i2 >> 2] | 0) | 0; i27 = 81; break; } case 115: { i2 = HEAP32[i51 >> 2] | 0; i2 = i2 | 0 ? i2 : 36133; i27 = 81; break; } case 67: { HEAP32[i29 >> 2] = HEAP32[i51 >> 2]; HEAP32[i35 >> 2] = 0; HEAP32[i51 >> 2] = i29; i9 = -1; i4 = i29; i27 = 85; break; } case 83: { i2 = HEAP32[i51 >> 2] | 0; if (!i13) { _pad(i28, 32, i8, 0, i24); i2 = 0; i27 = 96; } else { i9 = i13; i4 = i2; i27 = 85; } break; } case 65: case 71: case 70: case 69: case 97: case 103: case 102: case 101: { d6 = +HEAPF64[i51 >> 3]; HEAP32[i49 >> 2] = 0; HEAPF64[tempDoublePtr >> 3] = d6; if ((HEAP32[tempDoublePtr + 4 >> 2] | 0) >= 0) { i2 = i24 & 1; if (!(i24 & 2048)) { i22 = i2; i23 = (i2 | 0) == 0 ? 36141 : 36146; } else { i22 = 1; i23 = 36143; } } else { d6 = -d6; i22 = 1; i23 = 36140; } HEAPF64[tempDoublePtr >> 3] = d6; i21 = HEAP32[tempDoublePtr + 4 >> 2] & 2146435072; do if (i21 >>> 0 < 2146435072 | (i21 | 0) == 2146435072 & 0 < 0) { d11 = +_frexpl(d6, i49) * 2.0; i3 = d11 != 0.0; if (i3) HEAP32[i49 >> 2] = (HEAP32[i49 >> 2] | 0) + -1; i15 = i20 | 32; if ((i15 | 0) == 97) { i7 = i20 & 32; i12 = (i7 | 0) == 0 ? i23 : i23 + 9 | 0; i10 = i22 | 2; i2 = 12 - i13 | 0; do if (!(i13 >>> 0 > 11 | (i2 | 0) == 0)) { d6 = 8.0; do { i2 = i2 + -1 | 0; d6 = d6 * 16.0; } while ((i2 | 0) != 0); if ((HEAP8[i12 >> 0] | 0) == 45) { d6 = -(d6 + (-d11 - d6)); break; } else { d6 = d11 + d6 - d6; break; } } else d6 = d11; while (0); i3 = HEAP32[i49 >> 2] | 0; i2 = (i3 | 0) < 0 ? 0 - i3 | 0 : i3; i2 = _fmt_u(i2, ((i2 | 0) < 0) << 31 >> 31, i38) | 0; if ((i2 | 0) == (i38 | 0)) { HEAP8[i39 >> 0] = 48; i2 = i39; } HEAP8[i2 + -1 >> 0] = (i3 >> 31 & 2) + 43; i9 = i2 + -2 | 0; HEAP8[i9 >> 0] = i20 + 15; i5 = (i13 | 0) < 1; i4 = (i24 & 8 | 0) == 0; i2 = i50; do { i23 = ~~d6; i3 = i2 + 1 | 0; HEAP8[i2 >> 0] = HEAPU8[36107 + i23 >> 0] | i7; d6 = (d6 - +(i23 | 0)) * 16.0; do if ((i3 - i36 | 0) == 1) { if (i4 & (i5 & d6 == 0.0)) { i2 = i3; break; } HEAP8[i3 >> 0] = 46; i2 = i2 + 2 | 0; } else i2 = i3; while (0); } while (d6 != 0.0); i5 = i9; i4 = (i13 | 0) != 0 & (i42 + i2 | 0) < (i13 | 0) ? i43 + i13 - i5 | 0 : i41 - i5 + i2 | 0; i7 = i4 + i10 | 0; _pad(i28, 32, i8, i7, i24); if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i12, i10, i28) | 0; _pad(i28, 48, i8, i7, i24 ^ 65536); i3 = i2 - i36 | 0; if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i50, i3, i28) | 0; i2 = i40 - i5 | 0; _pad(i28, 48, i4 - (i3 + i2) | 0, 0, 0); if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i9, i2, i28) | 0; _pad(i28, 32, i8, i7, i24 ^ 8192); i2 = (i7 | 0) < (i8 | 0) ? i8 : i7; break; } i2 = (i13 | 0) < 0 ? 6 : i13; if (i3) { i3 = (HEAP32[i49 >> 2] | 0) + -28 | 0; HEAP32[i49 >> 2] = i3; d6 = d11 * 268435456.0; } else { d6 = d11; i3 = HEAP32[i49 >> 2] | 0; } i21 = (i3 | 0) < 0 ? i48 : i44; i4 = i21; do { i19 = ~~d6 >>> 0; HEAP32[i4 >> 2] = i19; i4 = i4 + 4 | 0; d6 = (d6 - +(i19 >>> 0)) * 1.0e9; } while (d6 != 0.0); if ((i3 | 0) > 0) { i5 = i21; i9 = i4; while (1) { i7 = (i3 | 0) > 29 ? 29 : i3; i3 = i9 + -4 | 0; do if (i3 >>> 0 >= i5 >>> 0) { i4 = 0; do { i18 = _bitshift64Shl(HEAP32[i3 >> 2] | 0, 0, i7 | 0) | 0; i18 = _i64Add(i18 | 0, tempRet0 | 0, i4 | 0, 0) | 0; i19 = tempRet0; i17 = ___uremdi3(i18 | 0, i19 | 0, 1e9, 0) | 0; HEAP32[i3 >> 2] = i17; i4 = ___udivdi3(i18 | 0, i19 | 0, 1e9, 0) | 0; i3 = i3 + -4 | 0; } while (i3 >>> 0 >= i5 >>> 0); if (!i4) break; i5 = i5 + -4 | 0; HEAP32[i5 >> 2] = i4; } while (0); i4 = i9; while (1) { if (i4 >>> 0 <= i5 >>> 0) break; i3 = i4 + -4 | 0; if (!(HEAP32[i3 >> 2] | 0)) i4 = i3; else break; } i3 = (HEAP32[i49 >> 2] | 0) - i7 | 0; HEAP32[i49 >> 2] = i3; if ((i3 | 0) > 0) i9 = i4; else break; } } else i5 = i21; if ((i3 | 0) < 0) { i13 = ((i2 + 25 | 0) / 9 | 0) + 1 | 0; i14 = (i15 | 0) == 102; do { i12 = 0 - i3 | 0; i12 = (i12 | 0) > 9 ? 9 : i12; do if (i5 >>> 0 < i4 >>> 0) { i7 = (1 << i12) + -1 | 0; i9 = 1e9 >>> i12; i10 = 0; i3 = i5; do { i19 = HEAP32[i3 >> 2] | 0; HEAP32[i3 >> 2] = (i19 >>> i12) + i10; i10 = Math_imul(i19 & i7, i9) | 0; i3 = i3 + 4 | 0; } while (i3 >>> 0 < i4 >>> 0); i3 = (HEAP32[i5 >> 2] | 0) == 0 ? i5 + 4 | 0 : i5; if (!i10) { i5 = i3; i3 = i4; break; } HEAP32[i4 >> 2] = i10; i5 = i3; i3 = i4 + 4 | 0; } else { i5 = (HEAP32[i5 >> 2] | 0) == 0 ? i5 + 4 | 0 : i5; i3 = i4; } while (0); i4 = i14 ? i21 : i5; i4 = (i3 - i4 >> 2 | 0) > (i13 | 0) ? i4 + (i13 << 2) | 0 : i3; i3 = (HEAP32[i49 >> 2] | 0) + i12 | 0; HEAP32[i49 >> 2] = i3; } while ((i3 | 0) < 0); } i19 = i21; do if (i5 >>> 0 < i4 >>> 0) { i3 = (i19 - i5 >> 2) * 9 | 0; i9 = HEAP32[i5 >> 2] | 0; if (i9 >>> 0 < 10) break; else i7 = 10; do { i7 = i7 * 10 | 0; i3 = i3 + 1 | 0; } while (i9 >>> 0 >= i7 >>> 0); } else i3 = 0; while (0); i16 = (i15 | 0) == 103; i17 = (i2 | 0) != 0; i7 = i2 - ((i15 | 0) != 102 ? i3 : 0) + ((i17 & i16) << 31 >> 31) | 0; if ((i7 | 0) < (((i4 - i19 >> 2) * 9 | 0) + -9 | 0)) { i7 = i7 + 9216 | 0; i10 = i21 + 4 + (((i7 | 0) / 9 | 0) + -1024 << 2) | 0; i7 = ((i7 | 0) % 9 | 0) + 1 | 0; if ((i7 | 0) < 9) { i9 = 10; do { i9 = i9 * 10 | 0; i7 = i7 + 1 | 0; } while ((i7 | 0) != 9); } else i9 = 10; i13 = HEAP32[i10 >> 2] | 0; i14 = (i13 >>> 0) % (i9 >>> 0) | 0; i7 = (i10 + 4 | 0) == (i4 | 0); do if (i7 & (i14 | 0) == 0) i7 = i10; else { d11 = (((i13 >>> 0) / (i9 >>> 0) | 0) & 1 | 0) == 0 ? 9007199254740992.0 : 9007199254740994.0; i12 = (i9 | 0) / 2 | 0; if (i14 >>> 0 < i12 >>> 0) d6 = .5; else d6 = i7 & (i14 | 0) == (i12 | 0) ? 1.0 : 1.5; do if (i22) { if ((HEAP8[i23 >> 0] | 0) != 45) break; d6 = -d6; d11 = -d11; } while (0); i7 = i13 - i14 | 0; HEAP32[i10 >> 2] = i7; if (!(d11 + d6 != d11)) { i7 = i10; break; } i18 = i7 + i9 | 0; HEAP32[i10 >> 2] = i18; if (i18 >>> 0 > 999999999) { i7 = i10; while (1) { i3 = i7 + -4 | 0; HEAP32[i7 >> 2] = 0; if (i3 >>> 0 < i5 >>> 0) { i5 = i5 + -4 | 0; HEAP32[i5 >> 2] = 0; } i18 = (HEAP32[i3 >> 2] | 0) + 1 | 0; HEAP32[i3 >> 2] = i18; if (i18 >>> 0 > 999999999) i7 = i3; else { i10 = i3; break; } } } i3 = (i19 - i5 >> 2) * 9 | 0; i9 = HEAP32[i5 >> 2] | 0; if (i9 >>> 0 < 10) { i7 = i10; break; } else i7 = 10; do { i7 = i7 * 10 | 0; i3 = i3 + 1 | 0; } while (i9 >>> 0 >= i7 >>> 0); i7 = i10; } while (0); i18 = i7 + 4 | 0; i4 = i4 >>> 0 > i18 >>> 0 ? i18 : i4; } i14 = 0 - i3 | 0; i18 = i4; while (1) { if (i18 >>> 0 <= i5 >>> 0) { i15 = 0; break; } i4 = i18 + -4 | 0; if (!(HEAP32[i4 >> 2] | 0)) i18 = i4; else { i15 = 1; break; } } do if (i16) { i2 = (i17 & 1 ^ 1) + i2 | 0; if ((i2 | 0) > (i3 | 0) & (i3 | 0) > -5) { i10 = i20 + -1 | 0; i2 = i2 + -1 - i3 | 0; } else { i10 = i20 + -2 | 0; i2 = i2 + -1 | 0; } i4 = i24 & 8; if (i4 | 0) { i12 = i4; break; } do if (i15) { i9 = HEAP32[i18 + -4 >> 2] | 0; if (!i9) { i7 = 9; break; } if (!((i9 >>> 0) % 10 | 0)) { i7 = 0; i4 = 10; } else { i7 = 0; break; } do { i4 = i4 * 10 | 0; i7 = i7 + 1 | 0; } while (!((i9 >>> 0) % (i4 >>> 0) | 0 | 0)); } else i7 = 9; while (0); i4 = ((i18 - i19 >> 2) * 9 | 0) + -9 | 0; if ((i10 | 32 | 0) == 102) { i12 = i4 - i7 | 0; i12 = (i12 | 0) < 0 ? 0 : i12; i2 = (i2 | 0) < (i12 | 0) ? i2 : i12; i12 = 0; break; } else { i12 = i4 + i3 - i7 | 0; i12 = (i12 | 0) < 0 ? 0 : i12; i2 = (i2 | 0) < (i12 | 0) ? i2 : i12; i12 = 0; break; } } else { i10 = i20; i12 = i24 & 8; } while (0); i13 = i2 | i12; i7 = (i13 | 0) != 0 & 1; i9 = (i10 | 32 | 0) == 102; if (i9) { i14 = 0; i3 = (i3 | 0) > 0 ? i3 : 0; } else { i4 = (i3 | 0) < 0 ? i14 : i3; i4 = _fmt_u(i4, ((i4 | 0) < 0) << 31 >> 31, i38) | 0; if ((i40 - i4 | 0) < 2) do { i4 = i4 + -1 | 0; HEAP8[i4 >> 0] = 48; } while ((i40 - i4 | 0) < 2); HEAP8[i4 + -1 >> 0] = (i3 >> 31 & 2) + 43; i3 = i4 + -2 | 0; HEAP8[i3 >> 0] = i10; i14 = i3; i3 = i40 - i3 | 0; } i16 = i22 + 1 + i2 + i7 + i3 | 0; _pad(i28, 32, i8, i16, i24); if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i23, i22, i28) | 0; _pad(i28, 48, i8, i16, i24 ^ 65536); do if (i9) { i5 = i5 >>> 0 > i21 >>> 0 ? i21 : i5; i4 = i5; do { i3 = _fmt_u(HEAP32[i4 >> 2] | 0, 0, i45) | 0; do if ((i4 | 0) == (i5 | 0)) { if ((i3 | 0) != (i45 | 0)) break; HEAP8[i47 >> 0] = 48; i3 = i47; } else { if (i3 >>> 0 <= i50 >>> 0) break; _memset(i50 | 0, 48, i3 - i36 | 0) | 0; do i3 = i3 + -1 | 0; while (i3 >>> 0 > i50 >>> 0); } while (0); if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i3, i46 - i3 | 0, i28) | 0; i4 = i4 + 4 | 0; } while (i4 >>> 0 <= i21 >>> 0); do if (i13 | 0) { if (HEAP32[i28 >> 2] & 32 | 0) break; ___fwritex(43697, 1, i28) | 0; } while (0); if ((i2 | 0) > 0 & i4 >>> 0 < i18 >>> 0) while (1) { i3 = _fmt_u(HEAP32[i4 >> 2] | 0, 0, i45) | 0; if (i3 >>> 0 > i50 >>> 0) { _memset(i50 | 0, 48, i3 - i36 | 0) | 0; do i3 = i3 + -1 | 0; while (i3 >>> 0 > i50 >>> 0); } if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i3, (i2 | 0) > 9 ? 9 : i2, i28) | 0; i4 = i4 + 4 | 0; i3 = i2 + -9 | 0; if (!((i2 | 0) > 9 & i4 >>> 0 < i18 >>> 0)) { i2 = i3; break; } else i2 = i3; } _pad(i28, 48, i2 + 9 | 0, 9, 0); } else { i10 = i15 ? i18 : i5 + 4 | 0; if ((i2 | 0) > -1) { i9 = (i12 | 0) == 0; i7 = i5; do { i3 = _fmt_u(HEAP32[i7 >> 2] | 0, 0, i45) | 0; if ((i3 | 0) == (i45 | 0)) { HEAP8[i47 >> 0] = 48; i3 = i47; } do if ((i7 | 0) == (i5 | 0)) { i4 = i3 + 1 | 0; if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i3, 1, i28) | 0; if (i9 & (i2 | 0) < 1) { i3 = i4; break; } if (HEAP32[i28 >> 2] & 32 | 0) { i3 = i4; break; } ___fwritex(43697, 1, i28) | 0; i3 = i4; } else { if (i3 >>> 0 <= i50 >>> 0) break; _memset(i50 | 0, 48, i3 + i37 | 0) | 0; do i3 = i3 + -1 | 0; while (i3 >>> 0 > i50 >>> 0); } while (0); i4 = i46 - i3 | 0; if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i3, (i2 | 0) > (i4 | 0) ? i4 : i2, i28) | 0; i2 = i2 - i4 | 0; i7 = i7 + 4 | 0; } while (i7 >>> 0 < i10 >>> 0 & (i2 | 0) > -1); } _pad(i28, 48, i2 + 18 | 0, 18, 0); if (HEAP32[i28 >> 2] & 32 | 0) break; ___fwritex(i14, i40 - i14 | 0, i28) | 0; } while (0); _pad(i28, 32, i8, i16, i24 ^ 8192); i2 = (i16 | 0) < (i8 | 0) ? i8 : i16; } else { i7 = (i20 & 32 | 0) != 0; i5 = d6 != d6 | 0.0 != 0.0; i3 = i5 ? 0 : i22; i4 = i3 + 3 | 0; _pad(i28, 32, i8, i4, i9); i2 = HEAP32[i28 >> 2] | 0; if (!(i2 & 32)) { ___fwritex(i23, i3, i28) | 0; i2 = HEAP32[i28 >> 2] | 0; } if (!(i2 & 32)) ___fwritex(i5 ? (i7 ? 36167 : 36171) : i7 ? 36159 : 36163, 3, i28) | 0; _pad(i28, 32, i8, i4, i24 ^ 8192); i2 = (i4 | 0) < (i8 | 0) ? i8 : i4; } while (0); i8 = i26; i3 = i25; continue L1; } default: { i12 = 0; i10 = 36123; i4 = i32; i2 = i13; i9 = i24; } } while (0); L310 : do if ((i27 | 0) == 63) { i5 = i51; i4 = HEAP32[i5 >> 2] | 0; i5 = HEAP32[i5 + 4 >> 2] | 0; i7 = i9 & 32; if ((i4 | 0) == 0 & (i5 | 0) == 0) { i3 = i32; i4 = 0; i5 = 0; } else { i3 = i32; do { i3 = i3 + -1 | 0; HEAP8[i3 >> 0] = HEAPU8[36107 + (i4 & 15) >> 0] | i7; i4 = _bitshift64Lshr(i4 | 0, i5 | 0, 4) | 0; i5 = tempRet0; } while (!((i4 | 0) == 0 & (i5 | 0) == 0)); i5 = i51; i4 = HEAP32[i5 >> 2] | 0; i5 = HEAP32[i5 + 4 >> 2] | 0; } i5 = (i2 & 8 | 0) == 0 | (i4 | 0) == 0 & (i5 | 0) == 0; i4 = i5 ? 0 : 2; i5 = i5 ? 36123 : 36123 + (i9 >> 4) | 0; i7 = i10; i27 = 76; } else if ((i27 | 0) == 75) { i3 = _fmt_u(i2, i3, i32) | 0; i7 = i13; i2 = i24; i27 = 76; } else if ((i27 | 0) == 81) { i27 = 0; i24 = _memchr(i2, 0, i13) | 0; i23 = (i24 | 0) == 0; i3 = i2; i12 = 0; i10 = 36123; i4 = i23 ? i2 + i13 | 0 : i24; i2 = i23 ? i13 : i24 - i2 | 0; } else if ((i27 | 0) == 85) { i27 = 0; i7 = i4; i2 = 0; i3 = 0; while (1) { i5 = HEAP32[i7 >> 2] | 0; if (!i5) break; i3 = _wctomb(i30, i5) | 0; if ((i3 | 0) < 0 | i3 >>> 0 > (i9 - i2 | 0) >>> 0) break; i2 = i3 + i2 | 0; if (i9 >>> 0 > i2 >>> 0) i7 = i7 + 4 | 0; else break; } if ((i3 | 0) < 0) { i1 = -1; break L1; } _pad(i28, 32, i8, i2, i24); if (!i2) { i2 = 0; i27 = 96; } else { i5 = 0; while (1) { i3 = HEAP32[i4 >> 2] | 0; if (!i3) { i27 = 96; break L310; } i3 = _wctomb(i30, i3) | 0; i5 = i3 + i5 | 0; if ((i5 | 0) > (i2 | 0)) { i27 = 96; break L310; } if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i30, i3, i28) | 0; if (i5 >>> 0 >= i2 >>> 0) { i27 = 96; break; } else i4 = i4 + 4 | 0; } } } while (0); if ((i27 | 0) == 96) { i27 = 0; _pad(i28, 32, i8, i2, i24 ^ 8192); i2 = (i8 | 0) > (i2 | 0) ? i8 : i2; i8 = i26; i3 = i25; continue; } if ((i27 | 0) == 76) { i27 = 0; i9 = (i7 | 0) > -1 ? i2 & -65537 : i2; i2 = i51; i2 = (HEAP32[i2 >> 2] | 0) != 0 | (HEAP32[i2 + 4 >> 2] | 0) != 0; if ((i7 | 0) != 0 | i2) { i2 = (i2 & 1 ^ 1) + (i33 - i3) | 0; i12 = i4; i10 = i5; i4 = i32; i2 = (i7 | 0) > (i2 | 0) ? i7 : i2; } else { i3 = i32; i12 = i4; i10 = i5; i4 = i32; i2 = 0; } } i7 = i4 - i3 | 0; i4 = (i2 | 0) < (i7 | 0) ? i7 : i2; i5 = i4 + i12 | 0; i2 = (i8 | 0) < (i5 | 0) ? i5 : i8; _pad(i28, 32, i2, i5, i9); if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i10, i12, i28) | 0; _pad(i28, 48, i2, i5, i9 ^ 65536); _pad(i28, 48, i4, i7, 0); if (!(HEAP32[i28 >> 2] & 32)) ___fwritex(i3, i7, i28) | 0; _pad(i28, 32, i2, i5, i9 ^ 8192); i8 = i26; i3 = i25; } L345 : do if ((i27 | 0) == 243) if (!i28) if (!i8) i1 = 0; else { i1 = 1; while (1) { i2 = HEAP32[i54 + (i1 << 2) >> 2] | 0; if (!i2) break; _pop_arg_529(i53 + (i1 << 3) | 0, i2, i52); i1 = i1 + 1 | 0; if ((i1 | 0) >= 10) { i1 = 1; break L345; } } while (1) { if (HEAP32[i54 + (i1 << 2) >> 2] | 0) { i1 = -1; break L345; } i1 = i1 + 1 | 0; if ((i1 | 0) >= 10) { i1 = 1; break; } } } while (0); STACKTOP = i55; return i1 | 0; } function ___floatscan(i23, i2, i20) { i23 = i23 | 0; i2 = i2 | 0; i20 = i20 | 0; var d1 = 0.0, i3 = 0, d4 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, d10 = 0.0, d11 = 0.0, i12 = 0, d13 = 0.0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i21 = 0, i22 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, d32 = 0.0; i31 = STACKTOP; STACKTOP = STACKTOP + 512 | 0; i27 = i31; switch (i2 | 0) { case 0: { i28 = -149; i30 = 24; i19 = 4; break; } case 1: { i28 = -1074; i30 = 53; i19 = 4; break; } case 2: { i28 = -1074; i30 = 53; i19 = 4; break; } default: d1 = 0.0; } L4 : do if ((i19 | 0) == 4) { i22 = i23 + 4 | 0; i21 = i23 + 100 | 0; do { i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; } else i2 = ___shgetc(i23) | 0; } while ((_isspace(i2) | 0) != 0); L13 : do switch (i2 | 0) { case 43: case 45: { i3 = 1 - (((i2 | 0) == 45 & 1) << 1) | 0; i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i5 = HEAPU8[i2 >> 0] | 0; i29 = i3; break L13; } else { i5 = ___shgetc(i23) | 0; i29 = i3; break L13; } } default: { i5 = i2; i29 = 1; } } while (0); i2 = 0; do { if ((i5 | 32 | 0) != (HEAP8[35634 + i2 >> 0] | 0)) break; do if (i2 >>> 0 < 7) { i3 = HEAP32[i22 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i3 + 1; i5 = HEAPU8[i3 >> 0] | 0; break; } else { i5 = ___shgetc(i23) | 0; break; } } while (0); i2 = i2 + 1 | 0; } while (i2 >>> 0 < 8); L29 : do switch (i2 | 0) { case 8: break; case 3: { i19 = 23; break; } default: { i6 = (i20 | 0) != 0; if (i6 & i2 >>> 0 > 3) if ((i2 | 0) == 8) break L29; else { i19 = 23; break L29; } L34 : do if (!i2) { i2 = 0; do { if ((i5 | 32 | 0) != (HEAP8[36167 + i2 >> 0] | 0)) break L34; do if (i2 >>> 0 < 2) { i3 = HEAP32[i22 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i3 + 1; i5 = HEAPU8[i3 >> 0] | 0; break; } else { i5 = ___shgetc(i23) | 0; break; } } while (0); i2 = i2 + 1 | 0; } while (i2 >>> 0 < 3); } while (0); switch (i2 | 0) { case 3: { i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; } else i2 = ___shgetc(i23) | 0; if ((i2 | 0) == 40) i2 = 1; else { if (!(HEAP32[i21 >> 2] | 0)) { d1 = nan; break L4; } HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; d1 = nan; break L4; } while (1) { i3 = HEAP32[i22 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i3 + 1; i3 = HEAPU8[i3 >> 0] | 0; } else i3 = ___shgetc(i23) | 0; if (!((i3 + -48 | 0) >>> 0 < 10 | (i3 + -65 | 0) >>> 0 < 26) ? !((i3 | 0) == 95 | (i3 + -97 | 0) >>> 0 < 26) : 0) break; i2 = i2 + 1 | 0; } if ((i3 | 0) == 41) { d1 = nan; break L4; } i3 = (HEAP32[i21 >> 2] | 0) == 0; if (!i3) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; if (!i6) { i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 22; ___shlim(i23, 0); d1 = 0.0; break L4; } if (!i2) { d1 = nan; break L4; } while (1) { i2 = i2 + -1 | 0; if (!i3) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; if (!i2) { d1 = nan; break L4; } } } case 0: { do if ((i5 | 0) == 48) { i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; } else i2 = ___shgetc(i23) | 0; if ((i2 | 32 | 0) != 120) { if (!(HEAP32[i21 >> 2] | 0)) { i2 = 48; break; } HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; i2 = 48; break; } i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i3 = HEAPU8[i2 >> 0] | 0; i5 = 0; } else { i3 = ___shgetc(i23) | 0; i5 = 0; } L94 : while (1) { switch (i3 | 0) { case 46: { i19 = 74; break L94; } case 48: break; default: { i14 = 0; i7 = 0; d10 = 1.0; d1 = 0.0; i2 = 0; i6 = i3; i15 = i5; i17 = 0; i16 = 0; i5 = 0; i3 = 0; break L94; } } i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i3 = HEAPU8[i2 >> 0] | 0; i5 = 1; continue; } else { i3 = ___shgetc(i23) | 0; i5 = 1; continue; } } if ((i19 | 0) == 74) { i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i3 = HEAPU8[i2 >> 0] | 0; } else i3 = ___shgetc(i23) | 0; if ((i3 | 0) == 48) { i5 = 0; i3 = 0; do { i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i6 = HEAPU8[i2 >> 0] | 0; } else i6 = ___shgetc(i23) | 0; i5 = _i64Add(i5 | 0, i3 | 0, -1, -1) | 0; i3 = tempRet0; } while ((i6 | 0) == 48); i14 = 1; i7 = 0; d10 = 1.0; d1 = 0.0; i2 = 0; i15 = 1; i17 = 0; i16 = 0; } else { i14 = 1; i7 = 0; d10 = 1.0; d1 = 0.0; i2 = 0; i6 = i3; i15 = i5; i17 = 0; i16 = 0; i5 = 0; i3 = 0; } } while (1) { i9 = i6 + -48 | 0; i8 = i6 | 32; if (i9 >>> 0 >= 10) { i12 = (i6 | 0) == 46; if (!(i12 | (i8 + -97 | 0) >>> 0 < 6)) { i8 = i6; break; } if (i12) if (!i14) { i14 = 1; d4 = d10; i12 = i15; i5 = i16; i3 = i17; i9 = i16; i8 = i17; } else { i8 = 46; break; } else i19 = 86; } else i19 = 86; if ((i19 | 0) == 86) { i19 = 0; i6 = (i6 | 0) > 57 ? i8 + -87 | 0 : i9; do if (!((i17 | 0) < 0 | (i17 | 0) == 0 & i16 >>> 0 < 8)) { if ((i17 | 0) < 0 | (i17 | 0) == 0 & i16 >>> 0 < 14) { d13 = d10 * .0625; d4 = d13; d1 = d1 + d13 * +(i6 | 0); break; } if ((i7 | 0) != 0 | (i6 | 0) == 0) d4 = d10; else { i7 = 1; d4 = d10; d1 = d1 + d10 * .5; } } else { d4 = d10; i2 = i6 + (i2 << 4) | 0; } while (0); i9 = _i64Add(i16 | 0, i17 | 0, 1, 0) | 0; i12 = 1; i8 = tempRet0; } i6 = HEAP32[i22 >> 2] | 0; if (i6 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i6 + 1; d10 = d4; i6 = HEAPU8[i6 >> 0] | 0; i15 = i12; i17 = i8; i16 = i9; continue; } else { d10 = d4; i6 = ___shgetc(i23) | 0; i15 = i12; i17 = i8; i16 = i9; continue; } } if (!i15) { i2 = (HEAP32[i21 >> 2] | 0) == 0; if (!i2) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; if (i20) { if (!i2 ? (i18 = HEAP32[i22 >> 2] | 0, HEAP32[i22 >> 2] = i18 + -1, i14 | 0) : 0) HEAP32[i22 >> 2] = i18 + -2; } else ___shlim(i23, 0); d1 = +(i29 | 0) * 0.0; break L4; } i7 = (i14 | 0) == 0; i9 = i7 ? i16 : i5; i7 = i7 ? i17 : i3; if ((i17 | 0) < 0 | (i17 | 0) == 0 & i16 >>> 0 < 8) { i5 = i16; i3 = i17; do { i2 = i2 << 4; i5 = _i64Add(i5 | 0, i3 | 0, 1, 0) | 0; i3 = tempRet0; } while ((i3 | 0) < 0 | (i3 | 0) == 0 & i5 >>> 0 < 8); i6 = i2; } else i6 = i2; if ((i8 | 32 | 0) == 112) { i3 = _scanexp(i23, i20) | 0; i2 = tempRet0; if ((i3 | 0) == 0 & (i2 | 0) == -2147483648) { if (!i20) { ___shlim(i23, 0); d1 = 0.0; break L4; } if (!(HEAP32[i21 >> 2] | 0)) { i3 = 0; i2 = 0; } else { HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; i3 = 0; i2 = 0; } } } else if (!(HEAP32[i21 >> 2] | 0)) { i3 = 0; i2 = 0; } else { HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; i3 = 0; i2 = 0; } i5 = _bitshift64Shl(i9 | 0, i7 | 0, 2) | 0; i5 = _i64Add(i5 | 0, tempRet0 | 0, -32, -1) | 0; i5 = _i64Add(i5 | 0, tempRet0 | 0, i3 | 0, i2 | 0) | 0; i2 = tempRet0; if (!i6) { d1 = +(i29 | 0) * 0.0; break L4; } if ((i2 | 0) > 0 | (i2 | 0) == 0 & i5 >>> 0 > (0 - i28 | 0) >>> 0) { i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 34; d1 = +(i29 | 0) * 1797693134862315708145274.0e284 * 1797693134862315708145274.0e284; break L4; } i27 = i28 + -106 | 0; i26 = ((i27 | 0) < 0) << 31 >> 31; if ((i2 | 0) < (i26 | 0) | (i2 | 0) == (i26 | 0) & i5 >>> 0 < i27 >>> 0) { i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 34; d1 = +(i29 | 0) * 2.2250738585072014e-308 * 2.2250738585072014e-308; break L4; } if ((i6 | 0) > -1) { i3 = i6; do { i26 = !(d1 >= .5); i27 = i26 & 1 | i3 << 1; i3 = i27 ^ 1; d1 = d1 + (i26 ? d1 : d1 + -1.0); i5 = _i64Add(i5 | 0, i2 | 0, -1, -1) | 0; i2 = tempRet0; } while ((i27 | 0) > -1); d10 = d1; i6 = i3; } else d10 = d1; i28 = _i64Subtract(32, 0, i28 | 0, ((i28 | 0) < 0) << 31 >> 31 | 0) | 0; i2 = _i64Add(i5 | 0, i2 | 0, i28 | 0, tempRet0 | 0) | 0; i28 = tempRet0; if (0 > (i28 | 0) | 0 == (i28 | 0) & i30 >>> 0 > i2 >>> 0) if ((i2 | 0) < 0) { i3 = 0; i2 = 84; i19 = 127; } else i19 = 125; else { i2 = i30; i19 = 125; } if ((i19 | 0) == 125) if ((i2 | 0) < 53) { i3 = i2; i2 = 84 - i2 | 0; i19 = 127; } else { d4 = 0.0; d1 = +(i29 | 0); } if ((i19 | 0) == 127) { d1 = +(i29 | 0); d4 = +_copysignl(+_scalbn(1.0, i2), d1); i2 = i3; } i30 = (i6 & 1 | 0) == 0 & (d10 != 0.0 & (i2 | 0) < 32); d1 = d1 * (i30 ? 0.0 : d10) + (d4 + d1 * +(((i30 & 1) + i6 | 0) >>> 0)) - d4; if (!(d1 != 0.0)) { i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 34; } d1 = +_scalbnl(d1, i5); break L4; } else i2 = i5; while (0); i24 = i28 + i30 | 0; i26 = 0 - i24 | 0; i3 = 0; L184 : while (1) { switch (i2 | 0) { case 46: { i19 = 138; break L184; } case 48: break; default: { i8 = 0; i6 = i3; i9 = 0; i7 = 0; break L184; } } i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; i3 = 1; continue; } else { i2 = ___shgetc(i23) | 0; i3 = 1; continue; } } if ((i19 | 0) == 138) { i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; } else i2 = ___shgetc(i23) | 0; if ((i2 | 0) == 48) { i3 = 0; i2 = 0; while (1) { i3 = _i64Add(i3 | 0, i2 | 0, -1, -1) | 0; i7 = tempRet0; i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; } else i2 = ___shgetc(i23) | 0; if ((i2 | 0) == 48) i2 = i7; else { i8 = 1; i6 = 1; i9 = i3; break; } } } else { i8 = 1; i6 = i3; i9 = 0; i7 = 0; } } HEAP32[i27 >> 2] = 0; i12 = i2 + -48 | 0; i5 = (i2 | 0) == 46; L203 : do if (i5 | i12 >>> 0 < 10) { i19 = i27 + 496 | 0; i15 = 0; i3 = 0; i18 = 0; i16 = i8; i17 = i6; i8 = 0; i6 = 0; L205 : while (1) { do if (i5) if (!i16) { i16 = 1; i14 = i18; i9 = i8; i7 = i6; } else break L205; else { i8 = _i64Add(i8 | 0, i6 | 0, 1, 0) | 0; i6 = tempRet0; i14 = (i2 | 0) != 48; if ((i3 | 0) >= 125) { if (!i14) { i14 = i18; break; } HEAP32[i19 >> 2] = HEAP32[i19 >> 2] | 1; i14 = i18; break; } i5 = i27 + (i3 << 2) | 0; if (!i15) i2 = i12; else i2 = i2 + -48 + ((HEAP32[i5 >> 2] | 0) * 10 | 0) | 0; HEAP32[i5 >> 2] = i2; i15 = i15 + 1 | 0; i17 = (i15 | 0) == 9; i15 = i17 ? 0 : i15; i3 = (i17 & 1) + i3 | 0; i14 = i14 ? i8 : i18; i17 = 1; } while (0); i2 = HEAP32[i22 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i21 >> 2] | 0) >>> 0) { HEAP32[i22 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; } else i2 = ___shgetc(i23) | 0; i12 = i2 + -48 | 0; i5 = (i2 | 0) == 46; if (!(i5 | i12 >>> 0 < 10)) { i12 = i14; i14 = i16; i5 = i17; i19 = 161; break L203; } else i18 = i14; } i2 = i15; i12 = i18; i5 = (i17 | 0) != 0; i19 = 169; } else { i15 = 0; i3 = 0; i12 = 0; i14 = i8; i5 = i6; i8 = 0; i6 = 0; i19 = 161; } while (0); do if ((i19 | 0) == 161) { i18 = (i14 | 0) == 0; i9 = i18 ? i8 : i9; i7 = i18 ? i6 : i7; i5 = (i5 | 0) != 0; if (!(i5 & (i2 | 32 | 0) == 101)) if ((i2 | 0) > -1) { i2 = i15; i19 = 169; break; } else { i2 = i15; i19 = 171; break; } i5 = _scanexp(i23, i20) | 0; i2 = tempRet0; if ((i5 | 0) == 0 & (i2 | 0) == -2147483648) { if (!i20) { ___shlim(i23, 0); d1 = 0.0; break; } if (!(HEAP32[i21 >> 2] | 0)) { i5 = 0; i2 = 0; } else { HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; i5 = 0; i2 = 0; } } i17 = _i64Add(i5 | 0, i2 | 0, i9 | 0, i7 | 0) | 0; i2 = i15; i7 = tempRet0; i19 = 173; } while (0); if ((i19 | 0) == 169) if (HEAP32[i21 >> 2] | 0) { HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; if (i5) { i17 = i9; i19 = 173; } else i19 = 172; } else i19 = 171; if ((i19 | 0) == 171) if (i5) { i17 = i9; i19 = 173; } else i19 = 172; do if ((i19 | 0) == 172) { i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 22; ___shlim(i23, 0); d1 = 0.0; } else if ((i19 | 0) == 173) { i5 = HEAP32[i27 >> 2] | 0; if (!i5) { d1 = +(i29 | 0) * 0.0; break; } if (((i6 | 0) < 0 | (i6 | 0) == 0 & i8 >>> 0 < 10) & ((i17 | 0) == (i8 | 0) & (i7 | 0) == (i6 | 0)) ? i30 >>> 0 > 30 | (i5 >>> i30 | 0) == 0 : 0) { d1 = +(i29 | 0) * +(i5 >>> 0); break; } i23 = (i28 | 0) / -2 | 0; i22 = ((i23 | 0) < 0) << 31 >> 31; if ((i7 | 0) > (i22 | 0) | (i7 | 0) == (i22 | 0) & i17 >>> 0 > i23 >>> 0) { i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 34; d1 = +(i29 | 0) * 1797693134862315708145274.0e284 * 1797693134862315708145274.0e284; break; } i23 = i28 + -106 | 0; i22 = ((i23 | 0) < 0) << 31 >> 31; if ((i7 | 0) < (i22 | 0) | (i7 | 0) == (i22 | 0) & i17 >>> 0 < i23 >>> 0) { i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 34; d1 = +(i29 | 0) * 2.2250738585072014e-308 * 2.2250738585072014e-308; break; } if (i2) { if ((i2 | 0) < 9) { i6 = i27 + (i3 << 2) | 0; i5 = HEAP32[i6 >> 2] | 0; do { i5 = i5 * 10 | 0; i2 = i2 + 1 | 0; } while ((i2 | 0) != 9); HEAP32[i6 >> 2] = i5; } i3 = i3 + 1 | 0; } if ((i12 | 0) < 9 ? (i12 | 0) <= (i17 | 0) & (i17 | 0) < 18 : 0) { if ((i17 | 0) == 9) { d1 = +(i29 | 0) * +((HEAP32[i27 >> 2] | 0) >>> 0); break; } if ((i17 | 0) < 9) { d1 = +(i29 | 0) * +((HEAP32[i27 >> 2] | 0) >>> 0) / +(HEAP32[3780 + (8 - i17 << 2) >> 2] | 0); break; } i23 = i30 + 27 + (Math_imul(i17, -3) | 0) | 0; i2 = HEAP32[i27 >> 2] | 0; if ((i23 | 0) > 30 | (i2 >>> i23 | 0) == 0) { d1 = +(i29 | 0) * +(i2 >>> 0) * +(HEAP32[3780 + (i17 + -10 << 2) >> 2] | 0); break; } } i2 = (i17 | 0) % 9 | 0; if (!i2) { i2 = 0; i6 = 0; } else { i12 = (i17 | 0) > -1 ? i2 : i2 + 9 | 0; i8 = HEAP32[3780 + (8 - i12 << 2) >> 2] | 0; if (i3) { i9 = 1e9 / (i8 | 0) | 0; i6 = 0; i7 = 0; i5 = i17; i2 = 0; do { i21 = i27 + (i2 << 2) | 0; i22 = HEAP32[i21 >> 2] | 0; i23 = ((i22 >>> 0) / (i8 >>> 0) | 0) + i6 | 0; HEAP32[i21 >> 2] = i23; i6 = Math_imul((i22 >>> 0) % (i8 >>> 0) | 0, i9) | 0; i23 = (i2 | 0) == (i7 | 0) & (i23 | 0) == 0; i5 = i23 ? i5 + -9 | 0 : i5; i7 = i23 ? i7 + 1 & 127 : i7; i2 = i2 + 1 | 0; } while ((i2 | 0) != (i3 | 0)); if (!i6) i6 = i7; else { HEAP32[i27 + (i3 << 2) >> 2] = i6; i6 = i7; i3 = i3 + 1 | 0; } } else { i6 = 0; i3 = 0; i5 = i17; } i2 = 0; i17 = 9 - i12 + i5 | 0; } L284 : while (1) { i12 = (i17 | 0) < 18; i14 = (i17 | 0) == 18; i15 = i27 + (i6 << 2) | 0; while (1) { if (!i12) { if (!i14) { i5 = i17; break L284; } if ((HEAP32[i15 >> 2] | 0) >>> 0 >= 9007199) { i5 = 18; break L284; } } i5 = 0; i16 = i3; i3 = i3 + 127 | 0; while (1) { i7 = i3 & 127; i8 = i27 + (i7 << 2) | 0; i3 = _bitshift64Shl(HEAP32[i8 >> 2] | 0, 0, 29) | 0; i3 = _i64Add(i3 | 0, tempRet0 | 0, i5 | 0, 0) | 0; i5 = tempRet0; if (i5 >>> 0 > 0 | (i5 | 0) == 0 & i3 >>> 0 > 1e9) { i9 = ___udivdi3(i3 | 0, i5 | 0, 1e9, 0) | 0; i3 = ___uremdi3(i3 | 0, i5 | 0, 1e9, 0) | 0; } else i9 = 0; HEAP32[i8 >> 2] = i3; i23 = (i7 | 0) == (i6 | 0); i16 = (i7 | 0) != (i16 + 127 & 127 | 0) | i23 ? i16 : (i3 | 0) == 0 ? i7 : i16; if (i23) break; else { i5 = i9; i3 = i7 + -1 | 0; } } i2 = i2 + -29 | 0; if (i9 | 0) break; else i3 = i16; } i6 = i6 + 127 & 127; i3 = i16 + 127 & 127; i5 = i27 + ((i16 + 126 & 127) << 2) | 0; if ((i6 | 0) == (i16 | 0)) HEAP32[i5 >> 2] = HEAP32[i5 >> 2] | HEAP32[i27 + (i3 << 2) >> 2]; else i3 = i16; HEAP32[i27 + (i6 << 2) >> 2] = i9; i17 = i17 + 9 | 0; } L302 : while (1) { i15 = i3 + 1 & 127; i16 = i27 + ((i3 + 127 & 127) << 2) | 0; while (1) { i9 = (i5 | 0) == 18; i14 = (i5 | 0) > 27 ? 9 : 1; i17 = i6; while (1) { i6 = 0; while (1) { i7 = i6 + i17 & 127; if ((i7 | 0) == (i3 | 0)) { i25 = 2; i19 = 220; break; } i7 = HEAP32[i27 + (i7 << 2) >> 2] | 0; i8 = HEAP32[3812 + (i6 << 2) >> 2] | 0; if (i7 >>> 0 < i8 >>> 0) { i25 = 2; i19 = 220; break; } if (i7 >>> 0 > i8 >>> 0) break; i6 = i6 + 1 | 0; if ((i6 | 0) >= 2) { i25 = i6; i19 = 220; break; } } if ((i19 | 0) == 220 ? (i19 = 0, i9 & (i25 | 0) == 2) : 0) { d1 = 0.0; i7 = 0; break L302; } i2 = i2 + i14 | 0; if ((i17 | 0) == (i3 | 0)) i17 = i3; else break; } i9 = (1 << i14) + -1 | 0; i12 = 1e9 >>> i14; i8 = 0; i6 = i17; i7 = i17; do { i21 = i27 + (i7 << 2) | 0; i22 = HEAP32[i21 >> 2] | 0; i23 = (i22 >>> i14) + i8 | 0; HEAP32[i21 >> 2] = i23; i8 = Math_imul(i22 & i9, i12) | 0; i23 = (i7 | 0) == (i6 | 0) & (i23 | 0) == 0; i5 = i23 ? i5 + -9 | 0 : i5; i6 = i23 ? i6 + 1 & 127 : i6; i7 = i7 + 1 & 127; } while ((i7 | 0) != (i3 | 0)); if (!i8) continue; if ((i15 | 0) != (i6 | 0)) break; HEAP32[i16 >> 2] = HEAP32[i16 >> 2] | 1; } HEAP32[i27 + (i3 << 2) >> 2] = i8; i3 = i15; } while (1) { i6 = i7 + i17 & 127; i5 = i3 + 1 & 127; if ((i6 | 0) == (i3 | 0)) HEAP32[i27 + (i5 + -1 << 2) >> 2] = 0; else i5 = i3; d1 = d1 * 1.0e9 + +((HEAP32[i27 + (i6 << 2) >> 2] | 0) >>> 0); i7 = i7 + 1 | 0; if ((i7 | 0) == 2) break; else i3 = i5; } d13 = +(i29 | 0); d4 = d13 * d1; i8 = i2 + 53 | 0; i9 = i8 - i28 | 0; i12 = (i9 | 0) < (i30 | 0); i3 = i12 & 1; i7 = i12 ? ((i9 | 0) < 0 ? 0 : i9) : i30; if ((i7 | 0) < 53) { d32 = +_copysignl(+_scalbn(1.0, 105 - i7 | 0), d4); d10 = +_fmodl(d4, +_scalbn(1.0, 53 - i7 | 0)); d11 = d32; d1 = d10; d10 = d32 + (d4 - d10); } else { d11 = 0.0; d1 = 0.0; d10 = d4; } i6 = i17 + 2 & 127; do if ((i6 | 0) != (i5 | 0)) { i6 = HEAP32[i27 + (i6 << 2) >> 2] | 0; do if (i6 >>> 0 >= 5e8) { if ((i6 | 0) != 5e8) { d1 = d13 * .75 + d1; break; } if ((i17 + 3 & 127 | 0) == (i5 | 0)) { d1 = d13 * .5 + d1; break; } else { d1 = d13 * .75 + d1; break; } } else { if ((i6 | 0) == 0 ? (i17 + 3 & 127 | 0) == (i5 | 0) : 0) break; d1 = d13 * .25 + d1; } while (0); if ((53 - i7 | 0) > 1) { if (+_fmodl(d1, 1.0) != 0.0) { d4 = d1; break; } d4 = d1 + 1.0; } else d4 = d1; } else d4 = d1; while (0); d1 = d10 + d4 - d11; do if ((i8 & 2147483647 | 0) > (-2 - i24 | 0)) { if (+Math_abs(+d1) >= 9007199254740992.0) { d1 = d1 * .5; i3 = i12 & (i7 | 0) == (i9 | 0) ? 0 : i3; i2 = i2 + 1 | 0; } if ((i2 + 50 | 0) <= (i26 | 0) ? !(d4 != 0.0 & (i3 | 0) != 0) : 0) break; i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 34; } while (0); d1 = +_scalbnl(d1, i2); } while (0); break L4; } default: { if (HEAP32[i21 >> 2] | 0) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; i30 = ___errno_location() | 0; HEAP32[i30 >> 2] = 22; ___shlim(i23, 0); d1 = 0.0; break L4; } } } } while (0); if ((i19 | 0) == 23) { i3 = (HEAP32[i21 >> 2] | 0) == 0; if (!i3) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; if ((i20 | 0) != 0 & i2 >>> 0 > 3) do { if (!i3) HEAP32[i22 >> 2] = (HEAP32[i22 >> 2] | 0) + -1; i2 = i2 + -1 | 0; } while (i2 >>> 0 > 3); } d1 = +(i29 | 0) * inf; } while (0); STACKTOP = i31; return +d1; } function __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_RT_(i1, i4, i18) { i1 = i1 | 0; i4 = i4 | 0; i18 = i18 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 192 | 0; i12 = i19 + 72 | 0; i11 = i19 + 48 | 0; i10 = i19 + 24 | 0; i14 = i19; i15 = i19 + 152 | 0; i16 = i19 + 128 | 0; i17 = i19 + 104 | 0; i8 = i19 + 116 | 0; i9 = i19 + 92 | 0; i3 = i4; L1 : do if ((i3 - i1 | 0) > 3 ? (HEAP8[i1 >> 0] | 0) == 76 : 0) { i2 = i1 + 1 | 0; do switch (HEAP8[i2 >> 0] | 0) { case 84: break L1; case 119: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43503, 7); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 98: { if ((HEAP8[i1 + 3 >> 0] | 0) != 69) break L1; switch (HEAP8[i1 + 2 >> 0] | 0) { case 48: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i15, 43511); i2 = i18 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i17 = HEAP32[i18 + 8 >> 2] | 0; i5 = i17; do if (i3 >>> 0 >= i17 >>> 0) { i4 = HEAP32[i18 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i18); else { i16 = (i5 - i4 | 0) / 24 | 0; i17 = i16 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i16 >>> 0 < 89478485 ? (i17 >>> 0 < i3 >>> 0 ? i3 : i17) : 178956970, i2, i18 + 12 | 0); i17 = i14 + 8 | 0; i16 = HEAP32[i17 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i16, i15); HEAP32[i17 >> 2] = i16 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i18, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i15); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i1 = i1 + 4 | 0; break L1; } case 49: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i15, 43517); i2 = i18 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i17 = HEAP32[i18 + 8 >> 2] | 0; i5 = i17; do if (i3 >>> 0 >= i17 >>> 0) { i4 = HEAP32[i18 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i18); else { i16 = (i5 - i4 | 0) / 24 | 0; i17 = i16 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i16 >>> 0 < 89478485 ? (i17 >>> 0 < i3 >>> 0 ? i3 : i17) : 178956970, i2, i18 + 12 | 0); i17 = i14 + 8 | 0; i16 = HEAP32[i17 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i16, i15); HEAP32[i17 >> 2] = i16 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i18, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i15); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i1 = i1 + 4 | 0; break L1; } default: break L1; } } case 99: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43522, 4); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 97: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43527, 11); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 104: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43539, 13); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 115: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43553, 5); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 116: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43559, 14); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 105: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 53494, 0); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 106: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43574, 1); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 108: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43576, 1); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 109: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43578, 2); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 120: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43581, 2); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 121: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43584, 3); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 110: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43588, 8); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 111: { i17 = i1 + 2 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i14, 43597, 17); i18 = __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i17, i4, i14, i18) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = (i18 | 0) == (i17 | 0) ? i1 : i18; break L1; } case 102: { i7 = i1 + 2 | 0; L73 : do if ((i3 - i7 | 0) >>> 0 > 8) { i3 = 0; i2 = i14; while (1) { i4 = i3 + 2 | 0; i5 = HEAP8[i1 + i4 >> 0] | 0; i6 = i5 << 24 >> 24; if ((i3 | 0) == 8) { i13 = 37; break; } if (!(_isxdigit(i6) | 0)) break; i12 = HEAP8[i7 + (i3 | 1) >> 0] | 0; HEAP8[i2 >> 0] = i12 + (((i6 + -48 | 0) >>> 0 < 10 ? 0 : 9) + i6 << 4) + ((i12 + -48 | 0) >>> 0 < 10 ? 208 : 169); i3 = i4; i2 = i2 + 1 | 0; } do if ((i13 | 0) == 37) { if (i5 << 24 >> 24 == 69) { L83 : do if ((i14 | 0) != (i2 | 0)) { i3 = i14; while (1) { i2 = i2 + -1 | 0; if (i3 >>> 0 >= i2 >>> 0) break L83; i13 = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0; HEAP8[i2 >> 0] = i13; i3 = i3 + 1 | 0; } } while (0); i2 = i15; i3 = i2 + 24 | 0; do { HEAP8[i2 >> 0] = 0; i2 = i2 + 1 | 0; } while ((i2 | 0) < (i3 | 0)); HEAPF64[i10 >> 3] = +HEAPF32[i14 >> 2]; i2 = _snprintf(i15, 24, 43615, i10) | 0; if (i2 >>> 0 > 23) break; HEAP32[i17 >> 2] = 0; HEAP32[i17 + 4 >> 2] = 0; HEAP32[i17 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i17, i15, i2); __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i17); i2 = i18 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i15 = HEAP32[i18 + 8 >> 2] | 0; i5 = i15; do if (i3 >>> 0 >= i15 >>> 0) { i4 = HEAP32[i18 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i18); else { i14 = (i5 - i4 | 0) / 24 | 0; i15 = i14 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i10, i14 >>> 0 < 89478485 ? (i15 >>> 0 < i3 >>> 0 ? i3 : i15) : 178956970, i2, i18 + 12 | 0); i15 = i10 + 8 | 0; i14 = HEAP32[i15 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i14, i16); HEAP32[i15 >> 2] = i14 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i18, i10); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i10); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i16); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i17); i2 = 11; } else i2 = 2; break L73; } while (0); i2 = 2; } else i2 = 2; while (0); i1 = (i2 | 0) == 2 ? i1 : i1 + i2 | 0; break L1; } case 100: { i7 = i1 + 2 | 0; L102 : do if ((i3 - i7 | 0) >>> 0 > 16) { i3 = 0; i2 = i14; while (1) { i4 = i3 + 2 | 0; i5 = HEAP8[i1 + i4 >> 0] | 0; i6 = i5 << 24 >> 24; if ((i3 | 0) == 16) { i13 = 57; break; } if (!(_isxdigit(i6) | 0)) break; i12 = HEAP8[i7 + (i3 | 1) >> 0] | 0; HEAP8[i2 >> 0] = i12 + (((i6 + -48 | 0) >>> 0 < 10 ? 0 : 9) + i6 << 4) + ((i12 + -48 | 0) >>> 0 < 10 ? 208 : 169); i3 = i4; i2 = i2 + 1 | 0; } do if ((i13 | 0) == 57) { if (i5 << 24 >> 24 == 69) { L112 : do if ((i14 | 0) != (i2 | 0)) { i3 = i14; while (1) { i2 = i2 + -1 | 0; if (i3 >>> 0 >= i2 >>> 0) break L112; i13 = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0; HEAP8[i2 >> 0] = i13; i3 = i3 + 1 | 0; } } while (0); i2 = i15; i3 = i2 + 32 | 0; do { HEAP8[i2 >> 0] = 0; i2 = i2 + 1 | 0; } while ((i2 | 0) < (i3 | 0)); HEAPF64[i11 >> 3] = +HEAPF64[i14 >> 3]; i2 = _snprintf(i15, 32, 43619, i11) | 0; if (i2 >>> 0 > 31) break; HEAP32[i17 >> 2] = 0; HEAP32[i17 + 4 >> 2] = 0; HEAP32[i17 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i17, i15, i2); __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i17); i2 = i18 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i15 = HEAP32[i18 + 8 >> 2] | 0; i5 = i15; do if (i3 >>> 0 >= i15 >>> 0) { i4 = HEAP32[i18 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i18); else { i14 = (i5 - i4 | 0) / 24 | 0; i15 = i14 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i11, i14 >>> 0 < 89478485 ? (i15 >>> 0 < i3 >>> 0 ? i3 : i15) : 178956970, i2, i18 + 12 | 0); i15 = i11 + 8 | 0; i14 = HEAP32[i15 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i14, i16); HEAP32[i15 >> 2] = i14 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i18, i11); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i11); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i16); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i17); i2 = 19; } else i2 = 2; break L102; } while (0); i2 = 2; } else i2 = 2; while (0); i1 = (i2 | 0) == 2 ? i1 : i1 + i2 | 0; break L1; } case 101: { i7 = i1 + 2 | 0; L131 : do if ((i3 - i7 | 0) >>> 0 > 20) { i3 = 0; i2 = i14; while (1) { i4 = i3 + 2 | 0; i5 = HEAP8[i1 + i4 >> 0] | 0; i6 = i5 << 24 >> 24; if ((i3 | 0) == 20) { i13 = 77; break; } if (!(_isxdigit(i6) | 0)) break; i11 = HEAP8[i7 + (i3 | 1) >> 0] | 0; HEAP8[i2 >> 0] = i11 + (((i6 + -48 | 0) >>> 0 < 10 ? 0 : 9) + i6 << 4) + ((i11 + -48 | 0) >>> 0 < 10 ? 208 : 169); i3 = i4; i2 = i2 + 1 | 0; } do if ((i13 | 0) == 77) { if (i5 << 24 >> 24 == 69) { L141 : do if ((i14 | 0) != (i2 | 0)) { i3 = i14; while (1) { i2 = i2 + -1 | 0; if (i3 >>> 0 >= i2 >>> 0) break L141; i13 = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0; HEAP8[i2 >> 0] = i13; i3 = i3 + 1 | 0; } } while (0); i2 = i15; i3 = i2 + 40 | 0; do { HEAP8[i2 >> 0] = 0; i2 = i2 + 1 | 0; } while ((i2 | 0) < (i3 | 0)); HEAPF64[i12 >> 3] = +HEAPF64[i14 >> 3]; i2 = _snprintf(i15, 40, 43622, i12) | 0; if (i2 >>> 0 > 39) break; HEAP32[i17 >> 2] = 0; HEAP32[i17 + 4 >> 2] = 0; HEAP32[i17 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i17, i15, i2); __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i17); i2 = i18 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i15 = HEAP32[i18 + 8 >> 2] | 0; i5 = i15; do if (i3 >>> 0 >= i15 >>> 0) { i4 = HEAP32[i18 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i18); else { i14 = (i5 - i4 | 0) / 24 | 0; i15 = i14 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i12, i14 >>> 0 < 89478485 ? (i15 >>> 0 < i3 >>> 0 ? i3 : i15) : 178956970, i2, i18 + 12 | 0); i15 = i12 + 8 | 0; i14 = HEAP32[i15 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i14, i16); HEAP32[i15 >> 2] = i14 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i18, i12); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i12); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i16); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i17); i2 = 23; } else i2 = 2; break L131; } while (0); i2 = 2; } else i2 = 2; while (0); i1 = (i2 | 0) == 2 ? i1 : i1 + i2 | 0; break L1; } case 95: { if ((HEAP8[i1 + 2 >> 0] | 0) != 90) break L1; i17 = i1 + 3 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i17, i4, i18) | 0; if ((i2 | 0) == (i17 | 0) | (i2 | 0) == (i4 | 0)) break L1; i1 = (HEAP8[i2 >> 0] | 0) == 69 ? i2 + 1 | 0 : i1; break L1; } default: { i6 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i4, i18) | 0; if ((i6 | 0) == (i2 | 0) | (i6 | 0) == (i4 | 0)) break L1; if ((HEAP8[i6 >> 0] | 0) == 69) { i1 = i6 + 1 | 0; break L1; } else i7 = i6; while (1) { if ((i7 | 0) == (i4 | 0)) break L1; i2 = HEAP8[i7 >> 0] | 0; if (((i2 << 24 >> 24) + -48 | 0) >>> 0 >= 10) break; i7 = i7 + 1 | 0; } if (!((i7 | 0) != (i6 | 0) & i2 << 24 >> 24 == 69)) break L1; i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) break L1; i5 = i2 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i17, i5); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i17, 0, 42453) | 0; HEAP32[i16 >> 2] = HEAP32[i2 >> 2]; HEAP32[i16 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i16 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i16, 42358) | 0; HEAP32[i15 >> 2] = HEAP32[i2 >> 2]; HEAP32[i15 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i15 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; i4 = i7 - i6 | 0; if (i4 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i9); if (i4 >>> 0 < 11) { HEAP8[i9 + 11 >> 0] = i4; i3 = i9; } else { i18 = i4 + 16 & -16; i3 = _malloc(i18) | 0; HEAP32[i9 >> 2] = i3; HEAP32[i9 + 8 >> 2] = i18 | -2147483648; HEAP32[i9 + 4 >> 2] = i4; } i1 = i6; i2 = i3; while (1) { if ((i1 | 0) == (i7 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } HEAP8[i3 + i4 >> 0] = 0; i2 = HEAP8[i9 + 11 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i15, i1 ? HEAP32[i9 >> 2] | 0 : i9, i1 ? HEAP32[i9 + 4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i14, i8); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i5, i14); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i14); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i17); i1 = i7 + 1 | 0; break L1; } } while (0); } while (0); STACKTOP = i19; return i1 | 0; } function __ZNSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i35, i36, i2, i3, i4, i39, i29, i30, i31, i32, i1) { i35 = i35 | 0; i36 = i36 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i39 = i39 | 0; i29 = i29 | 0; i30 = i30 | 0; i31 = i31 | 0; i32 = i32 | 0; i1 = i1 | 0; var i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i33 = 0, i34 = 0, i37 = 0, i38 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0; i47 = STACKTOP; STACKTOP = STACKTOP + 512 | 0; i23 = i47 + 96 | 0; i33 = i47 + 104 | 0; i46 = i47 + 88 | 0; i37 = i47 + 80 | 0; i24 = i47 + 76 | 0; i25 = i47 + 504 | 0; i26 = i47 + 72 | 0; i27 = i47 + 68 | 0; i40 = i47 + 56 | 0; i41 = i47 + 44 | 0; i42 = i47 + 32 | 0; i43 = i47 + 20 | 0; i44 = i47 + 8 | 0; i28 = i47 + 4 | 0; i38 = i47; HEAP32[i23 >> 2] = i1; HEAP32[i46 >> 2] = i33; i45 = i46 + 4 | 0; HEAP32[i45 >> 2] = 178; HEAP32[i37 >> 2] = i33; HEAP32[i24 >> 2] = i33 + 400; HEAP32[i40 >> 2] = 0; HEAP32[i40 + 4 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i40 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i41 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i42 >> 2] = 0; HEAP32[i42 + 4 >> 2] = 0; HEAP32[i42 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i42 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i43 >> 2] = 0; HEAP32[i43 + 4 >> 2] = 0; HEAP32[i43 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i43 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i44 >> 2] = 0; HEAP32[i44 + 4 >> 2] = 0; HEAP32[i44 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i44 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__211__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_SJ_Ri(i2, i3, i25, i26, i27, i40, i41, i42, i43, i28); HEAP32[i32 >> 2] = HEAP32[i31 >> 2]; i19 = i42 + 8 + 3 | 0; i20 = i42 + 4 | 0; i21 = i43 + 8 + 3 | 0; i22 = i43 + 4 | 0; i11 = (i4 & 512 | 0) != 0; i12 = i41 + 8 + 3 | 0; i13 = i41 + 4 | 0; i14 = i44 + 8 + 3 | 0; i15 = i44 + 4 | 0; i16 = i25 + 3 | 0; i17 = i40 + 11 | 0; i18 = i40 + 4 | 0; i33 = 0; i10 = 0; L21 : while (1) { if (i10 >>> 0 >= 4) { i34 = 231; break; } i1 = HEAP32[i35 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i35 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i35 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); i2 = HEAP32[i36 >> 2] | 0; do if (i2) { i1 = HEAP32[i2 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i3) { i9 = i2; break; } else { i34 = 231; break L21; } else { HEAP32[i36 >> 2] = 0; i34 = 31; break; } } else i34 = 31; while (0); if ((i34 | 0) == 31) { i34 = 0; if (i3) { i34 = 231; break; } else i9 = 0; } L46 : do switch (HEAP8[i25 + i10 >> 0] | 0) { case 1: { if ((i10 | 0) == 3) i1 = i33; else { i1 = HEAP32[i35 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i30 >> 2] | 0) + 12 >> 2] & 31](i30, 8192, i1) | 0)) { i34 = 43; break L21; } i1 = HEAP32[i35 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else { HEAP32[i2 >> 2] = i3 + 4; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i44, i1); i1 = i9; i4 = i9; i34 = 45; } break; } case 0: { if ((i10 | 0) == 3) i1 = i33; else { i1 = i9; i4 = i9; i34 = 45; } break; } case 3: { i1 = HEAP8[i19 >> 0] | 0; i2 = i1 << 24 >> 24 < 0 ? HEAP32[i20 >> 2] | 0 : i1 & 255; i4 = HEAP8[i21 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i22 >> 2] | 0 : i4 & 255; if ((i2 | 0) == (0 - i4 | 0)) i1 = i33; else { i5 = (i2 | 0) == 0; i6 = HEAP32[i35 >> 2] | 0; i7 = HEAP32[i6 + 12 >> 2] | 0; i2 = HEAP32[i6 + 16 >> 2] | 0; i3 = (i7 | 0) == (i2 | 0); if (i5 | (i4 | 0) == 0) { if (i3) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i7 >> 2] | 0; if (i5) { i1 = HEAP8[i21 >> 0] | 0; if ((i2 | 0) != (HEAP32[(i1 << 24 >> 24 < 0 ? HEAP32[i43 >> 2] | 0 : i43) >> 2] | 0)) { i1 = i33; break L46; } i2 = HEAP32[i35 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i1 = HEAP8[i21 >> 0] | 0; } else HEAP32[i3 >> 2] = i4 + 4; HEAP8[i29 >> 0] = 1; i1 = (i1 << 24 >> 24 < 0 ? HEAP32[i22 >> 2] | 0 : i1 & 255) >>> 0 > 1 ? i43 : i33; break L46; } i1 = HEAP8[i19 >> 0] | 0; if ((i2 | 0) != (HEAP32[(i1 << 24 >> 24 < 0 ? HEAP32[i42 >> 2] | 0 : i42) >> 2] | 0)) { HEAP8[i29 >> 0] = 1; i1 = i33; break L46; } i2 = HEAP32[i35 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i1 = HEAP8[i19 >> 0] | 0; } else HEAP32[i3 >> 2] = i4 + 4; i1 = (i1 << 24 >> 24 < 0 ? HEAP32[i20 >> 2] | 0 : i1 & 255) >>> 0 > 1 ? i42 : i33; break L46; } if (i3) { i5 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; i2 = HEAP32[i35 >> 2] | 0; i1 = HEAP8[i19 >> 0] | 0; i6 = i2; i4 = HEAP32[i2 + 12 >> 2] | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; } else { i5 = HEAP32[i7 >> 2] | 0; i4 = i7; } i3 = i6 + 12 | 0; i2 = (i4 | 0) == (i2 | 0); if ((i5 | 0) == (HEAP32[(i1 << 24 >> 24 < 0 ? HEAP32[i42 >> 2] | 0 : i42) >> 2] | 0)) { if (i2) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i1 = HEAP8[i19 >> 0] | 0; } else HEAP32[i3 >> 2] = i4 + 4; i1 = (i1 << 24 >> 24 < 0 ? HEAP32[i20 >> 2] | 0 : i1 & 255) >>> 0 > 1 ? i42 : i33; break L46; } if (i2) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i4 >> 2] | 0; i1 = HEAP8[i21 >> 0] | 0; if ((i2 | 0) != (HEAP32[(i1 << 24 >> 24 < 0 ? HEAP32[i43 >> 2] | 0 : i43) >> 2] | 0)) { i34 = 101; break L21; } i2 = HEAP32[i35 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i1 = HEAP8[i21 >> 0] | 0; } else HEAP32[i3 >> 2] = i4 + 4; HEAP8[i29 >> 0] = 1; i1 = (i1 << 24 >> 24 < 0 ? HEAP32[i22 >> 2] | 0 : i1 & 255) >>> 0 > 1 ? i43 : i33; } break; } case 2: { if (!(i10 >>> 0 < 2 | (i33 | 0) != 0) ? !(i11 | (i10 | 0) == 2 & (HEAP8[i16 >> 0] | 0) != 0) : 0) { i1 = 0; break L46; } i3 = HEAP8[i12 >> 0] | 0; i4 = HEAP32[i41 >> 2] | 0; i1 = i3 << 24 >> 24 < 0 ? i4 : i41; L107 : do if ((i10 | 0) != 0 ? (HEAPU8[i25 + (i10 + -1) >> 0] | 0) < 2 : 0) { while (1) { i8 = i3 << 24 >> 24 < 0; i2 = i1; if ((i2 | 0) == ((i8 ? i4 : i41) + ((i8 ? HEAP32[i13 >> 2] | 0 : i3 & 255) << 2) | 0)) break; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i30 >> 2] | 0) + 12 >> 2] & 31](i30, 8192, HEAP32[i2 >> 2] | 0) | 0)) { i34 = 108; break; } i1 = i2 + 4 | 0; i3 = HEAP8[i12 >> 0] | 0; i4 = HEAP32[i41 >> 2] | 0; } if ((i34 | 0) == 108) { i34 = 0; i3 = HEAP8[i12 >> 0] | 0; i4 = HEAP32[i41 >> 2] | 0; } i5 = i3 << 24 >> 24 < 0 ? i4 : i41; i8 = i5; i7 = i1 - i8 >> 2; i6 = HEAP8[i14 >> 0] | 0; i2 = i6 << 24 >> 24 < 0; i6 = i2 ? HEAP32[i15 >> 2] | 0 : i6 & 255; if (i7 >>> 0 > i6 >>> 0) { i7 = i9; i2 = i8; i5 = i9; } else { i6 = (i2 ? HEAP32[i44 >> 2] | 0 : i44) + (i6 << 2) | 0; i2 = i6 + (0 - i7 << 2) | 0; while (1) { if ((i2 | 0) == (i6 | 0)) { i7 = i9; i2 = i1; i5 = i9; break L107; } if ((HEAP32[i2 >> 2] | 0) != (HEAP32[i5 >> 2] | 0)) { i7 = i9; i2 = i8; i5 = i9; break L107; } i5 = i5 + 4 | 0; i2 = i2 + 4 | 0; } } } else { i7 = i9; i2 = i1; i5 = i9; } while (0); L121 : while (1) { i1 = i3 << 24 >> 24 < 0; i1 = (i1 ? i4 : i41) + ((i1 ? HEAP32[i13 >> 2] | 0 : i3 & 255) << 2) | 0; i6 = i2; if ((i6 | 0) == (i1 | 0)) break; i1 = HEAP32[i35 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i35 >> 2] = 0; i2 = 1; break; } else { i2 = (HEAP32[i35 >> 2] | 0) == 0; break; } } else i2 = 1; while (0); do if (i5) { i1 = HEAP32[i5 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2 ^ (i7 | 0) == 0) { i1 = i7; i5 = i7; break; } else { i1 = i6; break L121; } else { HEAP32[i36 >> 2] = 0; i1 = 0; i34 = 129; break; } } else { i1 = i7; i34 = 129; } while (0); if ((i34 | 0) == 129) { i34 = 0; if (i2) { i1 = i6; break; } else i5 = 0; } i2 = HEAP32[i35 >> 2] | 0; i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAP32[i3 >> 2] | 0; if ((i2 | 0) != (HEAP32[i6 >> 2] | 0)) { i1 = i6; break; } i2 = HEAP32[i35 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; else HEAP32[i3 >> 2] = i4 + 4; i7 = i1; i2 = i6 + 4 | 0; i3 = HEAP8[i12 >> 0] | 0; i4 = HEAP32[i41 >> 2] | 0; } if (i11 ? (i9 = HEAP8[i12 >> 0] | 0, i8 = i9 << 24 >> 24 < 0, (i1 | 0) != ((i8 ? HEAP32[i41 >> 2] | 0 : i41) + ((i8 ? HEAP32[i13 >> 2] | 0 : i9 & 255) << 2) | 0)) : 0) { i34 = 141; break L21; } else i1 = i33; break; } case 4: { i7 = 0; i1 = i9; i4 = i9; L157 : while (1) { i2 = HEAP32[i35 >> 2] | 0; do if (i2) { i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAP32[i3 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i35 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i35 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); do if (i4) { i2 = HEAP32[i4 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i3 ^ (i1 | 0) == 0) { i5 = i1; i6 = i1; break; } else { i4 = i1; break L157; } else { HEAP32[i36 >> 2] = 0; i1 = 0; i34 = 155; break; } } else i34 = 155; while (0); if ((i34 | 0) == 155) { i34 = 0; if (i3) { i4 = i1; break; } else { i5 = i1; i6 = 0; } } i1 = HEAP32[i35 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i30 >> 2] | 0) + 12 >> 2] & 31](i30, 2048, i2) | 0) { i1 = HEAP32[i32 >> 2] | 0; if ((i1 | 0) == (HEAP32[i23 >> 2] | 0)) { __ZNSt3__219__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i31, i32, i23); i1 = HEAP32[i32 >> 2] | 0; } HEAP32[i32 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i2; i1 = i7 + 1 | 0; } else { i9 = HEAP8[i17 >> 0] | 0; if (!((i2 | 0) == (HEAP32[i27 >> 2] | 0) & (i7 | 0 ? ((i9 << 24 >> 24 < 0 ? HEAP32[i18 >> 2] | 0 : i9 & 255) | 0) != 0 : 0))) { i4 = i5; break; } i1 = HEAP32[i37 >> 2] | 0; if ((i1 | 0) == (HEAP32[i24 >> 2] | 0)) { __ZNSt3__219__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i46, i37, i24); i1 = HEAP32[i37 >> 2] | 0; } HEAP32[i37 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i7; i1 = 0; } i2 = HEAP32[i35 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i7 = i1; i1 = i5; i4 = i6; continue; } else { HEAP32[i3 >> 2] = i4 + 4; i7 = i1; i1 = i5; i4 = i6; continue; } } i1 = HEAP32[i37 >> 2] | 0; if (i7 | 0 ? (HEAP32[i46 >> 2] | 0) != (i1 | 0) : 0) { if ((i1 | 0) == (HEAP32[i24 >> 2] | 0)) { __ZNSt3__219__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i46, i37, i24); i1 = HEAP32[i37 >> 2] | 0; } HEAP32[i37 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i7; } L206 : do if ((HEAP32[i28 >> 2] | 0) > 0) { i1 = HEAP32[i35 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i35 >> 2] = 0; i2 = 1; break; } else { i2 = (HEAP32[i35 >> 2] | 0) == 0; break; } } else i2 = 1; while (0); do if (i4) { i1 = HEAP32[i4 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i34 = 195; break L21; } else { HEAP32[i36 >> 2] = 0; i34 = 189; break; } } else i34 = 189; while (0); if ((i34 | 0) == 189) { i34 = 0; if (i2) { i34 = 195; break L21; } else i4 = 0; } i1 = HEAP32[i35 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) != (HEAP32[i26 >> 2] | 0)) { i34 = 195; break L21; } i1 = HEAP32[i35 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; i1 = i4; } else { HEAP32[i2 >> 2] = i3 + 4; i1 = i4; } while (1) { if ((HEAP32[i28 >> 2] | 0) <= 0) break L206; i2 = HEAP32[i35 >> 2] | 0; do if (i2) { i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAP32[i3 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i35 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i35 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); do if (i4) { i2 = HEAP32[i4 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i3 ^ (i1 | 0) == 0) { i5 = i1; i4 = i1; break; } else { i34 = 219; break L21; } else { HEAP32[i36 >> 2] = 0; i1 = 0; i34 = 213; break; } } else i34 = 213; while (0); if ((i34 | 0) == 213) { i34 = 0; if (i3) { i34 = 219; break L21; } else { i5 = i1; i4 = 0; } } i1 = HEAP32[i35 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i30 >> 2] | 0) + 12 >> 2] & 31](i30, 2048, i1) | 0)) { i34 = 219; break L21; } if ((HEAP32[i32 >> 2] | 0) == (HEAP32[i23 >> 2] | 0)) __ZNSt3__219__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i31, i32, i23); i1 = HEAP32[i35 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; i2 = HEAP32[i32 >> 2] | 0; HEAP32[i32 >> 2] = i2 + 4; HEAP32[i2 >> 2] = i1; HEAP32[i28 >> 2] = (HEAP32[i28 >> 2] | 0) + -1; i1 = HEAP32[i35 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; i1 = i5; continue; } else { HEAP32[i2 >> 2] = i3 + 4; i1 = i5; continue; } } } while (0); if ((HEAP32[i32 >> 2] | 0) == (HEAP32[i31 >> 2] | 0)) { i34 = 229; break L21; } else i1 = i33; break; } default: i1 = i33; } while (0); L279 : do if ((i34 | 0) == 45) while (1) { i34 = 0; i2 = HEAP32[i35 >> 2] | 0; do if (i2) { i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAP32[i3 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i35 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i35 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); do if (i4) { i2 = HEAP32[i4 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i3 ^ (i1 | 0) == 0) { i5 = i1; i4 = i1; break; } else { i1 = i33; break L279; } else { HEAP32[i36 >> 2] = 0; i1 = 0; i34 = 58; break; } } else i34 = 58; while (0); if ((i34 | 0) == 58) { i34 = 0; if (i3) { i1 = i33; break L279; } else { i5 = i1; i4 = 0; } } i1 = HEAP32[i35 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i30 >> 2] | 0) + 12 >> 2] & 31](i30, 8192, i1) | 0)) { i1 = i33; break L279; } i1 = HEAP32[i35 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else { HEAP32[i2 >> 2] = i3 + 4; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i44, i1); i1 = i5; i34 = 45; } while (0); i33 = i1; i10 = i10 + 1 | 0; } L314 : do if ((i34 | 0) == 43) { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i2 = 0; } else if ((i34 | 0) == 101) { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i2 = 0; } else if ((i34 | 0) == 141) { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i2 = 0; } else if ((i34 | 0) == 195) { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i2 = 0; } else if ((i34 | 0) == 219) { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i2 = 0; } else if ((i34 | 0) == 229) { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i2 = 0; } else if ((i34 | 0) == 231) { L316 : do if (i33 | 0) { i5 = i33 + 8 + 3 | 0; i6 = i33 + 4 | 0; i4 = 1; L318 : while (1) { i1 = HEAP8[i5 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i6 >> 2] | 0; else i1 = i1 & 255; if (i4 >>> 0 >= i1 >>> 0) break L316; i1 = HEAP32[i35 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i35 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i35 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); i1 = HEAP32[i36 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) != -1) if (i3) break; else break L318; else { HEAP32[i36 >> 2] = 0; i34 = 250; break; } } else i34 = 250; while (0); if ((i34 | 0) == 250 ? (i34 = 0, i3) : 0) break; i1 = HEAP32[i35 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((HEAP8[i5 >> 0] | 0) < 0) i2 = HEAP32[i33 >> 2] | 0; else i2 = i33; if ((i1 | 0) != (HEAP32[i2 + (i4 << 2) >> 2] | 0)) break; i1 = i4 + 1 | 0; i2 = HEAP32[i35 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i4 = i1; continue; } else { HEAP32[i3 >> 2] = i4 + 4; i4 = i1; continue; } } HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i2 = 0; break L314; } while (0); i2 = HEAP32[i46 >> 2] | 0; i1 = HEAP32[i37 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) { HEAP32[i38 >> 2] = 0; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i40, i2, i1, i38); if (!(HEAP32[i38 >> 2] | 0)) { i2 = 1; break; } else { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i2 = 0; break; } } else i2 = 1; } while (0); __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i44); __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i43); __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i42); __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i41); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i40); i1 = HEAP32[i46 >> 2] | 0; HEAP32[i46 >> 2] = 0; if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i45 >> 2] & 255](i1); STACKTOP = i47; return i2 | 0; } function __ZNSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i36, i37, i2, i3, i5, i40, i31, i4, i32, i33, i1) { i36 = i36 | 0; i37 = i37 | 0; i2 = i2 | 0; i3 = i3 | 0; i5 = i5 | 0; i40 = i40 | 0; i31 = i31 | 0; i4 = i4 | 0; i32 = i32 | 0; i33 = i33 | 0; i1 = i1 | 0; var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i34 = 0, i35 = 0, i38 = 0, i39 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0; i48 = STACKTOP; STACKTOP = STACKTOP + 512 | 0; i25 = i48 + 88 | 0; i34 = i48 + 96 | 0; i47 = i48 + 80 | 0; i38 = i48 + 72 | 0; i26 = i48 + 68 | 0; i27 = i48 + 500 | 0; i28 = i48 + 497 | 0; i29 = i48 + 496 | 0; i41 = i48 + 56 | 0; i42 = i48 + 44 | 0; i43 = i48 + 32 | 0; i44 = i48 + 20 | 0; i45 = i48 + 8 | 0; i30 = i48 + 4 | 0; i39 = i48; HEAP32[i25 >> 2] = i1; HEAP32[i47 >> 2] = i34; i46 = i47 + 4 | 0; HEAP32[i46 >> 2] = 178; HEAP32[i38 >> 2] = i34; HEAP32[i26 >> 2] = i34 + 400; HEAP32[i41 >> 2] = 0; HEAP32[i41 + 4 >> 2] = 0; HEAP32[i41 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i41 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i42 >> 2] = 0; HEAP32[i42 + 4 >> 2] = 0; HEAP32[i42 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i42 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i43 >> 2] = 0; HEAP32[i43 + 4 >> 2] = 0; HEAP32[i43 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i43 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i44 >> 2] = 0; HEAP32[i44 + 4 >> 2] = 0; HEAP32[i44 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i44 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i45 >> 2] = 0; HEAP32[i45 + 4 >> 2] = 0; HEAP32[i45 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i45 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__211__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_SF_Ri(i2, i3, i27, i28, i29, i41, i42, i43, i44, i30); HEAP32[i33 >> 2] = HEAP32[i32 >> 2]; i20 = i4 + 8 | 0; i21 = i43 + 11 | 0; i22 = i43 + 4 | 0; i23 = i44 + 11 | 0; i24 = i44 + 4 | 0; i12 = (i5 & 512 | 0) != 0; i13 = i42 + 11 | 0; i14 = i42 + 4 | 0; i15 = i45 + 11 | 0; i16 = i45 + 4 | 0; i17 = i27 + 3 | 0; i18 = i41 + 11 | 0; i19 = i41 + 4 | 0; i34 = 0; i11 = 0; L21 : while (1) { if (i11 >>> 0 >= 4) { i35 = 217; break; } i1 = HEAP32[i36 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i36 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i36 >> 2] | 0; break; } } else i1 = 0; while (0); i1 = (i1 | 0) == 0; i2 = HEAP32[i37 >> 2] | 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) != (HEAP32[i2 + 16 >> 2] | 0)) if (i1) break; else { i35 = 217; break L21; } if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) != -1) if (i1) break; else { i35 = 217; break L21; } else { HEAP32[i37 >> 2] = 0; i35 = 28; break; } } else i35 = 28; while (0); if ((i35 | 0) == 28) { i35 = 0; if (i1) { i35 = 217; break; } else i2 = 0; } L42 : do switch (HEAP8[i27 + i11 >> 0] | 0) { case 1: { if ((i11 | 0) == 3) i1 = i34; else { i1 = HEAP32[i36 >> 2] | 0; i3 = HEAP32[i1 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i3 >> 0] | 0; if ((i1 & 255) << 24 >> 24 <= -1) { i35 = 41; break L21; } if (!(HEAP16[(HEAP32[i20 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 8192)) { i35 = 41; break L21; } i1 = HEAP32[i36 >> 2] | 0; i3 = i1 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else { HEAP32[i3 >> 2] = i4 + 1; i1 = HEAPU8[i4 >> 0] | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i45, i1 & 255); i1 = i2; i3 = i2; i35 = 43; } break; } case 0: { if ((i11 | 0) == 3) i1 = i34; else { i1 = i2; i3 = i2; i35 = 43; } break; } case 3: { i1 = HEAP8[i21 >> 0] | 0; i2 = i1 << 24 >> 24 < 0 ? HEAP32[i22 >> 2] | 0 : i1 & 255; i4 = HEAP8[i23 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i24 >> 2] | 0 : i4 & 255; if ((i2 | 0) == (0 - i4 | 0)) i1 = i34; else { i5 = (i2 | 0) == 0; i6 = HEAP32[i36 >> 2] | 0; i7 = HEAP32[i6 + 12 >> 2] | 0; i2 = HEAP32[i6 + 16 >> 2] | 0; i3 = (i7 | 0) == (i2 | 0); if (i5 | (i4 | 0) == 0) { if (i3) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAPU8[i7 >> 0] | 0; i2 = i1 & 255; if (i5) { i1 = HEAP8[i23 >> 0] | 0; if (i2 << 24 >> 24 != (HEAP8[(i1 << 24 >> 24 < 0 ? HEAP32[i44 >> 2] | 0 : i44) >> 0] | 0)) { i1 = i34; break L42; } i2 = HEAP32[i36 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i1 = HEAP8[i23 >> 0] | 0; } else HEAP32[i3 >> 2] = i4 + 1; HEAP8[i31 >> 0] = 1; i1 = (i1 << 24 >> 24 < 0 ? HEAP32[i24 >> 2] | 0 : i1 & 255) >>> 0 > 1 ? i44 : i34; break L42; } i1 = HEAP8[i21 >> 0] | 0; if (i2 << 24 >> 24 != (HEAP8[(i1 << 24 >> 24 < 0 ? HEAP32[i43 >> 2] | 0 : i43) >> 0] | 0)) { HEAP8[i31 >> 0] = 1; i1 = i34; break L42; } i2 = HEAP32[i36 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i1 = HEAP8[i21 >> 0] | 0; } else HEAP32[i3 >> 2] = i4 + 1; i1 = (i1 << 24 >> 24 < 0 ? HEAP32[i22 >> 2] | 0 : i1 & 255) >>> 0 > 1 ? i43 : i34; break L42; } if (i3) { i5 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; i2 = HEAP32[i36 >> 2] | 0; i1 = HEAP8[i21 >> 0] | 0; i6 = i2; i4 = HEAP32[i2 + 12 >> 2] | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; } else { i5 = HEAPU8[i7 >> 0] | 0; i4 = i7; } i3 = i6 + 12 | 0; i2 = (i4 | 0) == (i2 | 0); if ((i5 & 255) << 24 >> 24 == (HEAP8[(i1 << 24 >> 24 < 0 ? HEAP32[i43 >> 2] | 0 : i43) >> 0] | 0)) { if (i2) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i1 = HEAP8[i21 >> 0] | 0; } else HEAP32[i3 >> 2] = i4 + 1; i1 = (i1 << 24 >> 24 < 0 ? HEAP32[i22 >> 2] | 0 : i1 & 255) >>> 0 > 1 ? i43 : i34; break L42; } if (i2) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAPU8[i4 >> 0] | 0; i1 = HEAP8[i23 >> 0] | 0; if ((i2 & 255) << 24 >> 24 != (HEAP8[(i1 << 24 >> 24 < 0 ? HEAP32[i44 >> 2] | 0 : i44) >> 0] | 0)) { i35 = 97; break L21; } i2 = HEAP32[i36 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i1 = HEAP8[i23 >> 0] | 0; } else HEAP32[i3 >> 2] = i4 + 1; HEAP8[i31 >> 0] = 1; i1 = (i1 << 24 >> 24 < 0 ? HEAP32[i24 >> 2] | 0 : i1 & 255) >>> 0 > 1 ? i44 : i34; } break; } case 2: { if (!(i11 >>> 0 < 2 | (i34 | 0) != 0) ? !(i12 | (i11 | 0) == 2 & (HEAP8[i17 >> 0] | 0) != 0) : 0) { i1 = 0; break L42; } i3 = HEAP8[i13 >> 0] | 0; i1 = i3 << 24 >> 24 < 0; i10 = HEAP32[i42 >> 2] | 0; i4 = i1 ? i10 : i42; i9 = i4; L104 : do if ((i11 | 0) != 0 ? (HEAPU8[i27 + (i11 + -1) >> 0] | 0) < 2 : 0) { i1 = i4 + (i1 ? HEAP32[i14 >> 2] | 0 : i3 & 255) | 0; i7 = i9; while (1) { i5 = i7; if ((i5 | 0) == (i1 | 0)) break; i6 = HEAP8[i5 >> 0] | 0; if (i6 << 24 >> 24 <= -1) break; if (!(HEAP16[(HEAP32[i20 >> 2] | 0) + (i6 << 24 >> 24 << 1) >> 1] & 8192)) break; i7 = i5 + 1 | 0; } i6 = i7 - i9 | 0; i5 = HEAP8[i15 >> 0] | 0; i1 = i5 << 24 >> 24 < 0; i5 = i1 ? HEAP32[i16 >> 2] | 0 : i5 & 255; if (i6 >>> 0 <= i5 >>> 0) { i5 = (i1 ? HEAP32[i45 >> 2] | 0 : i45) + i5 | 0; i1 = i5 + (0 - i6) | 0; while (1) { if ((i1 | 0) == (i5 | 0)) { i8 = i2; i4 = i7; i1 = i10; i5 = i2; break L104; } if ((HEAP8[i1 >> 0] | 0) != (HEAP8[i4 >> 0] | 0)) { i8 = i2; i4 = i9; i1 = i10; i5 = i2; break L104; } i4 = i4 + 1 | 0; i1 = i1 + 1 | 0; } } else { i8 = i2; i4 = i9; i1 = i10; i5 = i2; } } else { i8 = i2; i4 = i9; i1 = i10; i5 = i2; } while (0); L118 : while (1) { i6 = i3 << 24 >> 24 < 0; i1 = (i6 ? i1 : i42) + (i6 ? HEAP32[i14 >> 2] | 0 : i3 & 255) | 0; i6 = i4; if ((i6 | 0) == (i1 | 0)) break; i1 = HEAP32[i36 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i36 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i36 >> 2] | 0; break; } } else i1 = 0; while (0); i2 = (i1 | 0) == 0; do if (i5) { if ((HEAP32[i5 + 12 >> 2] | 0) != (HEAP32[i5 + 16 >> 2] | 0)) if (i2) { i1 = i8; break; } else { i1 = i6; break L118; } if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) != -1) if (i2 ^ (i8 | 0) == 0) { i1 = i8; i5 = i8; break; } else { i1 = i6; break L118; } else { HEAP32[i37 >> 2] = 0; i1 = 0; i35 = 123; break; } } else { i1 = i8; i35 = 123; } while (0); if ((i35 | 0) == 123) { i35 = 0; if (i2) { i1 = i6; break; } else i5 = 0; } i2 = HEAP32[i36 >> 2] | 0; i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAPU8[i3 >> 0] | 0; if ((i2 & 255) << 24 >> 24 != (HEAP8[i6 >> 0] | 0)) { i1 = i6; break; } i2 = HEAP32[i36 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; else HEAP32[i3 >> 2] = i4 + 1; i8 = i1; i4 = i6 + 1 | 0; i3 = HEAP8[i13 >> 0] | 0; i1 = HEAP32[i42 >> 2] | 0; } if (i12 ? (i10 = HEAP8[i13 >> 0] | 0, i9 = i10 << 24 >> 24 < 0, (i1 | 0) != ((i9 ? HEAP32[i42 >> 2] | 0 : i42) + (i9 ? HEAP32[i14 >> 2] | 0 : i10 & 255) | 0)) : 0) { i35 = 135; break L21; } else i1 = i34; break; } case 4: { i4 = 0; i1 = i2; i3 = i2; L150 : while (1) { i2 = HEAP32[i36 >> 2] | 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) { HEAP32[i36 >> 2] = 0; i2 = 0; break; } else { i2 = HEAP32[i36 >> 2] | 0; break; } } else i2 = 0; while (0); i2 = (i2 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i2) { i6 = i1; i5 = i3; break; } else { i2 = i1; break L150; } if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i2 ^ (i1 | 0) == 0) { i6 = i1; i5 = i1; break; } else { i2 = i1; break L150; } else { HEAP32[i37 >> 2] = 0; i1 = 0; i35 = 146; break; } } else i35 = 146; while (0); if ((i35 | 0) == 146) { i35 = 0; if (i2) { i2 = i1; break; } else { i6 = i1; i5 = 0; } } i1 = HEAP32[i36 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0; i2 = i1 & 255; if (i2 << 24 >> 24 > -1 ? (HEAP16[(HEAP32[i20 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 2048) != 0 : 0) { i1 = HEAP32[i33 >> 2] | 0; if ((i1 | 0) == (HEAP32[i25 >> 2] | 0)) { __ZNSt3__219__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i32, i33, i25); i1 = HEAP32[i33 >> 2] | 0; } HEAP32[i33 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i2; i1 = i4 + 1 | 0; } else { i10 = HEAP8[i18 >> 0] | 0; if (!(i2 << 24 >> 24 == (HEAP8[i29 >> 0] | 0) & (i4 | 0 ? ((i10 << 24 >> 24 < 0 ? HEAP32[i19 >> 2] | 0 : i10 & 255) | 0) != 0 : 0))) { i2 = i6; break; } i1 = HEAP32[i38 >> 2] | 0; if ((i1 | 0) == (HEAP32[i26 >> 2] | 0)) { __ZNSt3__219__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i47, i38, i26); i1 = HEAP32[i38 >> 2] | 0; } HEAP32[i38 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i4; i1 = 0; } i2 = HEAP32[i36 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i4 = i1; i1 = i6; i3 = i5; continue; } else { HEAP32[i3 >> 2] = i4 + 1; i4 = i1; i1 = i6; i3 = i5; continue; } } i1 = HEAP32[i38 >> 2] | 0; if (i4 | 0 ? (HEAP32[i47 >> 2] | 0) != (i1 | 0) : 0) { if ((i1 | 0) == (HEAP32[i26 >> 2] | 0)) { __ZNSt3__219__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i47, i38, i26); i1 = HEAP32[i38 >> 2] | 0; } HEAP32[i38 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i4; } L197 : do if ((HEAP32[i30 >> 2] | 0) > 0) { i1 = HEAP32[i36 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i36 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i36 >> 2] | 0; break; } } else i1 = 0; while (0); i1 = (i1 | 0) == 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) { HEAP32[i37 >> 2] = 0; i35 = 178; break; } if (i1) i4 = i2; else { i35 = 183; break L21; } } else i35 = 178; while (0); if ((i35 | 0) == 178) { i35 = 0; if (i1) { i35 = 183; break L21; } else i4 = 0; } i1 = HEAP32[i36 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0; if ((i1 & 255) << 24 >> 24 != (HEAP8[i28 >> 0] | 0)) { i35 = 183; break L21; } i1 = HEAP32[i36 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; i1 = i4; i3 = i4; } else { HEAP32[i2 >> 2] = i3 + 1; i1 = i4; i3 = i4; } while (1) { if ((HEAP32[i30 >> 2] | 0) <= 0) break L197; i2 = HEAP32[i36 >> 2] | 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) { HEAP32[i36 >> 2] = 0; i2 = 0; break; } else { i2 = HEAP32[i36 >> 2] | 0; break; } } else i2 = 0; while (0); i2 = (i2 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i2) { i5 = i1; i4 = i3; break; } else { i35 = 205; break L21; } if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i2 ^ (i1 | 0) == 0) { i5 = i1; i4 = i1; break; } else { i35 = 205; break L21; } else { HEAP32[i37 >> 2] = 0; i1 = 0; i35 = 198; break; } } else i35 = 198; while (0); if ((i35 | 0) == 198) { i35 = 0; if (i2) { i35 = 205; break L21; } else { i5 = i1; i4 = 0; } } i1 = HEAP32[i36 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0; if ((i1 & 255) << 24 >> 24 <= -1) { i35 = 205; break L21; } if (!(HEAP16[(HEAP32[i20 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 2048)) { i35 = 205; break L21; } if ((HEAP32[i33 >> 2] | 0) == (HEAP32[i25 >> 2] | 0)) __ZNSt3__219__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i32, i33, i25); i1 = HEAP32[i36 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0; i2 = HEAP32[i33 >> 2] | 0; HEAP32[i33 >> 2] = i2 + 1; HEAP8[i2 >> 0] = i1; HEAP32[i30 >> 2] = (HEAP32[i30 >> 2] | 0) + -1; i1 = HEAP32[i36 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; i1 = i5; i3 = i4; continue; } else { HEAP32[i2 >> 2] = i3 + 1; i1 = i5; i3 = i4; continue; } } } while (0); if ((HEAP32[i33 >> 2] | 0) == (HEAP32[i32 >> 2] | 0)) { i35 = 215; break L21; } else i1 = i34; break; } default: i1 = i34; } while (0); L261 : do if ((i35 | 0) == 43) while (1) { i35 = 0; i2 = HEAP32[i36 >> 2] | 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) { HEAP32[i36 >> 2] = 0; i2 = 0; break; } else { i2 = HEAP32[i36 >> 2] | 0; break; } } else i2 = 0; while (0); i2 = (i2 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i2) { i5 = i1; i4 = i3; break; } else { i1 = i34; break L261; } if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i2 ^ (i1 | 0) == 0) { i5 = i1; i4 = i1; break; } else { i1 = i34; break L261; } else { HEAP32[i37 >> 2] = 0; i1 = 0; i35 = 53; break; } } else i35 = 53; while (0); if ((i35 | 0) == 53) { i35 = 0; if (i2) { i1 = i34; break L261; } else { i5 = i1; i4 = 0; } } i1 = HEAP32[i36 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0; if ((i1 & 255) << 24 >> 24 <= -1) { i1 = i34; break L261; } if (!(HEAP16[(HEAP32[i20 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 8192)) { i1 = i34; break L261; } i1 = HEAP32[i36 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else { HEAP32[i2 >> 2] = i3 + 1; i1 = HEAPU8[i3 >> 0] | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i45, i1 & 255); i1 = i5; i3 = i4; i35 = 43; } while (0); i34 = i1; i11 = i11 + 1 | 0; } L293 : do if ((i35 | 0) == 41) { HEAP32[i40 >> 2] = HEAP32[i40 >> 2] | 4; i2 = 0; } else if ((i35 | 0) == 97) { HEAP32[i40 >> 2] = HEAP32[i40 >> 2] | 4; i2 = 0; } else if ((i35 | 0) == 135) { HEAP32[i40 >> 2] = HEAP32[i40 >> 2] | 4; i2 = 0; } else if ((i35 | 0) == 183) { HEAP32[i40 >> 2] = HEAP32[i40 >> 2] | 4; i2 = 0; } else if ((i35 | 0) == 205) { HEAP32[i40 >> 2] = HEAP32[i40 >> 2] | 4; i2 = 0; } else if ((i35 | 0) == 215) { HEAP32[i40 >> 2] = HEAP32[i40 >> 2] | 4; i2 = 0; } else if ((i35 | 0) == 217) { L295 : do if (i34 | 0) { i5 = i34 + 11 | 0; i6 = i34 + 4 | 0; i3 = 1; L297 : while (1) { i1 = HEAP8[i5 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i6 >> 2] | 0; else i1 = i1 & 255; if (i3 >>> 0 >= i1 >>> 0) break L295; i1 = HEAP32[i36 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i36 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i36 >> 2] | 0; break; } } else i1 = 0; while (0); i1 = (i1 | 0) == 0; i2 = HEAP32[i37 >> 2] | 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) { HEAP32[i37 >> 2] = 0; i35 = 233; break; } if (!i1) break L297; } else i35 = 233; while (0); if ((i35 | 0) == 233 ? (i35 = 0, i1) : 0) break; i1 = HEAP32[i36 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0; if ((HEAP8[i5 >> 0] | 0) < 0) i2 = HEAP32[i34 >> 2] | 0; else i2 = i34; if ((i1 & 255) << 24 >> 24 != (HEAP8[i2 + i3 >> 0] | 0)) break; i1 = i3 + 1 | 0; i2 = HEAP32[i36 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i3 = i1; continue; } else { HEAP32[i3 >> 2] = i4 + 1; i3 = i1; continue; } } HEAP32[i40 >> 2] = HEAP32[i40 >> 2] | 4; i2 = 0; break L293; } while (0); i2 = HEAP32[i47 >> 2] | 0; i1 = HEAP32[i38 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) { HEAP32[i39 >> 2] = 0; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i41, i2, i1, i39); if (!(HEAP32[i39 >> 2] | 0)) { i2 = 1; break; } else { HEAP32[i40 >> 2] = HEAP32[i40 >> 2] | 4; i2 = 0; break; } } else i2 = 1; } while (0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i45); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i44); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i43); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i42); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i41); i1 = HEAP32[i47 >> 2] | 0; HEAP32[i47 >> 2] = 0; if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i46 >> 2] & 255](i1); STACKTOP = i48; return i2 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i19, i16, i18) { i19 = i19 | 0; i16 = i16 | 0; i18 = i18 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0; i27 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i22 = i27 + 48 | 0; i20 = i27 + 36 | 0; i21 = i27 + 24 | 0; i12 = i27 + 12 | 0; i13 = i27; L1 : do if ((i19 | 0) == (i16 | 0)) i1 = i19; else { i26 = i18 + 56 | 0; i23 = HEAP32[i26 >> 2] | 0; i15 = i23 + 1 | 0; HEAP32[i26 >> 2] = i15; i24 = i18 + 61 | 0; i25 = HEAP8[i24 >> 0] | 0; if (i15 >>> 0 > 1) HEAP8[i24 >> 0] = 1; i1 = HEAP8[i19 >> 0] | 0; L6 : do switch (i1 | 0) { case 84: case 71: { L141 : do if ((i16 - i19 | 0) > 2) { switch (i1 | 0) { case 84: break; case 71: switch (HEAP8[i19 + 1 >> 0] | 0) { case 86: { i22 = i19 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i22, i16, i18) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i19; break L141; } i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) { i1 = i19; break L6; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 44237) | 0; break L141; } case 82: { i22 = i19 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i22, i16, i18) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i19; break L141; } i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) { i1 = i19; break L6; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 44257) | 0; break L141; } default: { i1 = i19; break L141; } } default: { i1 = i19; break L141; } } i1 = i19 + 1 | 0; switch (HEAP8[i1 >> 0] | 0) { case 86: { i22 = i19 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i16, i18) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i19; break L141; } i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) { i1 = i19; break L6; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 44086) | 0; break L141; } case 84: { i22 = i19 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i16, i18) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i19; break L141; } i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) { i1 = i19; break L6; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 44098) | 0; break L141; } case 73: { i22 = i19 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i16, i18) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i19; break L141; } i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) { i1 = i19; break L6; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 44107) | 0; break L141; } case 83: { i22 = i19 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i22, i16, i18) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i19; break L141; } i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) { i1 = i19; break L6; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 44121) | 0; break L141; } case 99: { i22 = i19 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i22, i16) | 0; if ((i1 | 0) == (i22 | 0)) { i1 = i19; break L141; } i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i1, i16) | 0; if ((i2 | 0) == (i1 | 0)) { i1 = i19; break L141; } i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i2, i16, i18) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i19; break L141; } i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) { i1 = i19; break L6; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 44140) | 0; break L141; } case 67: { i15 = i19 + 2 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i15, i16, i18) | 0; if ((i1 | 0) == (i15 | 0)) { i1 = i19; break L141; } i2 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1, i16) | 0; if ((i2 | 0) == (i1 | 0) | (i2 | 0) == (i16 | 0)) { i1 = i19; break L141; } if ((HEAP8[i2 >> 0] | 0) != 95) { i1 = i19; break L141; } i15 = i2 + 1 | 0; i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i15, i16, i18) | 0; if ((i1 | 0) == (i15 | 0)) { i1 = i19; break L141; } i4 = i18 + 4 | 0; i2 = HEAP32[i4 >> 2] | 0; if (((i2 - (HEAP32[i18 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i19; break L6; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i22, i2 + -24 | 0); i11 = HEAP32[i4 >> 2] | 0; i2 = i11 + -24 | 0; i3 = i11; while (1) { if ((i3 | 0) == (i2 | 0)) break; i19 = i3 + -24 | 0; HEAP32[i4 >> 2] = i19; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i19); i3 = HEAP32[i4 >> 2] | 0; } i10 = i11 + -48 | 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i22, 0, 44167) | 0; HEAP32[i12 >> 2] = HEAP32[i3 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i12, 44192) | 0; HEAP32[i21 >> 2] = HEAP32[i3 >> 2]; HEAP32[i21 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i21 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i13, (HEAP32[i4 >> 2] | 0) + -24 | 0); i3 = HEAP8[i13 + 11 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i21, i2 ? HEAP32[i13 >> 2] | 0 : i13, i2 ? HEAP32[i13 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i20 >> 2] = HEAP32[i3 >> 2]; HEAP32[i20 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i20 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i8 = i10 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i11 + -44 >> 2] = 0; i2 = HEAP8[i8 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i9 = 0; i6 = (HEAP32[i11 + -40 >> 2] & 2147483647) + -1 | 0; i5 = 1; } else i17 = 46; } else { HEAP8[i10 >> 0] = 0; HEAP8[i8 >> 0] = 0; i2 = 0; i17 = 46; } if ((i17 | 0) == 46) { i9 = i2 & 255; i6 = 10; i5 = 0; } i3 = i9 >>> 0 < 11; i7 = i3 ? 10 : (i9 + 16 & 496) + -1 | 0; L210 : do if ((i7 | 0) != (i6 | 0)) { do if (i3) { i3 = HEAP32[i10 >> 2] | 0; if (i5) { i2 = 0; i4 = i10; i17 = 54; } else { i5 = 0; i6 = 1; i4 = i10; i17 = 55; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0) break L210; if (i5) { i2 = 1; i3 = HEAP32[i10 >> 2] | 0; i17 = 54; break; } else { i5 = 1; i6 = 0; i3 = i10; i17 = 55; break; } } while (0); if ((i17 | 0) == 54) { i5 = i2; i6 = 1; i2 = HEAP32[i11 + -44 >> 2] | 0; } else if ((i17 | 0) == 55) i2 = i2 & 255; i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i11 + -40 >> 2] = i7 + 1 | -2147483648; HEAP32[i11 + -44 >> 2] = i9; HEAP32[i10 >> 2] = i4; break; } else { HEAP8[i8 >> 0] = i9; break; } } while (0); HEAP32[i10 >> 2] = HEAP32[i20 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i20 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i20 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i20 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i21); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i22); break L141; } default: { i2 = __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i1, i16) | 0; do if ((i2 | 0) != (i1 | 0)) { i1 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i2, i16, i18) | 0; if ((i1 | 0) != (i2 | 0)) { i2 = HEAP32[i18 + 4 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) != (i2 | 0)) { i2 = i2 + -24 | 0; if ((HEAP8[i19 + 2 >> 0] | 0) == 118) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2, 0, 44197) | 0; i2 = 0; break; } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2, 0, 44215) | 0; i2 = 0; break; } } else { i2 = 1; i1 = i19; } } else { i2 = 0; i1 = i19; } } else { i2 = 3; i1 = i19; } while (0); switch (i2 & 3) { case 3: case 0: break L141; default: {} } if (!i2) break L141; else { i1 = i19; break L6; } } } } else i1 = i19; while (0); break; } default: { i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_nameINS0_2DbEEEPKcS4_S4_RT_(i19, i16, i18) | 0; i13 = HEAP32[i18 + 48 >> 2] | 0; i14 = HEAP32[i18 + 52 >> 2] | 0; if ((i1 | 0) != (i19 | 0)) if ((i1 | 0) != (i16 | 0)) { switch (HEAP8[i1 >> 0] | 0) { case 46: case 69: break L6; default: {} } i15 = HEAP8[i24 >> 0] | 0; HEAP8[i24 >> 0] = 0; HEAP32[i22 >> 2] = 0; HEAP32[i22 + 4 >> 2] = 0; HEAP32[i22 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i22 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i12 = i18 + 4 | 0; i2 = HEAP32[i12 >> 2] | 0; L15 : do if ((HEAP32[i18 >> 2] | 0) != (i2 | 0)) { i3 = i2 + -24 | 0; i6 = HEAP8[i3 + 11 >> 0] | 0; i7 = i6 << 24 >> 24 < 0; if (i7) i4 = HEAP32[i2 + -20 >> 2] | 0; else i4 = i6 & 255; if (i4) { if (!(HEAP8[i18 + 60 >> 0] | 0)) { if (i7) { i4 = HEAP32[i3 >> 2] | 0; i5 = HEAP32[i2 + -20 >> 2] | 0; } else { i4 = i3; i5 = i6 & 255; } if ((HEAP8[i4 + i5 + -1 >> 0] | 0) == 62) { if (i7) { i4 = HEAP32[i2 + -20 >> 2] | 0; i5 = HEAP32[i3 >> 2] | 0; } else { i4 = i6 & 255; i5 = i3; } if ((HEAP8[i5 + (i4 + -2) >> 0] | 0) != 45) { if (i7) { i4 = HEAP32[i2 + -20 >> 2] | 0; i3 = HEAP32[i3 >> 2] | 0; } else i4 = i6 & 255; if ((HEAP8[i3 + (i4 + -2) >> 0] | 0) != 62) { i10 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i16, i18) | 0; if ((i10 | 0) == (i1 | 0)) { i1 = i19; i2 = 0; break; } i11 = HEAP32[i12 >> 2] | 0; i2 = i11; if (((i11 - (HEAP32[i18 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i1 = i19; i2 = 0; break; } i3 = i2 + -24 | 0; HEAP32[i20 >> 2] = HEAP32[i3 >> 2]; HEAP32[i20 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i20 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i2 + -12 | 0; i9 = i22 + 11 | 0; do if ((HEAP8[i9 >> 0] | 0) < 0) { HEAP8[HEAP32[i22 >> 2] >> 0] = 0; HEAP32[i22 + 4 >> 2] = 0; i1 = HEAP8[i9 >> 0] | 0; if (i1 << 24 >> 24 >= 0) { i17 = 116; break; } i7 = 0; i5 = (HEAP32[i22 + 8 >> 2] & 2147483647) + -1 | 0; i4 = 1; } else { HEAP8[i22 >> 0] = 0; HEAP8[i9 >> 0] = 0; i1 = 0; i17 = 116; } while (0); if ((i17 | 0) == 116) { i7 = i1 & 255; i5 = 10; i4 = 0; } i2 = i7 >>> 0 < 11; i6 = i2 ? 10 : (i7 + 16 & 496) + -1 | 0; L52 : do if ((i6 | 0) != (i5 | 0)) { do if (i2) { i2 = HEAP32[i22 >> 2] | 0; if (i4) { i1 = 0; i3 = i22; i17 = 123; } else { i4 = 0; i5 = 1; i3 = i22; i17 = 124; } } else { i3 = _malloc(i6 + 1 | 0) | 0; if (i6 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0) break L52; if (!i4) { i4 = 1; i5 = 0; i2 = i22; i17 = 124; break; } i1 = 1; i2 = HEAP32[i22 >> 2] | 0; i17 = 123; } while (0); if ((i17 | 0) == 123) { i4 = i1; i5 = 1; i1 = HEAP32[i22 + 4 >> 2] | 0; } else if ((i17 | 0) == 124) i1 = i1 & 255; i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i3 | 0, i2 | 0, i1 | 0) | 0; if (i5) _free(i2); if (i4) { HEAP32[i22 + 8 >> 2] = i6 + 1 | -2147483648; HEAP32[i22 + 4 >> 2] = i7; HEAP32[i22 >> 2] = i3; break; } else { HEAP8[i9 >> 0] = i7; break; } } while (0); HEAP32[i22 >> 2] = HEAP32[i8 >> 2]; HEAP32[i22 + 4 >> 2] = HEAP32[i8 + 4 >> 2]; HEAP32[i22 + 8 >> 2] = HEAP32[i8 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i8 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i11 = HEAP8[i9 >> 0] | 0; if (!((i11 << 24 >> 24 < 0 ? HEAP32[i22 + 4 >> 2] | 0 : i11 & 255) | 0)) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i20, 32); i1 = HEAP32[i12 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i11 = i3 + -24 | 0; HEAP32[i12 >> 2] = i11; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11); i3 = HEAP32[i12 >> 2] | 0; } i2 = HEAP8[i20 + 11 >> 0] | 0; i11 = i2 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj(i1 + -48 | 0, 0, i11 ? HEAP32[i20 >> 2] | 0 : i20, i11 ? HEAP32[i20 + 4 >> 2] | 0 : i2 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); i1 = i10; i2 = HEAP32[i12 >> 2] | 0; } } } } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i2 + -24 | 0, 40); if ((i1 | 0) != (i16 | 0) ? (HEAP8[i1 >> 0] | 0) == 118 : 0) { i1 = i1 + 1 | 0; i3 = HEAP32[i18 >> 2] | 0; i2 = HEAP32[i12 >> 2] | 0; } else i17 = 143; do if ((i17 | 0) == 143) { i8 = i20 + 11 | 0; i9 = i20 + 4 | 0; i10 = i21 + 11 | 0; i11 = i21 + 4 | 0; i6 = 1; L90 : while (1) { i3 = HEAP32[i18 >> 2] | 0; i2 = HEAP32[i12 >> 2] | 0; while (1) { i4 = (i2 - i3 | 0) / 24 | 0; i7 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i16, i18) | 0; i2 = HEAP32[i12 >> 2] | 0; i3 = HEAP32[i18 >> 2] | 0; i5 = (i2 - i3 | 0) / 24 | 0; if ((i7 | 0) == (i1 | 0)) { i17 = 166; break L90; } if (i5 >>> 0 > i4 >>> 0) break; else i1 = i7; } HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) { i1 = i4; break; } HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } while (1) { if (i1 >>> 0 >= i5 >>> 0) { i1 = i4; break; } i17 = HEAP8[i8 >> 0] | 0; if ((i17 << 24 >> 24 < 0 ? HEAP32[i9 >> 2] | 0 : i17 & 255) | 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i20, 42455) | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i21, (HEAP32[i18 >> 2] | 0) + (i1 * 24 | 0) | 0); i17 = HEAP8[i10 >> 0] | 0; i3 = i17 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i20, i3 ? HEAP32[i21 >> 2] | 0 : i21, i3 ? HEAP32[i11 >> 2] | 0 : i17 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i21); i1 = i1 + 1 | 0; } while (1) { if (i1 >>> 0 >= i5 >>> 0) break; i3 = HEAP32[i12 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break; i17 = i3 + -24 | 0; HEAP32[i12 >> 2] = i17; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i17); i3 = HEAP32[i12 >> 2] | 0; } i1 = i1 + 1 | 0; } i3 = HEAP8[i8 >> 0] | 0; i1 = HEAP32[i9 >> 2] | 0; if (!((i3 << 24 >> 24 < 0 ? i1 : i3 & 255) | 0)) i1 = i6; else { i2 = HEAP32[i12 >> 2] | 0; if ((HEAP32[i18 >> 2] | 0) == (i2 | 0)) { i17 = 178; break; } if (!i6) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -24 | 0, 42455) | 0; i2 = HEAP32[i12 >> 2] | 0; i3 = HEAP8[i8 >> 0] | 0; i1 = HEAP32[i9 >> 2] | 0; } i17 = i3 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -24 | 0, i17 ? HEAP32[i20 >> 2] | 0 : i20, i17 ? i1 : i3 & 255) | 0; i1 = 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); i6 = i1; i1 = i7; } if ((i17 | 0) == 166) break; else if ((i17 | 0) == 178) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i20); i1 = i19; i2 = 0; break L15; } } while (0); if ((i3 | 0) != (i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i2 + -24 | 0, 41); if (i13 & 1 | 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i12 >> 2] | 0) + -24 | 0, 42408) | 0; if (i13 & 2 | 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i12 >> 2] | 0) + -24 | 0, 42415) | 0; if (i13 & 4 | 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i12 >> 2] | 0) + -24 | 0, 42425) | 0; switch (i14 | 0) { case 1: { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i12 >> 2] | 0) + -24 | 0, 42458) | 0; break; } case 2: { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i12 >> 2] | 0) + -24 | 0, 42461) | 0; break; } default: {} } i2 = HEAP8[i22 + 11 >> 0] | 0; i21 = i2 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i12 >> 2] | 0) + -24 | 0, i21 ? HEAP32[i22 >> 2] | 0 : i22, i21 ? HEAP32[i22 + 4 >> 2] | 0 : i2 & 255) | 0; i2 = 1; } else { i1 = i19; i2 = 0; } } else { i1 = i19; i2 = 0; } } else { i1 = i19; i2 = 0; } while (0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i22); HEAP8[i24 >> 0] = i15; if (!i2) { HEAP8[i24 >> 0] = i25; HEAP32[i26 >> 2] = i23; i1 = i19; break L1; } } else i1 = i16; else i1 = i19; } } while (0); HEAP8[i24 >> 0] = i25; HEAP32[i26 >> 2] = i23; } while (0); STACKTOP = i27; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i18, i14) { i1 = i1 | 0; i18 = i18 | 0; i14 = i14 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i15 = i19 + 64 | 0; i16 = i19 + 40 | 0; i8 = i19 + 24 | 0; i9 = i19 + 12 | 0; i7 = i19; L1 : do if ((i1 | 0) != (i18 | 0)) { i4 = HEAP8[i1 >> 0] | 0; i2 = i4 << 24 >> 24; switch (i2 | 0) { case 68: case 67: { L6 : do if ((i18 - i1 | 0) > 1 ? (i6 = i14 + 4 | 0, i3 = HEAP32[i6 >> 2] | 0, (HEAP32[i14 >> 2] | 0) != (i3 | 0)) : 0) { switch (i2 | 0) { case 67: { switch (HEAP8[i1 + 1 >> 0] | 0) { case 53: case 51: case 50: case 49: break; default: break L6; } __ZN10__cxxabiv112_GLOBAL__N_19base_nameINSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEEEET_RS9_(i8, i3 + -24 | 0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i8); i2 = HEAP32[i6 >> 2] | 0; i18 = HEAP32[i14 + 8 >> 2] | 0; i5 = i18; do if (i2 >>> 0 >= i18 >>> 0) { i4 = HEAP32[i14 >> 2] | 0; i2 = (i2 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i14); else { i17 = (i5 - i4 | 0) / 24 | 0; i18 = i17 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i15, i17 >>> 0 < 89478485 ? (i18 >>> 0 < i3 >>> 0 ? i3 : i18) : 178956970, i2, i14 + 12 | 0); i18 = i15 + 8 | 0; i17 = HEAP32[i18 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i17, i16); HEAP32[i18 >> 2] = i17 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i14, i15); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i15); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i16); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8); HEAP8[i14 + 60 >> 0] = 1; i1 = i1 + 2 | 0; break L6; } case 68: break; default: break L6; } switch (HEAP8[i1 + 1 >> 0] | 0) { case 53: case 50: case 49: case 48: break; default: break L6; } __ZN10__cxxabiv112_GLOBAL__N_19base_nameINSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEEEET_RS9_(i7, i3 + -24 | 0); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i7, 0, 42667) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i9); i2 = HEAP32[i6 >> 2] | 0; i18 = HEAP32[i14 + 8 >> 2] | 0; i5 = i18; do if (i2 >>> 0 >= i18 >>> 0) { i4 = HEAP32[i14 >> 2] | 0; i2 = (i2 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i14); else { i17 = (i5 - i4 | 0) / 24 | 0; i18 = i17 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i15, i17 >>> 0 < 89478485 ? (i18 >>> 0 < i3 >>> 0 ? i3 : i18) : 178956970, i2, i14 + 12 | 0); i18 = i15 + 8 | 0; i17 = HEAP32[i18 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i17, i16); HEAP32[i18 >> 2] = i17 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i14, i15); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i15); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i16); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); HEAP8[i14 + 60 >> 0] = 1; i1 = i1 + 2 | 0; } while (0); break L1; } case 85: { L34 : do if ((i18 - i1 | 0) > 2 & i4 << 24 >> 24 == 85) { switch (HEAP8[i1 + 1 >> 0] | 0) { case 116: { HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i8, 42669, 8); __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i8); i6 = i14 + 4 | 0; i2 = HEAP32[i6 >> 2] | 0; i17 = HEAP32[i14 + 8 >> 2] | 0; i4 = i17; do if (i2 >>> 0 >= i17 >>> 0) { i5 = HEAP32[i14 >> 2] | 0; i2 = (i2 - i5 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i14); else { i13 = (i4 - i5 | 0) / 24 | 0; i17 = i13 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i15, i13 >>> 0 < 89478485 ? (i17 >>> 0 < i3 >>> 0 ? i3 : i17) : 178956970, i2, i14 + 12 | 0); i17 = i15 + 8 | 0; i13 = HEAP32[i17 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i13, i16); HEAP32[i17 >> 2] = i13 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i14, i15); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i15); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i16); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8); i3 = i1 + 2 | 0; if ((i3 | 0) == (i18 | 0)) { i3 = HEAP32[i6 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break L34; i18 = i3 + -24 | 0; HEAP32[i6 >> 2] = i18; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18); i3 = HEAP32[i6 >> 2] | 0; } } if (((HEAP8[i3 >> 0] | 0) + -48 | 0) >>> 0 < 10) { i2 = i1 + 3 | 0; while (1) { if ((i2 | 0) == (i18 | 0)) { i2 = i18; break; } if (((HEAP8[i2 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendIPKcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorISC_EE5valueERS7_E4typeESC_SC_((HEAP32[i6 >> 2] | 0) + -24 | 0, i3, i2); } else i2 = i3; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc((HEAP32[i6 >> 2] | 0) + -24 | 0, 39); if ((i2 | 0) != (i18 | 0) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) { i1 = i2 + 1 | 0; break L34; } i3 = HEAP32[i6 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break L34; i18 = i3 + -24 | 0; HEAP32[i6 >> 2] = i18; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18); i3 = HEAP32[i6 >> 2] | 0; } } case 108: break; default: break L34; } HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i9, 42678, 9); __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i16, i9); i17 = i14 + 4 | 0; i2 = HEAP32[i17 >> 2] | 0; i12 = HEAP32[i14 + 8 >> 2] | 0; i4 = i12; do if (i2 >>> 0 >= i12 >>> 0) { i5 = HEAP32[i14 >> 2] | 0; i2 = (i2 - i5 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i14); else { i11 = (i4 - i5 | 0) / 24 | 0; i12 = i11 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i15, i11 >>> 0 < 89478485 ? (i12 >>> 0 < i3 >>> 0 ? i3 : i12) : 178956970, i2, i14 + 12 | 0); i12 = i15 + 8 | 0; i11 = HEAP32[i12 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i16); HEAP32[i12 >> 2] = i11 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i14, i15); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i15); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i16); HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9); i3 = i1 + 2 | 0; do if ((HEAP8[i3 >> 0] | 0) != 118) { i2 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i3, i18, i14) | 0; if ((i2 | 0) == (i3 | 0)) { i3 = HEAP32[i17 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break L34; i18 = i3 + -24 | 0; HEAP32[i17 >> 2] = i18; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18); i3 = HEAP32[i17 >> 2] | 0; } } i3 = HEAP32[i17 >> 2] | 0; if (((i3 - (HEAP32[i14 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L34; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i15, i3 + -24 | 0); i5 = HEAP32[i17 >> 2] | 0; i3 = i5 + -24 | 0; i4 = i5; while (1) { if ((i4 | 0) == (i3 | 0)) break; i12 = i4 + -24 | 0; HEAP32[i17 >> 2] = i12; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12); i4 = HEAP32[i17 >> 2] | 0; } i11 = i15 + 11 | 0; i10 = HEAP8[i11 >> 0] | 0; i9 = i10 << 24 >> 24 < 0; i12 = i15 + 4 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5 + -48 | 0, i9 ? HEAP32[i15 >> 2] | 0 : i15, i9 ? HEAP32[i12 >> 2] | 0 : i10 & 255) | 0; i10 = i15 + 8 | 0; while (1) { i9 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i2, i18, i14) | 0; if ((i9 | 0) == (i2 | 0)) { i13 = 93; break; } i2 = HEAP32[i17 >> 2] | 0; if (((i2 - (HEAP32[i14 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) { i13 = 131; break; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, i2 + -24 | 0); if ((HEAP8[i11 >> 0] | 0) < 0) { HEAP8[HEAP32[i15 >> 2] >> 0] = 0; HEAP32[i12 >> 2] = 0; i2 = HEAP8[i11 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i8 = 0; i6 = (HEAP32[i10 >> 2] & 2147483647) + -1 | 0; i5 = 1; } else i13 = 69; } else { HEAP8[i15 >> 0] = 0; HEAP8[i11 >> 0] = 0; i2 = 0; i13 = 69; } if ((i13 | 0) == 69) { i13 = 0; i8 = i2 & 255; i6 = 10; i5 = 0; } i3 = i8 >>> 0 < 11; i7 = i3 ? 10 : (i8 + 16 & 496) + -1 | 0; do if ((i7 | 0) != (i6 | 0)) { if (i3) { i3 = HEAP32[i15 >> 2] | 0; if (i5) { i2 = 0; i4 = i15; i13 = 76; } else { i5 = 0; i6 = 1; i4 = i15; i13 = 77; } } else { i4 = _malloc(i7 + 1 | 0) | 0; if (i7 >>> 0 <= i6 >>> 0 & (i4 | 0) == 0) break; if (i5) { i2 = 1; i3 = HEAP32[i15 >> 2] | 0; i13 = 76; } else { i5 = 1; i6 = 0; i3 = i15; i13 = 77; } } if ((i13 | 0) == 76) { i13 = 0; i5 = i2; i6 = 1; i2 = HEAP32[i12 >> 2] | 0; } else if ((i13 | 0) == 77) { i13 = 0; i2 = i2 & 255; } i2 = i2 + 1 | 0; if (i2 | 0) _memcpy(i4 | 0, i3 | 0, i2 | 0) | 0; if (i6) _free(i3); if (i5) { HEAP32[i10 >> 2] = i7 + 1 | -2147483648; HEAP32[i12 >> 2] = i8; HEAP32[i15 >> 2] = i4; break; } else { HEAP8[i11 >> 0] = i8; break; } } while (0); HEAP32[i15 >> 2] = HEAP32[i16 >> 2]; HEAP32[i15 + 4 >> 2] = HEAP32[i16 + 4 >> 2]; HEAP32[i15 + 8 >> 2] = HEAP32[i16 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i16 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16); i2 = HEAP32[i17 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i8 = i4 + -24 | 0; HEAP32[i17 >> 2] = i8; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i4 = HEAP32[i17 >> 2] | 0; } i8 = HEAP8[i11 >> 0] | 0; if (!((i8 << 24 >> 24 < 0 ? HEAP32[i12 >> 2] | 0 : i8 & 255) | 0)) { i2 = i9; continue; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i2 + -48 | 0, 42455) | 0; i2 = HEAP8[i11 >> 0] | 0; i8 = i2 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i17 >> 2] | 0) + -24 | 0, i8 ? HEAP32[i15 >> 2] | 0 : i15, i8 ? HEAP32[i12 >> 2] | 0 : i2 & 255) | 0; i2 = i9; } if ((i13 | 0) == 93) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc((HEAP32[i17 >> 2] | 0) + -24 | 0, 42358) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); break; } else if ((i13 | 0) == 131) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); break L34; } } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc((HEAP32[i17 >> 2] | 0) + -24 | 0, 41); i2 = i1 + 3 | 0; } while (0); if ((i2 | 0) != (i18 | 0) ? (HEAP8[i2 >> 0] | 0) == 69 : 0) { i4 = i2 + 1 | 0; if ((i4 | 0) == (i18 | 0)) { i3 = HEAP32[i17 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break L34; i18 = i3 + -24 | 0; HEAP32[i17 >> 2] = i18; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18); i3 = HEAP32[i17 >> 2] | 0; } } L142 : do if (((HEAP8[i4 >> 0] | 0) + -48 | 0) >>> 0 < 10) { i2 = i2 + 2 | 0; while (1) { if ((i2 | 0) == (i18 | 0)) { i2 = i18; break; } if (((HEAP8[i2 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break; i2 = i2 + 1 | 0; } i10 = HEAP32[i17 >> 2] | 0; i5 = i10 + -24 | 0; i11 = i5 + 11 | 0; i3 = HEAP8[i11 >> 0] | 0; i8 = i3 << 24 >> 24 < 0; if (i8) { i7 = HEAP32[i5 >> 2] | 0; i6 = i7; i9 = HEAP32[i10 + -20 >> 2] | 0; i3 = (HEAP32[i10 + -16 >> 2] & 2147483647) + -1 | 0; } else { i6 = i5; i7 = i5; i9 = i3 & 255; i3 = 10; } i7 = i7 + 7 - i6 | 0; i6 = i2 - i4 | 0; if (i6) { if ((i3 - i9 | 0) >>> 0 >= i6 >>> 0) { if (i8) i5 = HEAP32[i5 >> 2] | 0; i3 = i9 - i7 | 0; if (i3) { i16 = i5 + i7 | 0; _memmove(i16 + i6 | 0, i16 | 0, i3 | 0) | 0; } } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i5, i3, i9 + i6 - i3 | 0, i9, i7, i6); i5 = HEAP32[i5 >> 2] | 0; } i3 = i9 + i6 | 0; if ((HEAP8[i11 >> 0] | 0) < 0) HEAP32[i10 + -20 >> 2] = i3; else HEAP8[i11 >> 0] = i3; HEAP8[i5 + i3 >> 0] = 0; i3 = i5 + i7 | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break L142; HEAP8[i3 >> 0] = HEAP8[i4 >> 0] | 0; i4 = i4 + 1 | 0; i3 = i3 + 1 | 0; } } } else i2 = i4; while (0); if ((i2 | 0) != (i18 | 0) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) { i1 = i2 + 1 | 0; break; } i3 = HEAP32[i17 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break L34; i18 = i3 + -24 | 0; HEAP32[i17 >> 2] = i18; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18); i3 = HEAP32[i17 >> 2] | 0; } } i3 = HEAP32[i17 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break L34; i18 = i3 + -24 | 0; HEAP32[i17 >> 2] = i18; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i18); i3 = HEAP32[i17 >> 2] | 0; } } while (0); break L1; } case 57: case 56: case 55: case 54: case 53: case 52: case 51: case 50: case 49: { i1 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i18, i14) | 0; break L1; } default: { i18 = __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i18, i14) | 0; STACKTOP = i19; return i18 | 0; } } } while (0); STACKTOP = i19; return i1 | 0; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE10visitUnaryEPNS_5UnaryE(i38, i2, i14) { i38 = i38 | 0; i2 = i2 | 0; i14 = i14 | 0; var i1 = 0, d3 = 0.0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i39 = 0, i40 = 0, i41 = 0; i41 = STACKTOP; STACKTOP = STACKTOP + 592 | 0; i1 = i41 + 568 | 0; i25 = i41 + 512 | 0; i40 = i41 + 480 | 0; i33 = i41 + 552 | 0; i34 = i41 + 536 | 0; i35 = i41 + 496 | 0; i36 = i41 + 464 | 0; i37 = i41 + 448 | 0; i4 = i41 + 432 | 0; i5 = i41 + 416 | 0; i6 = i41 + 400 | 0; i7 = i41 + 384 | 0; i8 = i41 + 368 | 0; i9 = i41 + 352 | 0; i10 = i41 + 336 | 0; i11 = i41 + 320 | 0; i12 = i41 + 304 | 0; i13 = i41 + 288 | 0; i15 = i41 + 272 | 0; i16 = i41 + 256 | 0; i17 = i41 + 240 | 0; i18 = i41 + 224 | 0; i19 = i41 + 208 | 0; i20 = i41 + 192 | 0; i21 = i41 + 176 | 0; i22 = i41 + 160 | 0; i23 = i41 + 144 | 0; i24 = i41 + 128 | 0; i26 = i41 + 112 | 0; i27 = i41 + 96 | 0; i28 = i41 + 80 | 0; i29 = i41 + 64 | 0; i30 = i41 + 48 | 0; i31 = i41 + 32 | 0; i32 = i41 + 16 | 0; i39 = i41; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i25, i2, HEAP32[i14 + 12 >> 2] | 0); if (!(HEAP32[i25 + 16 >> 2] | 0)) { HEAP32[i40 >> 2] = HEAP32[i25 >> 2]; HEAP32[i40 + 4 >> 2] = HEAP32[i25 + 4 >> 2]; HEAP32[i40 + 8 >> 2] = HEAP32[i25 + 8 >> 2]; HEAP32[i40 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; L3 : do switch (HEAP32[i40 >> 2] | 0) { case 1: { do switch (HEAP32[i14 + 8 >> 2] | 0) { case 0: { __ZNK4wasm7Literal18countLeadingZeroesEv(i33, i40); HEAP32[i38 >> 2] = HEAP32[i33 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i33 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i33 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i33 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 2: { __ZNK4wasm7Literal19countTrailingZeroesEv(i34, i40); HEAP32[i38 >> 2] = HEAP32[i34 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i34 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i34 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i34 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 4: { __ZNK4wasm7Literal8popCountEv(i35, i40); HEAP32[i38 >> 2] = HEAP32[i35 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i35 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i35 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i35 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 20: { HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = 0; i40 = (__ZNK4wasm7LiteraleqERKS0_(i40, i1) | 0) & 1; HEAP32[i38 >> 2] = 1; HEAP32[i38 + 8 >> 2] = i40; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 45: { __ZN4wasm7Literal9castToF32Ev(i36, i40); HEAP32[i38 >> 2] = HEAP32[i36 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i36 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i36 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i36 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 22: { __ZNK4wasm7Literal12extendToSI64Ev(i37, i40); HEAP32[i38 >> 2] = HEAP32[i37 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i37 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i37 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i37 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 23: { __ZNK4wasm7Literal12extendToUI64Ev(i4, i40); HEAP32[i38 >> 2] = HEAP32[i4 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i4 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i4 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i4 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 37: { d3 = +((HEAP32[i40 + 8 >> 2] | 0) >>> 0); HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 38: { d3 = +((HEAP32[i40 + 8 >> 2] | 0) >>> 0); HEAP32[i38 >> 2] = 4; HEAPF64[i38 + 8 >> 3] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 35: { d3 = +(HEAP32[i40 + 8 >> 2] | 0); HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 36: { d3 = +(HEAP32[i40 + 8 >> 2] | 0); HEAP32[i38 >> 2] = 4; HEAPF64[i38 + 8 >> 3] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } default: _abort(); } while (0); break; } case 2: { do switch (HEAP32[i14 + 8 >> 2] | 0) { case 1: { __ZNK4wasm7Literal18countLeadingZeroesEv(i5, i40); HEAP32[i38 >> 2] = HEAP32[i5 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 3: { __ZNK4wasm7Literal19countTrailingZeroesEv(i6, i40); HEAP32[i38 >> 2] = HEAP32[i6 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 5: { __ZNK4wasm7Literal8popCountEv(i7, i40); HEAP32[i38 >> 2] = HEAP32[i7 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i7 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 21: { HEAP32[i1 >> 2] = 2; i39 = i1 + 8 | 0; HEAP32[i39 >> 2] = 0; HEAP32[i39 + 4 >> 2] = 0; i40 = (__ZNK4wasm7LiteraleqERKS0_(i40, i1) | 0) & 1; HEAP32[i38 >> 2] = 1; HEAP32[i38 + 8 >> 2] = i40; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 24: { __ZNK4wasm7Literal13truncateToI32Ev(i8, i40); HEAP32[i38 >> 2] = HEAP32[i8 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i8 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i8 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i8 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 46: { __ZN4wasm7Literal9castToF64Ev(i9, i40); HEAP32[i38 >> 2] = HEAP32[i9 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i9 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i9 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i9 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 41: { i40 = i40 + 8 | 0; d3 = +((HEAP32[i40 >> 2] | 0) >>> 0) + 4294967296.0 * +((HEAP32[i40 + 4 >> 2] | 0) >>> 0); HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 42: { i40 = i40 + 8 | 0; d3 = +((HEAP32[i40 >> 2] | 0) >>> 0) + 4294967296.0 * +((HEAP32[i40 + 4 >> 2] | 0) >>> 0); HEAP32[i38 >> 2] = 4; HEAPF64[i38 + 8 >> 3] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 39: { i40 = i40 + 8 | 0; d3 = +((HEAP32[i40 >> 2] | 0) >>> 0) + 4294967296.0 * +(HEAP32[i40 + 4 >> 2] | 0); HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 40: { i40 = i40 + 8 | 0; d3 = +((HEAP32[i40 >> 2] | 0) >>> 0) + 4294967296.0 * +(HEAP32[i40 + 4 >> 2] | 0); HEAP32[i38 >> 2] = 4; HEAPF64[i38 + 8 >> 3] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } default: _abort(); } while (0); break; } case 3: { do switch (HEAP32[i14 + 8 >> 2] | 0) { case 6: { __ZNK4wasm7Literal3negEv(i10, i40); HEAP32[i38 >> 2] = HEAP32[i10 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i10 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 8: { __ZNK4wasm7Literal3absEv(i11, i40); HEAP32[i38 >> 2] = HEAP32[i11 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 10: { __ZNK4wasm7Literal4ceilEv(i12, i40); HEAP32[i38 >> 2] = HEAP32[i12 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i12 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 12: { __ZNK4wasm7Literal5floorEv(i13, i40); HEAP32[i38 >> 2] = HEAP32[i13 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i13 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i13 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i13 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 14: { __ZNK4wasm7Literal5truncEv(i15, i40); HEAP32[i38 >> 2] = HEAP32[i15 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i15 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i15 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i15 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 16: { __ZNK4wasm7Literal9nearbyintEv(i16, i40); HEAP32[i38 >> 2] = HEAP32[i16 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i16 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i16 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i16 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 18: { __ZNK4wasm7Literal4sqrtEv(i17, i40); HEAP32[i38 >> 2] = HEAP32[i17 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i17 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i17 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i17 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 26: case 25: { HEAP32[i1 >> 2] = HEAP32[i40 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i40 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i40 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i40 + 12 >> 2]; __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11truncSFloatEPNS_5UnaryES6_(i18, i2, i14, i1); HEAP32[i38 >> 2] = HEAP32[i18 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i18 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i18 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i18 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 28: case 27: { HEAP32[i1 >> 2] = HEAP32[i40 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i40 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i40 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i40 + 12 >> 2]; __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11truncUFloatEPNS_5UnaryES6_(i19, i2, i14, i1); HEAP32[i38 >> 2] = HEAP32[i19 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i19 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i19 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i19 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 33: { __ZN4wasm7Literal9castToI32Ev(i20, i40); HEAP32[i38 >> 2] = HEAP32[i20 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i20 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i20 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i20 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 43: { __ZNK4wasm7Literal11extendToF64Ev(i21, i40); HEAP32[i38 >> 2] = HEAP32[i21 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i21 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i21 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i21 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } default: _abort(); } while (0); break; } case 4: { do switch (HEAP32[i14 + 8 >> 2] | 0) { case 7: { __ZNK4wasm7Literal3negEv(i22, i40); HEAP32[i38 >> 2] = HEAP32[i22 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i22 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i22 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i22 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 9: { __ZNK4wasm7Literal3absEv(i23, i40); HEAP32[i38 >> 2] = HEAP32[i23 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i23 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i23 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i23 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 11: { __ZNK4wasm7Literal4ceilEv(i24, i40); HEAP32[i38 >> 2] = HEAP32[i24 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 13: { __ZNK4wasm7Literal5floorEv(i26, i40); HEAP32[i38 >> 2] = HEAP32[i26 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i26 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i26 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i26 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 15: { __ZNK4wasm7Literal5truncEv(i27, i40); HEAP32[i38 >> 2] = HEAP32[i27 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i27 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i27 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i27 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 17: { __ZNK4wasm7Literal9nearbyintEv(i28, i40); HEAP32[i38 >> 2] = HEAP32[i28 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i28 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i28 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i28 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 19: { __ZNK4wasm7Literal4sqrtEv(i29, i40); HEAP32[i38 >> 2] = HEAP32[i29 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i29 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i29 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i29 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 30: case 29: { HEAP32[i1 >> 2] = HEAP32[i40 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i40 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i40 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i40 + 12 >> 2]; __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11truncSFloatEPNS_5UnaryES6_(i30, i2, i14, i1); HEAP32[i38 >> 2] = HEAP32[i30 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i30 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i30 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i30 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 32: case 31: { HEAP32[i1 >> 2] = HEAP32[i40 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i40 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i40 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i40 + 12 >> 2]; __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11truncUFloatEPNS_5UnaryES6_(i31, i2, i14, i1); HEAP32[i38 >> 2] = HEAP32[i31 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i31 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i31 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i31 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 34: { __ZN4wasm7Literal9castToI64Ev(i32, i40); HEAP32[i38 >> 2] = HEAP32[i32 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i32 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i32 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i32 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 44: { d3 = +__ZN4wasm7Literal8getFloatEv(i40); HEAPF64[tempDoublePtr >> 3] = d3; i1 = HEAP32[tempDoublePtr >> 2] | 0; i2 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; if (i2 >>> 0 > 2146435072 | (i2 | 0) == 2146435072 & i1 >>> 0 > 0) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } if ((i1 | 0) == 0 & (i2 | 0) == 2146435072) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } i1 = __ZNK4wasm7Literal14reinterpreti64Ev(i40) | 0; i2 = tempRet0; i37 = _i64Add(i1 | 0, i2 | 0, 536870911, -1206910976) | 0; i36 = tempRet0; if (i36 >>> 0 < 0 | (i36 | 0) == 0 & i37 >>> 0 < 268435455) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = 3402823466385288598117041.0e14; HEAP32[i38 + 16 >> 2] = 0; break L3; } i37 = _i64Add(i1 | 0, i2 | 0, 536870911, 940572672) | 0; i36 = tempRet0; if (i36 >>> 0 < 0 | (i36 | 0) == 0 & i37 >>> 0 < 268435455) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = -3402823466385288598117041.0e14; HEAP32[i38 + 16 >> 2] = 0; break L3; } if (d3 < -3402823466385288598117041.0e14) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = -inf; HEAP32[i38 + 16 >> 2] = 0; break L3; } if (d3 > 3402823466385288598117041.0e14) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = inf; HEAP32[i38 + 16 >> 2] = 0; break L3; } else { __ZNK4wasm7Literal13truncateToF32Ev(i39, i40); HEAP32[i38 >> 2] = HEAP32[i39 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i39 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i39 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i39 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } } default: _abort(); } while (0); break; } default: _abort(); } while (0); } else { HEAP32[i38 >> 2] = HEAP32[i25 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i25 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i25 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = HEAP32[i25 + 16 >> 2]; HEAP32[i38 + 20 >> 2] = HEAP32[i25 + 20 >> 2]; } STACKTOP = i41; return; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE10visitUnaryEPNS_5UnaryE(i38, i2, i14) { i38 = i38 | 0; i2 = i2 | 0; i14 = i14 | 0; var i1 = 0, d3 = 0.0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i39 = 0, i40 = 0, i41 = 0; i41 = STACKTOP; STACKTOP = STACKTOP + 592 | 0; i1 = i41 + 568 | 0; i25 = i41 + 512 | 0; i40 = i41 + 480 | 0; i33 = i41 + 552 | 0; i34 = i41 + 536 | 0; i35 = i41 + 496 | 0; i36 = i41 + 464 | 0; i37 = i41 + 448 | 0; i4 = i41 + 432 | 0; i5 = i41 + 416 | 0; i6 = i41 + 400 | 0; i7 = i41 + 384 | 0; i8 = i41 + 368 | 0; i9 = i41 + 352 | 0; i10 = i41 + 336 | 0; i11 = i41 + 320 | 0; i12 = i41 + 304 | 0; i13 = i41 + 288 | 0; i15 = i41 + 272 | 0; i16 = i41 + 256 | 0; i17 = i41 + 240 | 0; i18 = i41 + 224 | 0; i19 = i41 + 208 | 0; i20 = i41 + 192 | 0; i21 = i41 + 176 | 0; i22 = i41 + 160 | 0; i23 = i41 + 144 | 0; i24 = i41 + 128 | 0; i26 = i41 + 112 | 0; i27 = i41 + 96 | 0; i28 = i41 + 80 | 0; i29 = i41 + 64 | 0; i30 = i41 + 48 | 0; i31 = i41 + 32 | 0; i32 = i41 + 16 | 0; i39 = i41; __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i25, i2, HEAP32[i14 + 12 >> 2] | 0); if (!(HEAP32[i25 + 16 >> 2] | 0)) { HEAP32[i40 >> 2] = HEAP32[i25 >> 2]; HEAP32[i40 + 4 >> 2] = HEAP32[i25 + 4 >> 2]; HEAP32[i40 + 8 >> 2] = HEAP32[i25 + 8 >> 2]; HEAP32[i40 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; L3 : do switch (HEAP32[i40 >> 2] | 0) { case 1: { do switch (HEAP32[i14 + 8 >> 2] | 0) { case 0: { __ZNK4wasm7Literal18countLeadingZeroesEv(i33, i40); HEAP32[i38 >> 2] = HEAP32[i33 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i33 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i33 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i33 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 2: { __ZNK4wasm7Literal19countTrailingZeroesEv(i34, i40); HEAP32[i38 >> 2] = HEAP32[i34 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i34 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i34 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i34 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 4: { __ZNK4wasm7Literal8popCountEv(i35, i40); HEAP32[i38 >> 2] = HEAP32[i35 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i35 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i35 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i35 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 20: { HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = 0; i40 = (__ZNK4wasm7LiteraleqERKS0_(i40, i1) | 0) & 1; HEAP32[i38 >> 2] = 1; HEAP32[i38 + 8 >> 2] = i40; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 45: { __ZN4wasm7Literal9castToF32Ev(i36, i40); HEAP32[i38 >> 2] = HEAP32[i36 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i36 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i36 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i36 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 22: { __ZNK4wasm7Literal12extendToSI64Ev(i37, i40); HEAP32[i38 >> 2] = HEAP32[i37 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i37 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i37 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i37 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 23: { __ZNK4wasm7Literal12extendToUI64Ev(i4, i40); HEAP32[i38 >> 2] = HEAP32[i4 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i4 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i4 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i4 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 37: { d3 = +((HEAP32[i40 + 8 >> 2] | 0) >>> 0); HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 38: { d3 = +((HEAP32[i40 + 8 >> 2] | 0) >>> 0); HEAP32[i38 >> 2] = 4; HEAPF64[i38 + 8 >> 3] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 35: { d3 = +(HEAP32[i40 + 8 >> 2] | 0); HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 36: { d3 = +(HEAP32[i40 + 8 >> 2] | 0); HEAP32[i38 >> 2] = 4; HEAPF64[i38 + 8 >> 3] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } default: _abort(); } while (0); break; } case 2: { do switch (HEAP32[i14 + 8 >> 2] | 0) { case 1: { __ZNK4wasm7Literal18countLeadingZeroesEv(i5, i40); HEAP32[i38 >> 2] = HEAP32[i5 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 3: { __ZNK4wasm7Literal19countTrailingZeroesEv(i6, i40); HEAP32[i38 >> 2] = HEAP32[i6 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 5: { __ZNK4wasm7Literal8popCountEv(i7, i40); HEAP32[i38 >> 2] = HEAP32[i7 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i7 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 21: { HEAP32[i1 >> 2] = 2; i39 = i1 + 8 | 0; HEAP32[i39 >> 2] = 0; HEAP32[i39 + 4 >> 2] = 0; i40 = (__ZNK4wasm7LiteraleqERKS0_(i40, i1) | 0) & 1; HEAP32[i38 >> 2] = 1; HEAP32[i38 + 8 >> 2] = i40; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 24: { __ZNK4wasm7Literal13truncateToI32Ev(i8, i40); HEAP32[i38 >> 2] = HEAP32[i8 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i8 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i8 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i8 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 46: { __ZN4wasm7Literal9castToF64Ev(i9, i40); HEAP32[i38 >> 2] = HEAP32[i9 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i9 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i9 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i9 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 41: { i40 = i40 + 8 | 0; d3 = +((HEAP32[i40 >> 2] | 0) >>> 0) + 4294967296.0 * +((HEAP32[i40 + 4 >> 2] | 0) >>> 0); HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 42: { i40 = i40 + 8 | 0; d3 = +((HEAP32[i40 >> 2] | 0) >>> 0) + 4294967296.0 * +((HEAP32[i40 + 4 >> 2] | 0) >>> 0); HEAP32[i38 >> 2] = 4; HEAPF64[i38 + 8 >> 3] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 39: { i40 = i40 + 8 | 0; d3 = +((HEAP32[i40 >> 2] | 0) >>> 0) + 4294967296.0 * +(HEAP32[i40 + 4 >> 2] | 0); HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 40: { i40 = i40 + 8 | 0; d3 = +((HEAP32[i40 >> 2] | 0) >>> 0) + 4294967296.0 * +(HEAP32[i40 + 4 >> 2] | 0); HEAP32[i38 >> 2] = 4; HEAPF64[i38 + 8 >> 3] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } default: _abort(); } while (0); break; } case 3: { do switch (HEAP32[i14 + 8 >> 2] | 0) { case 6: { __ZNK4wasm7Literal3negEv(i10, i40); HEAP32[i38 >> 2] = HEAP32[i10 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i10 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 8: { __ZNK4wasm7Literal3absEv(i11, i40); HEAP32[i38 >> 2] = HEAP32[i11 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 10: { __ZNK4wasm7Literal4ceilEv(i12, i40); HEAP32[i38 >> 2] = HEAP32[i12 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i12 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 12: { __ZNK4wasm7Literal5floorEv(i13, i40); HEAP32[i38 >> 2] = HEAP32[i13 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i13 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i13 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i13 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 14: { __ZNK4wasm7Literal5truncEv(i15, i40); HEAP32[i38 >> 2] = HEAP32[i15 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i15 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i15 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i15 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 16: { __ZNK4wasm7Literal9nearbyintEv(i16, i40); HEAP32[i38 >> 2] = HEAP32[i16 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i16 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i16 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i16 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 18: { __ZNK4wasm7Literal4sqrtEv(i17, i40); HEAP32[i38 >> 2] = HEAP32[i17 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i17 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i17 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i17 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 26: case 25: { HEAP32[i1 >> 2] = HEAP32[i40 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i40 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i40 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i40 + 12 >> 2]; __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11truncSFloatEPNS_5UnaryENS_7LiteralE(i18, i2, i14, i1); HEAP32[i38 >> 2] = HEAP32[i18 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i18 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i18 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i18 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 28: case 27: { HEAP32[i1 >> 2] = HEAP32[i40 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i40 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i40 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i40 + 12 >> 2]; __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11truncUFloatEPNS_5UnaryENS_7LiteralE(i19, i2, i14, i1); HEAP32[i38 >> 2] = HEAP32[i19 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i19 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i19 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i19 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 33: { __ZN4wasm7Literal9castToI32Ev(i20, i40); HEAP32[i38 >> 2] = HEAP32[i20 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i20 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i20 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i20 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 43: { __ZNK4wasm7Literal11extendToF64Ev(i21, i40); HEAP32[i38 >> 2] = HEAP32[i21 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i21 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i21 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i21 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } default: _abort(); } while (0); break; } case 4: { do switch (HEAP32[i14 + 8 >> 2] | 0) { case 7: { __ZNK4wasm7Literal3negEv(i22, i40); HEAP32[i38 >> 2] = HEAP32[i22 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i22 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i22 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i22 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 9: { __ZNK4wasm7Literal3absEv(i23, i40); HEAP32[i38 >> 2] = HEAP32[i23 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i23 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i23 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i23 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 11: { __ZNK4wasm7Literal4ceilEv(i24, i40); HEAP32[i38 >> 2] = HEAP32[i24 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i24 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i24 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i24 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 13: { __ZNK4wasm7Literal5floorEv(i26, i40); HEAP32[i38 >> 2] = HEAP32[i26 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i26 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i26 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i26 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 15: { __ZNK4wasm7Literal5truncEv(i27, i40); HEAP32[i38 >> 2] = HEAP32[i27 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i27 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i27 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i27 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 17: { __ZNK4wasm7Literal9nearbyintEv(i28, i40); HEAP32[i38 >> 2] = HEAP32[i28 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i28 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i28 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i28 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 19: { __ZNK4wasm7Literal4sqrtEv(i29, i40); HEAP32[i38 >> 2] = HEAP32[i29 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i29 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i29 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i29 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 30: case 29: { HEAP32[i1 >> 2] = HEAP32[i40 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i40 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i40 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i40 + 12 >> 2]; __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11truncSFloatEPNS_5UnaryENS_7LiteralE(i30, i2, i14, i1); HEAP32[i38 >> 2] = HEAP32[i30 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i30 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i30 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i30 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 32: case 31: { HEAP32[i1 >> 2] = HEAP32[i40 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i40 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i40 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i40 + 12 >> 2]; __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11truncUFloatEPNS_5UnaryENS_7LiteralE(i31, i2, i14, i1); HEAP32[i38 >> 2] = HEAP32[i31 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i31 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i31 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i31 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 34: { __ZN4wasm7Literal9castToI64Ev(i32, i40); HEAP32[i38 >> 2] = HEAP32[i32 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i32 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i32 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i32 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } case 44: { d3 = +__ZN4wasm7Literal8getFloatEv(i40); HEAPF64[tempDoublePtr >> 3] = d3; i1 = HEAP32[tempDoublePtr >> 2] | 0; i2 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; if (i2 >>> 0 > 2146435072 | (i2 | 0) == 2146435072 & i1 >>> 0 > 0) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } if ((i1 | 0) == 0 & (i2 | 0) == 2146435072) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = d3; HEAP32[i38 + 16 >> 2] = 0; break L3; } i1 = __ZNK4wasm7Literal14reinterpreti64Ev(i40) | 0; i2 = tempRet0; i37 = _i64Add(i1 | 0, i2 | 0, 536870911, -1206910976) | 0; i36 = tempRet0; if (i36 >>> 0 < 0 | (i36 | 0) == 0 & i37 >>> 0 < 268435455) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = 3402823466385288598117041.0e14; HEAP32[i38 + 16 >> 2] = 0; break L3; } i37 = _i64Add(i1 | 0, i2 | 0, 536870911, 940572672) | 0; i36 = tempRet0; if (i36 >>> 0 < 0 | (i36 | 0) == 0 & i37 >>> 0 < 268435455) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = -3402823466385288598117041.0e14; HEAP32[i38 + 16 >> 2] = 0; break L3; } if (d3 < -3402823466385288598117041.0e14) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = -inf; HEAP32[i38 + 16 >> 2] = 0; break L3; } if (d3 > 3402823466385288598117041.0e14) { HEAP32[i38 >> 2] = 3; HEAPF32[i38 + 8 >> 2] = inf; HEAP32[i38 + 16 >> 2] = 0; break L3; } else { __ZNK4wasm7Literal13truncateToF32Ev(i39, i40); HEAP32[i38 >> 2] = HEAP32[i39 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i39 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i39 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i39 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = 0; break L3; } } default: _abort(); } while (0); break; } default: _abort(); } while (0); } else { HEAP32[i38 >> 2] = HEAP32[i25 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i25 + 4 >> 2]; HEAP32[i38 + 8 >> 2] = HEAP32[i25 + 8 >> 2]; HEAP32[i38 + 12 >> 2] = HEAP32[i25 + 12 >> 2]; HEAP32[i38 + 16 >> 2] = HEAP32[i25 + 16 >> 2]; HEAP32[i38 + 20 >> 2] = HEAP32[i25 + 20 >> 2]; } STACKTOP = i41; return; } function __ZNSt3__212__next_primeEj(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i10; i8 = i10 + 8 | 0; i3 = i10 + 4 | 0; HEAP32[i8 >> 2] = i1; do if (i1 >>> 0 >= 212) { i7 = (i1 >>> 0) / 210 | 0; i5 = i7 * 210 | 0; HEAP32[i3 >> 2] = i1 - i5; i4 = (__ZNSt3__213__lower_boundIRNS_6__lessIjjEEPKjjEET0_S6_S6_RKT1_T_(7208, 7400, i3, i2) | 0) - 7208 >> 2; i1 = 0; i6 = i4; i5 = (HEAP32[7208 + (i4 << 2) >> 2] | 0) + i5 | 0; L4 : while (1) { i2 = 5; while (1) { if (i2 >>> 0 >= 47) { i4 = 211; i9 = 8; break; } i3 = HEAP32[7016 + (i2 << 2) >> 2] | 0; i4 = (i5 >>> 0) / (i3 >>> 0) | 0; if (i4 >>> 0 < i3 >>> 0) { i9 = 107; break L4; } if ((i5 | 0) == (Math_imul(i4, i3) | 0)) break; else i2 = i2 + 1 | 0; } L10 : do if ((i9 | 0) == 8) { L11 : while (1) { i9 = 0; i2 = (i5 >>> 0) / (i4 >>> 0) | 0; do if (i2 >>> 0 >= i4 >>> 0) if ((i5 | 0) != (Math_imul(i2, i4) | 0)) { i2 = i4 + 10 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 >= i2 >>> 0) if ((i5 | 0) != (Math_imul(i3, i2) | 0)) { i2 = i4 + 12 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 >= i2 >>> 0) if ((i5 | 0) != (Math_imul(i3, i2) | 0)) { i2 = i4 + 16 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 >= i2 >>> 0) if ((i5 | 0) != (Math_imul(i3, i2) | 0)) { i2 = i4 + 18 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 >= i2 >>> 0) if ((i5 | 0) != (Math_imul(i3, i2) | 0)) { i2 = i4 + 22 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 >= i2 >>> 0) if ((i5 | 0) != (Math_imul(i3, i2) | 0)) { i2 = i4 + 28 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 >= i2 >>> 0) if ((i5 | 0) == (Math_imul(i3, i2) | 0)) i3 = 9; else { i2 = i4 + 30 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 36 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 40 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 42 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 46 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 52 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 58 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 60 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 66 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 70 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 72 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 78 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 82 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 88 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 96 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 100 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 102 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 106 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 108 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 112 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 120 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 126 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 130 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 136 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 138 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 142 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 148 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 150 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 156 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 162 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 166 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 168 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 172 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 178 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 180 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 186 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 190 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 192 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 196 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 198 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } if ((i5 | 0) == (Math_imul(i3, i2) | 0)) { i3 = 9; break; } i2 = i4 + 208 | 0; i3 = (i5 >>> 0) / (i2 >>> 0) | 0; if (i3 >>> 0 < i2 >>> 0) { i3 = 1; i1 = i5; break; } i3 = (i5 | 0) == (Math_imul(i3, i2) | 0); i2 = i3 ? i2 : i4 + 210 | 0; i3 = i3 ? 9 : 0; } else { i3 = 1; i1 = i5; } } else i3 = 9; else { i3 = 1; i1 = i5; } } else i3 = 9; else { i3 = 1; i1 = i5; } } else i3 = 9; else { i3 = 1; i1 = i5; } } else i3 = 9; else { i3 = 1; i1 = i5; } } else i3 = 9; else { i3 = 1; i1 = i5; } } else { i2 = i4; i3 = 9; } else { i2 = i4; i3 = 1; i1 = i5; } while (0); switch (i3 & 15) { case 9: break L10; case 0: { i4 = i2; i9 = 8; break; } default: break L11; } } if (i3) { i9 = 108; break L4; } } while (0); i4 = i6 + 1 | 0; i3 = (i4 | 0) == 48; i5 = (i3 & 1) + i7 | 0; i4 = i3 ? 0 : i4; i6 = i4; i7 = i5; i5 = (HEAP32[7208 + (i4 << 2) >> 2] | 0) + (i5 * 210 | 0) | 0; } if ((i9 | 0) == 107) { HEAP32[i8 >> 2] = i5; i1 = i5; break; } else if ((i9 | 0) == 108) { HEAP32[i8 >> 2] = i5; break; } } else { i1 = __ZNSt3__213__lower_boundIRNS_6__lessIjjEEPKjjEET0_S6_S6_RKT1_T_(7016, 7208, i8, i2) | 0; i1 = HEAP32[i1 >> 2] | 0; } while (0); STACKTOP = i10; return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i39, i15, i12, i14) { i39 = i39 | 0; i15 = i15 | 0; i12 = i12 | 0; i14 = i14 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i40 = 0, i41 = 0; i41 = STACKTOP; STACKTOP = STACKTOP + 112 | 0; i38 = i41 + 24 | 0; i18 = i41 + 8 | 0; i17 = i41 + 96 | 0; i7 = i41 + 104 | 0; i8 = i41 + 100 | 0; i10 = i41; i35 = i41 + 36 | 0; i36 = i41 + 92 | 0; i37 = i41 + 88 | 0; i19 = i41 + 84 | 0; i20 = i41 + 80 | 0; i21 = i41 + 76 | 0; i22 = i41 + 72 | 0; i23 = i41 + 68 | 0; i24 = i41 + 64 | 0; i25 = i41 + 60 | 0; i26 = i41 + 56 | 0; i28 = i41 + 52 | 0; i29 = i41 + 48 | 0; i30 = i41 + 44 | 0; i31 = i41 + 40 | 0; i32 = i41 + 32 | 0; i13 = i39 + 4 | 0; i11 = HEAP32[i13 >> 2] | 0; i16 = i11 + -12 | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i12); i4 = HEAP32[i12 >> 2] | 0; i2 = HEAP8[i4 >> 0] | 0; L1 : do if (i2 << 24 >> 24) { i1 = i14; while (1) { i3 = HEAP8[i1 >> 0] | 0; if (!(i3 << 24 >> 24)) break; if (i3 << 24 >> 24 == i2 << 24 >> 24) { i40 = 4; break L1; } else i1 = i1 + 1 | 0; } i3 = i11 + -8 | 0; i1 = HEAP32[i3 >> 2] | 0; i9 = (i1 | 0) == (HEAP32[i16 >> 2] | 0); do if (!(HEAP8[i15 >> 0] | 0)) if ((i1 | 0) == (HEAP32[i11 + -4 >> 2] | 0)) { __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIRKS6_EEvOT_(i16, i15); break; } else { i11 = i15; i15 = HEAP32[i11 + 4 >> 2] | 0; i16 = i1; HEAP32[i16 >> 2] = HEAP32[i11 >> 2]; HEAP32[i16 + 4 >> 2] = i15; HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 8; break; } else { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i18, i4); if ((HEAP32[i18 + 12 >> 2] | 0) != 1) { i1 = HEAP32[i12 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 40: { i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i15) | 0; HEAP32[i7 >> 2] = i6; HEAP32[i38 >> 2] = HEAP32[i7 >> 2]; i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(i39, i38, i12) | 0; i5 = i15; HEAP32[i5 >> 2] = 1; HEAP32[i5 + 4 >> 2] = i6; i5 = 1; break; } case 91: { i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i15) | 0; HEAP32[i8 >> 2] = i6; HEAP32[i38 >> 2] = HEAP32[i8 >> 2]; i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseIndexingES1_RPc(i39, i38, i12) | 0; i5 = i15; HEAP32[i5 >> 2] = 1; HEAP32[i5 + 4 >> 2] = i6; i5 = 1; break; } default: { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(29354, i1); _abort(); } } i1 = i10; HEAP32[i1 >> 2] = i5; HEAP32[i1 + 4 >> 2] = i6; HEAP32[i38 >> 2] = HEAP32[i10 >> 2]; HEAP32[i38 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i39, i38, i12, i14) | 0; break L1; } i1 = HEAP32[i3 >> 2] | 0; i2 = i11 + -4 | 0; if ((i1 | 0) == (HEAP32[i2 >> 2] | 0)) __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIRKS6_EEvOT_(i16, i15); else { i10 = i15; i11 = HEAP32[i10 + 4 >> 2] | 0; i15 = i1; HEAP32[i15 >> 2] = HEAP32[i10 >> 2]; HEAP32[i15 + 4 >> 2] = i11; HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 8; } HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + (HEAP32[i18 + 8 >> 2] | 0); i1 = HEAP32[i18 >> 2] | 0; HEAP8[i38 >> 0] = 0; HEAP32[i38 + 4 >> 2] = i1; i1 = HEAP32[i3 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i2 >> 2] | 0) >>> 0) { i11 = i38; i15 = HEAP32[i11 + 4 >> 2] | 0; i16 = i1; HEAP32[i16 >> 2] = HEAP32[i11 >> 2]; HEAP32[i16 + 4 >> 2] = i15; HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 8; } else __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i16, i38); } while (0); i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i39, i12, i14) | 0; if (i9) { i12 = HEAP32[i13 >> 2] | 0; i11 = i12 + -12 | 0; i10 = HEAP32[11354] | 0; i12 = i12 + -8 | 0; i9 = HEAP32[11353] | 0; L30 : while (1) { if ((i9 | 0) == (i10 | 0)) break; L33 : do if (!(HEAP8[i9 + 32 >> 0] | 0)) { i8 = i9 + 36 | 0; i1 = 0; while (1) { i16 = HEAP32[i11 >> 2] | 0; i2 = i16; if ((i1 | 0) >= ((HEAP32[i12 >> 2] | 0) - i16 >> 3 | 0)) break L33; if (!(HEAP8[i2 + (i1 << 3) >> 0] | 0)) { i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i2 + (i1 << 3) | 0) | 0; HEAP32[i35 >> 2] = i16; L40 : do if (__ZNKSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(i9, i35) | 0) { i2 = HEAP32[i8 >> 2] | 0; i3 = (i1 | 0) > 0; if (i3 & (i2 | 0) == 0 ? (i16 = HEAP32[i11 >> 2] | 0, i33 = i16, (i1 | 0) < (((HEAP32[i12 >> 2] | 0) - i16 >> 3) + -1 | 0)) : 0) { i7 = i1 + -1 | 0; i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i33 + (i7 << 3) | 0) | 0; HEAP32[i28 >> 2] = i2; HEAP32[i29 >> 2] = HEAP32[i35 >> 2]; i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i11 >> 2] | 0) + (i1 + 1 << 3) | 0) | 0; HEAP32[i30 >> 2] = i2; HEAP32[i17 >> 2] = HEAP32[i28 >> 2]; HEAP32[i18 >> 2] = HEAP32[i29 >> 2]; HEAP32[i38 >> 2] = HEAP32[i30 >> 2]; i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i39, i17, i18, i38) | 0; i5 = i33 + (i1 << 3) | 0; HEAP32[i5 >> 2] = 1; HEAP32[i5 + 4 >> 2] = i2; i5 = (HEAP32[i11 >> 2] | 0) + (i1 << 3) + 8 | 0; i2 = i5 + 8 | 0; i4 = HEAP32[i12 >> 2] | 0; i3 = i4 - i2 | 0; i6 = i3 >> 3; if (!i6) i2 = i4; else { _memmove(i5 | 0, i2 | 0, i3 | 0) | 0; i4 = HEAP32[i12 >> 2] | 0; i2 = i4; } i3 = i5 + (i6 << 3) | 0; i5 = i4; while (1) { if ((i2 | 0) == (i3 | 0)) break; i5 = i2 + -8 | 0; HEAP32[i12 >> 2] = i5; i2 = i5; } i3 = (HEAP32[i11 >> 2] | 0) + (i1 << 3) + -8 | 0; i1 = i3 + 8 | 0; i2 = i5 - i1 | 0; i4 = i2 >> 3; if (!i4) i1 = i5; else { _memmove(i3 | 0, i1 | 0, i2 | 0) | 0; i1 = HEAP32[i12 >> 2] | 0; } i2 = i3 + (i4 << 3) | 0; while (1) { if ((i1 | 0) == (i2 | 0)) { i1 = i7; break L40; } i16 = i1 + -8 | 0; HEAP32[i12 >> 2] = i16; i1 = i16; } } if ((i2 | 0) == 1 ? (i16 = HEAP32[i11 >> 2] | 0, i34 = i16, (i1 | 0) < (((HEAP32[i12 >> 2] | 0) - i16 >> 3) + -1 | 0)) : 0) { if (i3 ? HEAP8[i34 + (i1 + -1 << 3) >> 0] | 0 : 0) break; HEAP32[i31 >> 2] = HEAP32[i35 >> 2]; i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i11 >> 2] | 0) + (i1 + 1 << 3) | 0) | 0; HEAP32[i32 >> 2] = i3; HEAP32[i18 >> 2] = HEAP32[i31 >> 2]; HEAP32[i38 >> 2] = HEAP32[i32 >> 2]; i3 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i18, i38) | 0; i5 = i34 + (i1 << 3) | 0; HEAP32[i5 >> 2] = 1; HEAP32[i5 + 4 >> 2] = i3; i5 = (HEAP32[i11 >> 2] | 0) + (i1 << 3) + 8 | 0; i3 = i5 + 8 | 0; i2 = HEAP32[i12 >> 2] | 0; i4 = i2 - i3 | 0; i6 = i4 >> 3; if (i6) { _memmove(i5 | 0, i3 | 0, i4 | 0) | 0; i2 = HEAP32[i12 >> 2] | 0; } i3 = i5 + (i6 << 3) | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i16 = i2 + -8 | 0; HEAP32[i12 >> 2] = i16; i2 = i16; } i1 = i1 + -2 | 0; i1 = (i1 | 0) < 0 ? 0 : i1; } } while (0); } i1 = i1 + 1 | 0; } } else { i7 = i9 + 36 | 0; i4 = (HEAP32[i12 >> 2] | 0) - (HEAP32[i11 >> 2] | 0) >> 3; while (1) { i1 = i4 + -1 | 0; if ((i1 | 0) <= -1) break L33; i2 = HEAP32[i11 >> 2] | 0; if (HEAP8[i2 + (i1 << 3) >> 0] | 0) { i4 = i1; continue; } i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i2 + (i1 << 3) | 0) | 0; HEAP32[i35 >> 2] = i16; L78 : do if (__ZNKSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(i9, i35) | 0) { i2 = HEAP32[i7 >> 2] | 0; i3 = (i1 | 0) > 0; if (i3 & (i2 | 0) == 0 ? (i16 = HEAP32[i11 >> 2] | 0, i27 = i16, (i1 | 0) < (((HEAP32[i12 >> 2] | 0) - i16 >> 3) + -1 | 0)) : 0) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i27 + (i4 + -2 << 3) | 0) | 0; HEAP32[i36 >> 2] = i2; HEAP32[i37 >> 2] = HEAP32[i35 >> 2]; i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i11 >> 2] | 0) + (i4 << 3) | 0) | 0; HEAP32[i19 >> 2] = i2; HEAP32[i17 >> 2] = HEAP32[i36 >> 2]; HEAP32[i18 >> 2] = HEAP32[i37 >> 2]; HEAP32[i38 >> 2] = HEAP32[i19 >> 2]; i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i39, i17, i18, i38) | 0; i5 = i27 + (i1 << 3) | 0; HEAP32[i5 >> 2] = 1; HEAP32[i5 + 4 >> 2] = i2; i5 = (HEAP32[i11 >> 2] | 0) + (i1 << 3) + 8 | 0; i2 = i5 + 8 | 0; i4 = HEAP32[i12 >> 2] | 0; i3 = i4 - i2 | 0; i6 = i3 >> 3; if (!i6) { i3 = i4; i2 = i4; } else { _memmove(i5 | 0, i2 | 0, i3 | 0) | 0; i2 = HEAP32[i12 >> 2] | 0; i3 = i2; } i4 = i5 + (i6 << 3) | 0; while (1) { if ((i3 | 0) == (i4 | 0)) break; i2 = i3 + -8 | 0; HEAP32[i12 >> 2] = i2; i3 = i2; } i5 = (HEAP32[i11 >> 2] | 0) + (i1 << 3) + -8 | 0; i3 = i5 + 8 | 0; i4 = i2 - i3 | 0; i6 = i4 >> 3; if (i6) { _memmove(i5 | 0, i3 | 0, i4 | 0) | 0; i2 = HEAP32[i12 >> 2] | 0; } i3 = i5 + (i6 << 3) | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break L78; i16 = i2 + -8 | 0; HEAP32[i12 >> 2] = i16; i2 = i16; } } switch (i2 | 0) { case 1: break; case 3: { if ((HEAP32[i35 >> 2] | 0) != (HEAP32[11335] | 0)) break L78; i2 = HEAP32[i11 >> 2] | 0; if (!((i1 | 0) > 2 ? (i1 | 0) < (((HEAP32[i12 >> 2] | 0) - i2 >> 3) + -1 | 0) : 0)) { i40 = 59; break L30; } if ((__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i2 + (i4 + -3 << 3) | 0) | 0) != (HEAP32[11334] | 0)) break L78; i16 = (HEAP32[i11 >> 2] | 0) + (i4 + -4 << 3) | 0; i15 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i16) | 0; HEAP32[i22 >> 2] = i15; i15 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i11 >> 2] | 0) + (i4 + -2 << 3) | 0) | 0; HEAP32[i23 >> 2] = i15; i15 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i11 >> 2] | 0) + (i4 << 3) | 0) | 0; HEAP32[i24 >> 2] = i15; HEAP32[i17 >> 2] = HEAP32[i22 >> 2]; HEAP32[i18 >> 2] = HEAP32[i23 >> 2]; HEAP32[i38 >> 2] = HEAP32[i24 >> 2]; i15 = __ZN6cashew12ValueBuilder15makeConditionalENS_3RefES1_S1_(i17, i18, i38) | 0; HEAP32[i16 >> 2] = 1; HEAP32[i16 + 4 >> 2] = i15; i1 = (HEAP32[i11 >> 2] | 0) + (i1 << 3) | 0; HEAP32[i25 >> 2] = i1 + -16; HEAP32[i26 >> 2] = i1 + 16; HEAP32[i18 >> 2] = HEAP32[i25 >> 2]; HEAP32[i38 >> 2] = HEAP32[i26 >> 2]; __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE5eraseENS_11__wrap_iterIPKS6_EESD_(i11, i18, i38) | 0; i1 = (HEAP32[i12 >> 2] | 0) - (HEAP32[i11 >> 2] | 0) >> 3; break L78; } default: break L78; } i16 = HEAP32[i11 >> 2] | 0; i2 = i16; if ((i1 | 0) < (((HEAP32[i12 >> 2] | 0) - i16 >> 3) + -1 | 0)) { if (i3 ? HEAP8[i2 + (i4 + -2 << 3) >> 0] | 0 : 0) break; HEAP32[i20 >> 2] = HEAP32[i35 >> 2]; i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv((HEAP32[i11 >> 2] | 0) + (i4 << 3) | 0) | 0; HEAP32[i21 >> 2] = i3; HEAP32[i18 >> 2] = HEAP32[i20 >> 2]; HEAP32[i38 >> 2] = HEAP32[i21 >> 2]; i3 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i18, i38) | 0; i5 = i2 + (i1 << 3) | 0; HEAP32[i5 >> 2] = 1; HEAP32[i5 + 4 >> 2] = i3; i5 = (HEAP32[i11 >> 2] | 0) + (i1 << 3) + 8 | 0; i3 = i5 + 8 | 0; i2 = HEAP32[i12 >> 2] | 0; i4 = i2 - i3 | 0; i6 = i4 >> 3; if (i6) { _memmove(i5 | 0, i3 | 0, i4 | 0) | 0; i2 = HEAP32[i12 >> 2] | 0; } i3 = i5 + (i6 << 3) | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break L78; i16 = i2 + -8 | 0; HEAP32[i12 >> 2] = i16; i2 = i16; } } } while (0); i4 = i1; } } while (0); i9 = i9 + 40 | 0; } if ((i40 | 0) == 59) ___assert_fail(29380, 28546, 797, 29414); i1 = HEAP32[i11 >> 2] | 0; if (((HEAP32[i12 >> 2] | 0) - i1 | 0) != 8) ___assert_fail(29430, 28546, 824, 29414); i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i1) | 0; i2 = HEAP32[i11 >> 2] | 0; i3 = HEAP32[i12 >> 2] | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break L1; i39 = i3 + -8 | 0; HEAP32[i12 >> 2] = i39; i3 = i39; } } } else i40 = 4; while (0); if ((i40 | 0) == 4) { i1 = i11 + -8 | 0; i2 = HEAP32[i1 >> 2] | 0; do if ((i2 | 0) != (HEAP32[i16 >> 2] | 0)) if ((i2 | 0) == (HEAP32[i11 + -4 >> 2] | 0)) { __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIRKS6_EEvOT_(i16, i15); break; } else { i38 = i15; i39 = HEAP32[i38 + 4 >> 2] | 0; i40 = i2; HEAP32[i40 >> 2] = HEAP32[i38 >> 2]; HEAP32[i40 + 4 >> 2] = i39; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 8; break; } while (0); i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i15) | 0; } STACKTOP = i41; return i1 | 0; } function _vfscanf(i34, i1, i23) { i34 = i34 | 0; i1 = i1 | 0; i23 = i23 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, d7 = 0.0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i35 = 0, i36 = 0; i36 = STACKTOP; STACKTOP = STACKTOP + 304 | 0; i28 = i36 + 16 | 0; i29 = i36 + 8 | 0; i30 = i36 + 33 | 0; i31 = i36; i32 = i36 + 32 | 0; if ((HEAP32[i34 + 76 >> 2] | 0) > -1) i35 = ___lockfile(i34) | 0; else i35 = 0; i4 = HEAP8[i1 >> 0] | 0; L4 : do if (i4 << 24 >> 24) { i17 = i34 + 4 | 0; i18 = i34 + 100 | 0; i19 = i34 + 108 | 0; i20 = i34 + 8 | 0; i21 = i30 + 10 | 0; i22 = i30 + 33 | 0; i16 = i29 + 4 | 0; i24 = i30 + 46 | 0; i25 = i30 + 94 | 0; i26 = i30 + 1 | 0; i27 = i30 + 1 | 0; i8 = i1; i13 = 0; i1 = 0; i3 = 0; i2 = 0; L6 : while (1) { L8 : do if (!(_isspace(i4 & 255) | 0)) { i4 = i4 << 24 >> 24 == 37; L10 : do if (i4) { i5 = i8 + 1 | 0; i6 = HEAP8[i5 >> 0] | 0; L12 : do switch (i6 << 24 >> 24) { case 37: break L10; case 42: { i15 = 0; i5 = i8 + 2 | 0; break; } default: { i4 = (i6 & 255) + -48 | 0; if (i4 >>> 0 < 10 ? (HEAP8[i8 + 2 >> 0] | 0) == 36 : 0) { HEAP32[i28 >> 2] = HEAP32[i23 >> 2]; while (1) { i15 = (HEAP32[i28 >> 2] | 0) + (4 - 1) & ~(4 - 1); i5 = HEAP32[i15 >> 2] | 0; HEAP32[i28 >> 2] = i15 + 4; if (i4 >>> 0 > 1) i4 = i4 + -1 | 0; else break; } i15 = i5; i5 = i8 + 3 | 0; break L12; } i14 = (HEAP32[i23 >> 2] | 0) + (4 - 1) & ~(4 - 1); i15 = HEAP32[i14 >> 2] | 0; HEAP32[i23 >> 2] = i14 + 4; } } while (0); i8 = HEAP8[i5 >> 0] | 0; i4 = i8 & 255; if ((i4 + -48 | 0) >>> 0 < 10) { i6 = 0; do { i6 = (i6 * 10 | 0) + -48 + i4 | 0; i5 = i5 + 1 | 0; i8 = HEAP8[i5 >> 0] | 0; i4 = i8 & 255; } while ((i4 + -48 | 0) >>> 0 < 10); } else i6 = 0; if (i8 << 24 >> 24 == 109) { i8 = i5 + 1 | 0; i4 = (i15 | 0) != 0 & 1; i3 = 0; i2 = 0; i5 = i8; i8 = HEAP8[i8 >> 0] | 0; } else i4 = 0; i9 = i5 + 1 | 0; switch (i8 << 24 >> 24) { case 104: { i14 = (HEAP8[i9 >> 0] | 0) == 104; i8 = i14 ? -2 : -1; i5 = i14 ? i5 + 2 | 0 : i9; break; } case 108: { i14 = (HEAP8[i9 >> 0] | 0) == 108; i8 = i14 ? 3 : 1; i5 = i14 ? i5 + 2 | 0 : i9; break; } case 106: { i8 = 3; i5 = i9; break; } case 116: case 122: { i8 = 1; i5 = i9; break; } case 76: { i8 = 2; i5 = i9; break; } case 110: case 112: case 67: case 83: case 91: case 99: case 115: case 88: case 71: case 70: case 69: case 65: case 103: case 102: case 101: case 97: case 120: case 117: case 111: case 105: case 100: { i8 = 0; break; } default: { i33 = 154; break L6; } } i11 = HEAPU8[i5 >> 0] | 0; i12 = (i11 & 47 | 0) == 3; i11 = i12 ? i11 | 32 : i11; i12 = i12 ? 1 : i8; i10 = i11 & 255; switch (i10 << 24 >> 24) { case 99: { i6 = (i6 | 0) < 1 ? 1 : i6; break; } case 91: break; case 110: { if (!i15) { i6 = i13; break L8; } switch (i12 | 0) { case -2: { HEAP8[i15 >> 0] = i13; i6 = i13; break L8; } case -1: { HEAP16[i15 >> 1] = i13; i6 = i13; break L8; } case 0: { HEAP32[i15 >> 2] = i13; i6 = i13; break L8; } case 1: { HEAP32[i15 >> 2] = i13; i6 = i13; break L8; } case 3: { i6 = i15; HEAP32[i6 >> 2] = i13; HEAP32[i6 + 4 >> 2] = ((i13 | 0) < 0) << 31 >> 31; i6 = i13; break L8; } default: { i6 = i13; break L8; } } } default: { ___shlim(i34, 0); do { i8 = HEAP32[i17 >> 2] | 0; if (i8 >>> 0 < (HEAP32[i18 >> 2] | 0) >>> 0) { HEAP32[i17 >> 2] = i8 + 1; i8 = HEAPU8[i8 >> 0] | 0; } else i8 = ___shgetc(i34) | 0; } while ((_isspace(i8) | 0) != 0); if (!(HEAP32[i18 >> 2] | 0)) i8 = HEAP32[i17 >> 2] | 0; else { i8 = (HEAP32[i17 >> 2] | 0) + -1 | 0; HEAP32[i17 >> 2] = i8; } i13 = (HEAP32[i19 >> 2] | 0) + i13 + i8 - (HEAP32[i20 >> 2] | 0) | 0; } } ___shlim(i34, i6); i8 = HEAP32[i17 >> 2] | 0; i9 = HEAP32[i18 >> 2] | 0; if (i8 >>> 0 < i9 >>> 0) HEAP32[i17 >> 2] = i8 + 1; else { if ((___shgetc(i34) | 0) < 0) { i33 = 154; break L6; } i9 = HEAP32[i18 >> 2] | 0; } if (i9 | 0) HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + -1; L68 : do switch (i10 << 24 >> 24) { case 91: case 99: case 115: { i14 = (i11 | 0) == 99; L70 : do if ((i11 | 16 | 0) == 115) { _memset(i26 | 0, -1, 256) | 0; HEAP8[i30 >> 0] = 0; if ((i11 | 0) == 115) { HEAP8[i22 >> 0] = 0; HEAP8[i21 >> 0] = 0; HEAP8[i21 + 1 >> 0] = 0; HEAP8[i21 + 2 >> 0] = 0; HEAP8[i21 + 3 >> 0] = 0; HEAP8[i21 + 4 >> 0] = 0; } } else { i10 = i5 + 1 | 0; i11 = (HEAP8[i10 >> 0] | 0) == 94; i8 = i11 & 1; i5 = i11 ? i5 + 2 | 0 : i10; _memset(i27 | 0, i11 & 1 | 0, 256) | 0; HEAP8[i30 >> 0] = 0; switch (HEAP8[i5 >> 0] | 0) { case 45: { i11 = (i8 ^ 1) & 255; HEAP8[i24 >> 0] = i11; i5 = i5 + 1 | 0; break; } case 93: { i11 = (i8 ^ 1) & 255; HEAP8[i25 >> 0] = i11; i5 = i5 + 1 | 0; break; } default: i11 = (i8 ^ 1) & 255; } while (1) { i8 = HEAP8[i5 >> 0] | 0; L81 : do switch (i8 << 24 >> 24) { case 0: { i33 = 154; break L6; } case 93: break L70; case 45: { i10 = i5 + 1 | 0; i8 = HEAP8[i10 >> 0] | 0; switch (i8 << 24 >> 24) { case 93: case 0: { i8 = 45; break L81; } default: {} } i5 = HEAP8[i5 + -1 >> 0] | 0; if ((i5 & 255) < (i8 & 255)) { i5 = i5 & 255; do { i5 = i5 + 1 | 0; HEAP8[i30 + i5 >> 0] = i11; i8 = HEAP8[i10 >> 0] | 0; } while ((i5 | 0) < (i8 & 255 | 0)); i5 = i10; } else i5 = i10; break; } default: {} } while (0); HEAP8[i30 + ((i8 & 255) + 1) >> 0] = i11; i5 = i5 + 1 | 0; } } while (0); i8 = i14 ? i6 + 1 | 0 : 31; i11 = (i12 | 0) == 1; i12 = (i4 | 0) != 0; L89 : do if (i11) { if (i12) { i3 = _malloc(i8 << 2) | 0; if (!i3) { i2 = 0; i33 = 154; break L6; } } else i3 = i15; HEAP32[i29 >> 2] = 0; HEAP32[i16 >> 2] = 0; i10 = i8; i2 = 0; L95 : while (1) { i9 = (i3 | 0) == 0; do { L99 : while (1) { i8 = HEAP32[i17 >> 2] | 0; if (i8 >>> 0 < (HEAP32[i18 >> 2] | 0) >>> 0) { HEAP32[i17 >> 2] = i8 + 1; i8 = HEAPU8[i8 >> 0] | 0; } else i8 = ___shgetc(i34) | 0; if (!(HEAP8[i30 + (i8 + 1) >> 0] | 0)) break L95; HEAP8[i32 >> 0] = i8; switch (_mbrtowc(i31, i32, 1, i29) | 0) { case -1: { i2 = 0; i33 = 154; break L6; } case -2: break; default: break L99; } } if (!i9) { HEAP32[i3 + (i2 << 2) >> 2] = HEAP32[i31 >> 2]; i2 = i2 + 1 | 0; } } while (!(i12 & (i2 | 0) == (i10 | 0))); i2 = i10 << 1 | 1; i8 = _realloc(i3, i2 << 2) | 0; if (!i8) { i2 = 0; i33 = 154; break L6; } else { i9 = i10; i10 = i2; i3 = i8; i2 = i9; } } if (!(_mbsinit(i29) | 0)) { i2 = 0; i33 = 154; break L6; } else { i9 = i2; i2 = 0; } } else { if (i12) { i2 = _malloc(i8) | 0; if (!i2) { i2 = 0; i3 = 0; i33 = 154; break L6; } else { i9 = i8; i3 = 0; } while (1) { do { i8 = HEAP32[i17 >> 2] | 0; if (i8 >>> 0 < (HEAP32[i18 >> 2] | 0) >>> 0) { HEAP32[i17 >> 2] = i8 + 1; i8 = HEAPU8[i8 >> 0] | 0; } else i8 = ___shgetc(i34) | 0; if (!(HEAP8[i30 + (i8 + 1) >> 0] | 0)) { i9 = i3; i3 = 0; break L89; } HEAP8[i2 + i3 >> 0] = i8; i3 = i3 + 1 | 0; } while ((i3 | 0) != (i9 | 0)); i3 = i9 << 1 | 1; i8 = _realloc(i2, i3) | 0; if (!i8) { i3 = 0; i33 = 154; break L6; } else { i10 = i9; i9 = i3; i2 = i8; i3 = i10; } } } if (!i15) { i3 = i9; while (1) { i2 = HEAP32[i17 >> 2] | 0; if (i2 >>> 0 < i3 >>> 0) { HEAP32[i17 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; } else i2 = ___shgetc(i34) | 0; if (!(HEAP8[i30 + (i2 + 1) >> 0] | 0)) { i9 = 0; i2 = 0; i3 = 0; break L89; } i3 = HEAP32[i18 >> 2] | 0; } } else { i8 = 0; i3 = i9; while (1) { i2 = HEAP32[i17 >> 2] | 0; if (i2 >>> 0 < i3 >>> 0) { HEAP32[i17 >> 2] = i2 + 1; i2 = HEAPU8[i2 >> 0] | 0; } else i2 = ___shgetc(i34) | 0; if (!(HEAP8[i30 + (i2 + 1) >> 0] | 0)) { i9 = i8; i2 = i15; i3 = 0; break L89; } HEAP8[i15 + i8 >> 0] = i2; i8 = i8 + 1 | 0; i3 = HEAP32[i18 >> 2] | 0; } } } while (0); if (!(HEAP32[i18 >> 2] | 0)) i8 = HEAP32[i17 >> 2] | 0; else { i8 = (HEAP32[i17 >> 2] | 0) + -1 | 0; HEAP32[i17 >> 2] = i8; } i8 = i8 - (HEAP32[i20 >> 2] | 0) + (HEAP32[i19 >> 2] | 0) | 0; if (!i8) break L6; if (!((i8 | 0) == (i6 | 0) | i14 ^ 1)) break L6; do if (i12) if (i11) { HEAP32[i15 >> 2] = i3; break; } else { HEAP32[i15 >> 2] = i2; break; } while (0); if (!i14) { if (i3 | 0) HEAP32[i3 + (i9 << 2) >> 2] = 0; if (!i2) { i2 = 0; break L68; } HEAP8[i2 + i9 >> 0] = 0; } break; } case 120: case 88: case 112: { i6 = 16; i33 = 136; break; } case 111: { i6 = 8; i33 = 136; break; } case 117: case 100: { i6 = 10; i33 = 136; break; } case 105: { i6 = 0; i33 = 136; break; } case 71: case 103: case 70: case 102: case 69: case 101: case 65: case 97: { d7 = +___floatscan(i34, i12, 0); if ((HEAP32[i19 >> 2] | 0) == ((HEAP32[i20 >> 2] | 0) - (HEAP32[i17 >> 2] | 0) | 0)) break L6; if (i15) switch (i12 | 0) { case 0: { HEAPF32[i15 >> 2] = d7; break L68; } case 1: { HEAPF64[i15 >> 3] = d7; break L68; } case 2: { HEAPF64[i15 >> 3] = d7; break L68; } default: break L68; } break; } default: {} } while (0); L169 : do if ((i33 | 0) == 136) { i33 = 0; i6 = ___intscan(i34, i6, 0, -1, -1) | 0; if ((HEAP32[i19 >> 2] | 0) == ((HEAP32[i20 >> 2] | 0) - (HEAP32[i17 >> 2] | 0) | 0)) break L6; if ((i15 | 0) != 0 & (i11 | 0) == 112) { HEAP32[i15 >> 2] = i6; break; } if (i15) switch (i12 | 0) { case -2: { HEAP8[i15 >> 0] = i6; break L169; } case -1: { HEAP16[i15 >> 1] = i6; break L169; } case 0: { HEAP32[i15 >> 2] = i6; break L169; } case 1: { HEAP32[i15 >> 2] = i6; break L169; } case 3: { i14 = i15; HEAP32[i14 >> 2] = i6; HEAP32[i14 + 4 >> 2] = tempRet0; break L169; } default: break L169; } } while (0); i1 = ((i15 | 0) != 0 & 1) + i1 | 0; i6 = (HEAP32[i19 >> 2] | 0) + i13 + (HEAP32[i17 >> 2] | 0) - (HEAP32[i20 >> 2] | 0) | 0; break L8; } while (0); i5 = i8 + (i4 & 1) | 0; ___shlim(i34, 0); i4 = HEAP32[i17 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i18 >> 2] | 0) >>> 0) { HEAP32[i17 >> 2] = i4 + 1; i4 = HEAPU8[i4 >> 0] | 0; } else i4 = ___shgetc(i34) | 0; if ((i4 | 0) != (HEAPU8[i5 >> 0] | 0)) { i33 = 22; break L6; } i6 = i13 + 1 | 0; } else { i5 = i8; while (1) { i4 = i5 + 1 | 0; if (!(_isspace(HEAPU8[i4 >> 0] | 0) | 0)) break; else i5 = i4; } ___shlim(i34, 0); do { i4 = HEAP32[i17 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i18 >> 2] | 0) >>> 0) { HEAP32[i17 >> 2] = i4 + 1; i4 = HEAPU8[i4 >> 0] | 0; } else i4 = ___shgetc(i34) | 0; } while ((_isspace(i4) | 0) != 0); if (!(HEAP32[i18 >> 2] | 0)) i4 = HEAP32[i17 >> 2] | 0; else { i4 = (HEAP32[i17 >> 2] | 0) + -1 | 0; HEAP32[i17 >> 2] = i4; } i6 = (HEAP32[i19 >> 2] | 0) + i13 + i4 - (HEAP32[i20 >> 2] | 0) | 0; } while (0); i8 = i5 + 1 | 0; i4 = HEAP8[i8 >> 0] | 0; if (!(i4 << 24 >> 24)) break L4; else i13 = i6; } if ((i33 | 0) == 22) { if (HEAP32[i18 >> 2] | 0) HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + -1; if ((i1 | 0) != 0 | (i4 | 0) > -1) break; else { i4 = 0; i1 = i3; i33 = 155; } } else if ((i33 | 0) == 154) if (!i1) { i1 = i3; i33 = 155; } if ((i33 | 0) == 155) { i3 = i1; i1 = -1; } if (i4) { _free(i2); _free(i3); } } else i1 = 0; while (0); if (i35 | 0) ___unlockfile(i34); STACKTOP = i36; return i1 | 0; } function __ZN4wasm10parseConstEN6cashew7IStringENS_8WasmTypeER10MixedArena(i1, i12, i2) { i1 = i1 | 0; i12 = i12 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, d17 = 0.0; i16 = STACKTOP; STACKTOP = STACKTOP + 336 | 0; i14 = i16 + 176 | 0; i15 = i16 + 32 | 0; i7 = i16 + 316 | 0; i5 = i16 + 16 | 0; i6 = i16; i9 = HEAP32[i1 >> 2] | 0; i13 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(i2) | 0; HEAP32[i13 + 4 >> 2] = i12; L1 : do if ((i12 + -3 | 0) >>> 0 < 2) { if ((i9 | 0) == (HEAP32[11454] | 0)) switch (i12 | 0) { case 3: { HEAP32[i13 + 8 >> 2] = 3; HEAPF32[i13 + 16 >> 2] = inf; i11 = i13; break L1; } case 4: { HEAP32[i13 + 8 >> 2] = 4; HEAPF64[i13 + 16 >> 3] = inf; i11 = i13; break L1; } default: { i11 = 0; break L1; } } if ((i9 | 0) == (HEAP32[11455] | 0)) switch (i12 | 0) { case 3: { HEAP32[i13 + 8 >> 2] = 3; HEAPF32[i13 + 16 >> 2] = -inf; i11 = i13; break L1; } case 4: { HEAP32[i13 + 8 >> 2] = 4; HEAPF64[i13 + 16 >> 3] = -inf; i11 = i13; break L1; } default: { i11 = 0; break L1; } } if ((i9 | 0) == (HEAP32[11453] | 0)) switch (i12 | 0) { case 3: { d17 = +_nan(53494); HEAP32[i13 + 8 >> 2] = 3; HEAPF32[i13 + 16 >> 2] = d17; i11 = i13; break L1; } case 4: { d17 = +_nan(53494); HEAP32[i13 + 8 >> 2] = 4; HEAPF64[i13 + 16 >> 3] = d17; i11 = i13; break L1; } default: { i11 = 0; break L1; } } i8 = (HEAP8[i9 >> 0] | 0) == 45; i1 = i9 + 1 | 0; i2 = i8 ? i1 : i9; if (!i8) i1 = (HEAP8[i2 >> 0] | 0) == 43 ? i2 + 1 | 0 : i2; if (((HEAP8[i1 >> 0] | 0) == 110 ? (HEAP8[i1 + 1 >> 0] | 0) == 97 : 0) ? (HEAP8[i1 + 2 >> 0] | 0) == 110 : 0) { i2 = (HEAP8[i1 + 3 >> 0] | 0) == 58; i3 = i1 + 4 | 0; i4 = i2 ? i3 : 0; do if (i2) { if ((HEAP8[i3 >> 0] | 0) == 48 ? (HEAP8[i1 + 5 >> 0] | 0) == 120 : 0) break; ___assert_fail(17880, 17936, 74, 17950); } while (0); switch (i12 | 0) { case 3: { if (i2) { HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, i4, _strlen(i4) | 0); i3 = i15 + 60 | 0; i2 = i15 + 8 | 0; HEAP32[i15 >> 2] = 2204; HEAP32[i3 >> 2] = 2224; HEAP32[i15 + 4 >> 2] = 0; __ZNSt3__28ios_base4initEPv(i15 + 60 | 0, i2); HEAP32[i15 + 132 >> 2] = 0; HEAP32[i15 + 136 >> 2] = -1; HEAP32[i15 >> 2] = 2148; HEAP32[i3 >> 2] = 2168; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2); HEAP32[i2 >> 2] = 2240; i3 = i15 + 40 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i15 + 52 >> 2] = 0; HEAP32[i15 + 56 >> 2] = 8; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); i12 = i15 + (HEAP32[(HEAP32[i15 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i12 >> 2] = HEAP32[i12 >> 2] & -75 | 8; __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEErsERj(i15, i14) | 0; HEAP32[i14 >> 2] = HEAP32[i14 >> 2] | 2139095040; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i15); } else HEAP32[i14 >> 2] = 2143289344; i1 = HEAP32[i14 >> 2] | 0; i1 = i8 ? i1 | -2147483648 : i1; i12 = (i1 & 2147483647) >>> 0 > 2139095040; i1 = i1 | i12 & 1 ^ 1; if (i8 | i12 ^ 1) HEAP32[i14 >> 2] = i1; i11 = i13 + 8 | 0; HEAP32[i5 >> 2] = 1; HEAP32[i5 + 8 >> 2] = i1; __ZN4wasm7Literal9castToF32Ev(i15, i5); HEAP32[i11 >> 2] = HEAP32[i15 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i15 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i15 + 8 >> 2]; HEAP32[i11 + 12 >> 2] = HEAP32[i15 + 12 >> 2]; i11 = i13; break L1; } case 4: { if (i2) { HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, i4, _strlen(i4) | 0); i3 = i15 + 60 | 0; i2 = i15 + 8 | 0; HEAP32[i15 >> 2] = 2204; HEAP32[i3 >> 2] = 2224; HEAP32[i15 + 4 >> 2] = 0; __ZNSt3__28ios_base4initEPv(i15 + 60 | 0, i2); HEAP32[i15 + 132 >> 2] = 0; HEAP32[i15 + 136 >> 2] = -1; HEAP32[i15 >> 2] = 2148; HEAP32[i3 >> 2] = 2168; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2); HEAP32[i2 >> 2] = 2240; i3 = i15 + 40 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i15 + 52 >> 2] = 0; HEAP32[i15 + 56 >> 2] = 8; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); i9 = i15 + (HEAP32[(HEAP32[i15 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i9 >> 2] = HEAP32[i9 >> 2] & -75 | 8; __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEErsERy(i15, i14) | 0; i9 = i14; i11 = HEAP32[i9 + 4 >> 2] | 2146435072; i12 = i14; HEAP32[i12 >> 2] = HEAP32[i9 >> 2]; HEAP32[i12 + 4 >> 2] = i11; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i15); } else { i12 = i14; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 2146959360; } i1 = i14; i2 = HEAP32[i1 >> 2] | 0; i1 = HEAP32[i1 + 4 >> 2] | 0; i2 = i8 ? i2 : i2; i1 = i8 ? i1 | -2147483648 : i1; i12 = i1 & 2147483647; i12 = i12 >>> 0 > 2146435072 | (i12 | 0) == 2146435072 & i2 >>> 0 > 0; i2 = i2 | i12 & 1 ^ 1; if (i8 | i12 ^ 1) { HEAP32[i14 >> 2] = i2; HEAP32[i14 + 4 >> 2] = i1; } i11 = i13 + 8 | 0; HEAP32[i6 >> 2] = 2; i14 = i6 + 8 | 0; HEAP32[i14 >> 2] = i2; HEAP32[i14 + 4 >> 2] = i1; __ZN4wasm7Literal9castToF64Ev(i15, i6); HEAP32[i11 >> 2] = HEAP32[i15 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i15 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i15 + 8 >> 2]; HEAP32[i11 + 12 >> 2] = HEAP32[i15 + 12 >> 2]; i11 = i13; break L1; } default: { i11 = 0; break L1; } } } if ((i9 | 0) == (HEAP32[11456] | 0)) switch (i12 | 0) { case 3: { d17 = -+_nan(53494); HEAP32[i13 + 8 >> 2] = 3; HEAPF32[i13 + 16 >> 2] = d17; i11 = i13; break L1; } case 4: { d17 = -+_nan(53494); HEAP32[i13 + 8 >> 2] = 4; HEAPF64[i13 + 16 >> 3] = d17; i11 = i13; break L1; } default: { i11 = 0; break L1; } } else i10 = 46; } else i10 = 46; while (0); L64 : do if ((i10 | 0) == 46) { L66 : do switch (i12 | 0) { case 1: { i2 = HEAP8[i9 >> 0] | 0; switch (i2 << 24 >> 24) { case 48: { i1 = i9 + 1 | 0; if ((HEAP8[i1 >> 0] | 0) == 120) i10 = 51; else { i1 = i9; i10 = 55; } break; } case 45: { i1 = i9 + 1 | 0; if ((HEAP8[i1 >> 0] | 0) == 48 ? (HEAP8[i9 + 2 >> 0] | 0) == 120 : 0) i10 = 51; else i10 = 55; break; } default: { i1 = i9; i10 = 55; } } if ((i10 | 0) == 51) { i4 = i2 << 24 >> 24 == 45; i3 = i4 ? i1 : i9; HEAP32[i15 >> 2] = 0; HEAP32[i15 + 4 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i15, i3, _strlen(i3) | 0); i3 = i14 + 60 | 0; i2 = i14 + 8 | 0; HEAP32[i14 >> 2] = 2204; HEAP32[i3 >> 2] = 2224; HEAP32[i14 + 4 >> 2] = 0; __ZNSt3__28ios_base4initEPv(i14 + 60 | 0, i2); HEAP32[i14 + 132 >> 2] = 0; HEAP32[i14 + 136 >> 2] = -1; HEAP32[i14 >> 2] = 2148; HEAP32[i3 >> 2] = 2168; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2); HEAP32[i2 >> 2] = 2240; i3 = i14 + 40 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i14 + 52 >> 2] = 0; HEAP32[i14 + 56 >> 2] = 8; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i15); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15); i1 = i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i1 >> 2] = HEAP32[i1 >> 2] & -75 | 8; __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEErsERj(i14, i15) | 0; i15 = HEAP32[i15 >> 2] | 0; i1 = i13 + 8 | 0; HEAP32[i1 >> 2] = 1; HEAP32[i13 + 16 >> 2] = i4 ? 0 - i15 | 0 : i15; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i14); break L66; } else if ((i10 | 0) == 55) { HEAP32[i15 >> 2] = 0; HEAP32[i15 + 4 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i15, i1, _strlen(i1) | 0); i3 = i14 + 60 | 0; i2 = i14 + 8 | 0; HEAP32[i14 >> 2] = 2204; HEAP32[i3 >> 2] = 2224; HEAP32[i14 + 4 >> 2] = 0; __ZNSt3__28ios_base4initEPv(i14 + 60 | 0, i2); HEAP32[i14 + 132 >> 2] = 0; HEAP32[i14 + 136 >> 2] = -1; HEAP32[i14 >> 2] = 2148; HEAP32[i3 >> 2] = 2168; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2); HEAP32[i2 >> 2] = 2240; i3 = i14 + 40 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i14 + 52 >> 2] = 0; HEAP32[i14 + 56 >> 2] = 8; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i15); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15); __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEErsERj(i14, i15) | 0; i15 = HEAP32[i15 >> 2] | 0; i15 = (HEAP8[i9 >> 0] | 0) == 45 ? 0 - i15 | 0 : i15; i1 = i13 + 8 | 0; HEAP32[i1 >> 2] = 1; HEAP32[i13 + 16 >> 2] = i15; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i14); break L66; } break; } case 2: { i2 = HEAP8[i9 >> 0] | 0; switch (i2 << 24 >> 24) { case 48: { i1 = i9 + 1 | 0; if ((HEAP8[i1 >> 0] | 0) == 120) i10 = 63; else { i1 = i9; i10 = 67; } break; } case 45: { i1 = i9 + 1 | 0; if ((HEAP8[i1 >> 0] | 0) == 48 ? (HEAP8[i9 + 2 >> 0] | 0) == 120 : 0) i10 = 63; else i10 = 67; break; } default: { i1 = i9; i10 = 67; } } if ((i10 | 0) == 63) { i4 = i2 << 24 >> 24 == 45; i3 = i4 ? i1 : i9; HEAP32[i15 >> 2] = 0; HEAP32[i15 + 4 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i15, i3, _strlen(i3) | 0); i3 = i14 + 60 | 0; i2 = i14 + 8 | 0; HEAP32[i14 >> 2] = 2204; HEAP32[i3 >> 2] = 2224; HEAP32[i14 + 4 >> 2] = 0; __ZNSt3__28ios_base4initEPv(i14 + 60 | 0, i2); HEAP32[i14 + 132 >> 2] = 0; HEAP32[i14 + 136 >> 2] = -1; HEAP32[i14 >> 2] = 2148; HEAP32[i3 >> 2] = 2168; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2); HEAP32[i2 >> 2] = 2240; i3 = i14 + 40 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i14 + 52 >> 2] = 0; HEAP32[i14 + 56 >> 2] = 8; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i15); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15); i10 = i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i10 >> 2] = HEAP32[i10 >> 2] & -75 | 8; __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEErsERy(i14, i15) | 0; i10 = i15; i9 = HEAP32[i10 >> 2] | 0; i10 = HEAP32[i10 + 4 >> 2] | 0; i8 = _i64Subtract(0, 0, i9 | 0, i10 | 0) | 0; i1 = i13 + 8 | 0; HEAP32[i1 >> 2] = 2; i15 = i13 + 16 | 0; HEAP32[i15 >> 2] = i4 ? i8 : i9; HEAP32[i15 + 4 >> 2] = i4 ? tempRet0 : i10; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i14); break L66; } else if ((i10 | 0) == 67) { HEAP32[i15 >> 2] = 0; HEAP32[i15 + 4 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i15, i1, _strlen(i1) | 0); i3 = i14 + 60 | 0; i2 = i14 + 8 | 0; HEAP32[i14 >> 2] = 2204; HEAP32[i3 >> 2] = 2224; HEAP32[i14 + 4 >> 2] = 0; __ZNSt3__28ios_base4initEPv(i14 + 60 | 0, i2); HEAP32[i14 + 132 >> 2] = 0; HEAP32[i14 + 136 >> 2] = -1; HEAP32[i14 >> 2] = 2148; HEAP32[i3 >> 2] = 2168; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i2); HEAP32[i2 >> 2] = 2240; i3 = i14 + 40 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i14 + 52 >> 2] = 0; HEAP32[i14 + 56 >> 2] = 8; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i2, i15); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15); __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEErsERy(i14, i15) | 0; i9 = (HEAP8[i9 >> 0] | 0) == 45; i10 = i15; i8 = HEAP32[i10 >> 2] | 0; i10 = HEAP32[i10 + 4 >> 2] | 0; i7 = _i64Subtract(0, 0, i8 | 0, i10 | 0) | 0; i1 = i13 + 8 | 0; HEAP32[i1 >> 2] = 2; i15 = i13 + 16 | 0; HEAP32[i15 >> 2] = i9 ? i7 : i8; HEAP32[i15 + 4 >> 2] = i9 ? tempRet0 : i10; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i14); break L66; } break; } case 3: { d17 = +_strtof(i9, i14); i1 = i13 + 8 | 0; HEAP32[i1 >> 2] = 3; HEAPF32[i13 + 16 >> 2] = d17; break; } case 4: { d17 = +_strtod(i9, i14); i1 = i13 + 8 | 0; HEAP32[i1 >> 2] = 4; HEAPF64[i13 + 16 >> 3] = d17; break; } default: { i11 = 0; break L64; } } while (0); if ((HEAP32[i1 >> 2] | 0) == (i12 | 0)) i11 = i13; else ___assert_fail(17961, 17936, 164, 17950); } while (0); STACKTOP = i16; return i11 | 0; } function __ZN4wasm17WasmBinaryBuilder16maybeVisitBinaryERPNS_10ExpressionEh(i2, i3, i1) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i6; do switch (i1 << 24 >> 24) { case 64: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 91: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 25; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 117: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 50; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -119: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 63; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 65: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 1; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 92: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 26; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 118: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 51; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -118: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 64; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 66: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 2; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 93: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 27; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 119: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 52; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -117: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 65; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 67: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 3; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 94: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 28; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 68: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 4; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 95: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 29; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 69: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 5; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 96: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 30; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 70: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 6; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 97: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 31; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 71: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 7; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 98: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 32; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 72: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 8; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 99: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 33; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 73: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 9; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 100: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 34; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 74: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 10; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 101: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 35; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 75: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 11; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 102: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 36; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 76: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 12; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 103: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 37; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case -73: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 13; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case -71: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 38; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case -74: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 14; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case -72: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 39; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 120: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 53; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -116: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 66; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 125: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 54; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -111: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 67; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 121: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 55; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -115: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 68; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 122: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 56; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -114: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 69; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 77: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 15; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 104: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 40; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case -125: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 57; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -105: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 70; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 78: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 16; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 105: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 41; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case -124: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 58; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -104: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 71; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case 79: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 17; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 106: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 42; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 81: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 18; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 108: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 43; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 80: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 19; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 107: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 44; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 82: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 20; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 109: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 45; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 83: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 21; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 110: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 46; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 85: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 22; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 112: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 47; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 84: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 23; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 111: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 48; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case 86: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 24; HEAP32[i1 + 4 >> 2] = 1; i5 = 78; break; } case 113: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 49; HEAP32[i1 + 4 >> 2] = 2; i5 = 78; break; } case -123: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 59; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -103: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 72; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case -122: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 60; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -102: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 73; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case -121: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 61; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -101: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 74; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } case -120: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 62; HEAP32[i1 + 4 >> 2] = 3; i5 = 78; break; } case -100: { i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 75; HEAP32[i1 + 4 >> 2] = 4; i5 = 78; break; } default: i1 = 0; } while (0); if ((i5 | 0) == 78) { if (HEAP8[i2 + 12 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20761) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i7 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i2) | 0; HEAP32[i1 + 16 >> 2] = i7; i7 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i2) | 0; HEAP32[i1 + 12 >> 2] = i7; __ZN4wasm6Binary8finalizeEv(i1); HEAP32[i3 >> 2] = i1; i1 = 1; } STACKTOP = i6; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i13, i6, i15) { i13 = i13 | 0; i6 = i6 | 0; i15 = i15 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i14 = i16 + 24 | 0; i5 = i16; L1 : do if ((i6 - i13 | 0) > 1 ? (HEAP8[i13 >> 0] | 0) == 83 : 0) { i3 = HEAP8[i13 + 1 >> 0] | 0; switch (i3 | 0) { case 97: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i5, 42552); i1 = i15 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i12 = HEAP32[i15 + 8 >> 2] | 0; i4 = i12; do if (i2 >>> 0 >= i12 >>> 0) { i3 = HEAP32[i15 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i15); else { i11 = (i4 - i3 | 0) / 24 | 0; i12 = i11 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i11 >>> 0 < 89478485 ? (i12 >>> 0 < i2 >>> 0 ? i2 : i12) : 178956970, i1, i15 + 12 | 0); i12 = i14 + 8 | 0; i11 = HEAP32[i12 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i5); HEAP32[i12 >> 2] = i11 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i5); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5); i12 = i13 + 2 | 0; break L1; } case 98: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i5, 42567); i1 = i15 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i12 = HEAP32[i15 + 8 >> 2] | 0; i4 = i12; do if (i2 >>> 0 >= i12 >>> 0) { i3 = HEAP32[i15 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i15); else { i11 = (i4 - i3 | 0) / 24 | 0; i12 = i11 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i11 >>> 0 < 89478485 ? (i12 >>> 0 < i2 >>> 0 ? i2 : i12) : 178956970, i1, i15 + 12 | 0); i12 = i14 + 8 | 0; i11 = HEAP32[i12 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i5); HEAP32[i12 >> 2] = i11 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i5); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5); i12 = i13 + 2 | 0; break L1; } case 115: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i5, 42585); i1 = i15 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i12 = HEAP32[i15 + 8 >> 2] | 0; i4 = i12; do if (i2 >>> 0 >= i12 >>> 0) { i3 = HEAP32[i15 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i15); else { i11 = (i4 - i3 | 0) / 24 | 0; i12 = i11 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i11 >>> 0 < 89478485 ? (i12 >>> 0 < i2 >>> 0 ? i2 : i12) : 178956970, i1, i15 + 12 | 0); i12 = i14 + 8 | 0; i11 = HEAP32[i12 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i5); HEAP32[i12 >> 2] = i11 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i5); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5); i12 = i13 + 2 | 0; break L1; } case 105: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i5, 42597); i1 = i15 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i12 = HEAP32[i15 + 8 >> 2] | 0; i4 = i12; do if (i2 >>> 0 >= i12 >>> 0) { i3 = HEAP32[i15 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i15); else { i11 = (i4 - i3 | 0) / 24 | 0; i12 = i11 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i11 >>> 0 < 89478485 ? (i12 >>> 0 < i2 >>> 0 ? i2 : i12) : 178956970, i1, i15 + 12 | 0); i12 = i14 + 8 | 0; i11 = HEAP32[i12 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i5); HEAP32[i12 >> 2] = i11 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i5); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5); i12 = i13 + 2 | 0; break L1; } case 111: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i5, 42610); i1 = i15 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i12 = HEAP32[i15 + 8 >> 2] | 0; i4 = i12; do if (i2 >>> 0 >= i12 >>> 0) { i3 = HEAP32[i15 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i15); else { i11 = (i4 - i3 | 0) / 24 | 0; i12 = i11 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i11 >>> 0 < 89478485 ? (i12 >>> 0 < i2 >>> 0 ? i2 : i12) : 178956970, i1, i15 + 12 | 0); i12 = i14 + 8 | 0; i11 = HEAP32[i12 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i5); HEAP32[i12 >> 2] = i11 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i5); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5); i12 = i13 + 2 | 0; break L1; } case 100: { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i5, 42623); i1 = i15 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i12 = HEAP32[i15 + 8 >> 2] | 0; i4 = i12; do if (i2 >>> 0 >= i12 >>> 0) { i3 = HEAP32[i15 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i15); else { i11 = (i4 - i3 | 0) / 24 | 0; i12 = i11 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i11 >>> 0 < 89478485 ? (i12 >>> 0 < i2 >>> 0 ? i2 : i12) : 178956970, i1, i15 + 12 | 0); i12 = i14 + 8 | 0; i11 = HEAP32[i12 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i11, i5); HEAP32[i12 >> 2] = i11 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i5); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5); i12 = i13 + 2 | 0; break L1; } case 95: { i1 = HEAP32[i15 + 16 >> 2] | 0; if ((i1 | 0) == (HEAP32[i15 + 20 >> 2] | 0)) { i12 = i13; break L1; } i6 = HEAP32[i1 + 4 >> 2] | 0; i7 = i15 + 4 | 0; i8 = i15 + 8 | 0; i9 = i15 + 12 | 0; i10 = i14 + 8 | 0; i3 = HEAP32[i1 >> 2] | 0; while (1) { if ((i3 | 0) == (i6 | 0)) { i1 = 43; break; } i1 = HEAP32[i7 >> 2] | 0; i11 = HEAP32[i8 >> 2] | 0; i4 = i11; if ((i1 | 0) == (i11 | 0)) { i5 = HEAP32[i15 >> 2] | 0; i1 = (i1 - i5 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) { i1 = 47; break; } i5 = (i4 - i5 | 0) / 24 | 0; i11 = i5 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i5 >>> 0 < 89478485 ? (i11 >>> 0 < i2 >>> 0 ? i2 : i11) : 178956970, i1, i9); i11 = HEAP32[i10 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i11, i3); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i11 + 12 | 0, i3 + 12 | 0); HEAP32[i10 >> 2] = i11 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1, i3); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1 + 12 | 0, i3 + 12 | 0); HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 24; } i3 = i3 + 24 | 0; } if ((i1 | 0) == 43) { i12 = i13 + 2 | 0; break L1; } else if ((i1 | 0) == 47) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i15); break; } default: { i2 = i3 + -48 | 0; i1 = i2 >>> 0 < 10; if (!i1 ? (_isupper(i3) | 0) == 0 : 0) { i12 = i13; break L1; } i11 = i13 + 2 | 0; i1 = i1 ? i2 : i3 + -55 | 0; while (1) { if ((i11 | 0) == (i6 | 0)) { i12 = i13; break L1; } i2 = HEAP8[i11 >> 0] | 0; i3 = i2 << 24 >> 24; i5 = i3 + -48 | 0; i4 = i5 >>> 0 < 10; if (!i4 ? (_isupper(i3) | 0) == 0 : 0) break; i11 = i11 + 1 | 0; i1 = (i4 ? i5 : i3 + -55 | 0) + (i1 * 36 | 0) | 0; } if (i2 << 24 >> 24 != 95) { i12 = i13; break L1; } i1 = i1 + 1 | 0; i10 = HEAP32[i15 + 16 >> 2] | 0; i2 = i10; if (i1 >>> 0 >= (HEAP32[i15 + 20 >> 2] | 0) - i10 >> 4 >>> 0) { i12 = i13; break L1; } i6 = HEAP32[i2 + (i1 << 4) + 4 >> 2] | 0; i7 = i15 + 4 | 0; i8 = i15 + 8 | 0; i9 = i15 + 12 | 0; i10 = i14 + 8 | 0; i3 = HEAP32[i2 + (i1 << 4) >> 2] | 0; while (1) { if ((i3 | 0) == (i6 | 0)) { i1 = 61; break; } i1 = HEAP32[i7 >> 2] | 0; i13 = HEAP32[i8 >> 2] | 0; i4 = i13; if ((i1 | 0) == (i13 | 0)) { i5 = HEAP32[i15 >> 2] | 0; i1 = (i1 - i5 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) { i1 = 65; break; } i5 = (i4 - i5 | 0) / 24 | 0; i13 = i5 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i14, i5 >>> 0 < 89478485 ? (i13 >>> 0 < i2 >>> 0 ? i2 : i13) : 178956970, i1, i9); i13 = HEAP32[i10 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i13, i3); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i13 + 12 | 0, i3 + 12 | 0); HEAP32[i10 >> 2] = i13 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i15, i14); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i14); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1, i3); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1 + 12 | 0, i3 + 12 | 0); HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 24; } i3 = i3 + 24 | 0; } if ((i1 | 0) == 61) { i12 = i11 + 1 | 0; break L1; } else if ((i1 | 0) == 65) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i15); } } } else i12 = i13; while (0); STACKTOP = i16; return i12 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i10, i11) { i1 = i1 | 0; i10 = i10 | 0; i11 = i11 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i13 = i14 + 12 | 0; i12 = i14; i2 = i10; L1 : do if ((i2 - i1 | 0) > 2) { if ((HEAP8[i1 >> 0] | 0) == 103) { i3 = (HEAP8[i1 + 1 >> 0] | 0) == 115; i5 = i3; i3 = i3 ? i1 + 2 | 0 : i1; } else { i5 = 0; i3 = i1; } i4 = __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i3, i10, i11) | 0; if ((i4 | 0) != (i3 | 0)) { if (!i5) { i1 = i4; break; } i2 = HEAP32[i11 + 4 >> 2] | 0; if ((HEAP32[i11 >> 2] | 0) == (i2 | 0)) break; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 42641) | 0; i1 = i4; break; } if (((i2 - i3 | 0) > 2 ? (HEAP8[i3 >> 0] | 0) == 115 : 0) ? (HEAP8[i3 + 1 >> 0] | 0) == 114 : 0) { i4 = i3 + 2 | 0; if ((HEAP8[i4 >> 0] | 0) == 78) { i9 = i3 + 3 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S4_RT_(i9, i10, i11) | 0; if ((i2 | 0) == (i9 | 0) | (i2 | 0) == (i10 | 0)) break; i5 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i2, i10, i11) | 0; i9 = i11 + 4 | 0; do if ((i5 | 0) == (i2 | 0)) i8 = i11; else { i2 = HEAP32[i9 >> 2] | 0; if (((i2 - (HEAP32[i11 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L1; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i13, i2 + -24 | 0); i2 = HEAP32[i9 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i8 = i4 + -24 | 0; HEAP32[i9 >> 2] = i8; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i8); i4 = HEAP32[i9 >> 2] | 0; } i8 = HEAP8[i13 + 11 >> 0] | 0; i7 = i8 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -48 | 0, i7 ? HEAP32[i13 >> 2] | 0 : i13, i7 ? HEAP32[i13 + 4 >> 2] | 0 : i8 & 255) | 0; if ((i5 | 0) != (i10 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); i2 = i5; i8 = i11; break; } i3 = HEAP32[i9 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break; i12 = i3 + -24 | 0; HEAP32[i9 >> 2] = i12; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i12); i3 = HEAP32[i9 >> 2] | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); break L1; } while (0); i6 = i12 + 11 | 0; i7 = i12 + 4 | 0; while (1) { if ((HEAP8[i2 >> 0] | 0) == 69) break; i5 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i2, i10, i11) | 0; if ((i5 | 0) == (i2 | 0) | (i5 | 0) == (i10 | 0)) break L1; i2 = HEAP32[i9 >> 2] | 0; if (((i2 - (HEAP32[i8 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L1; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i13, i2 + -24 | 0); i4 = HEAP32[i9 >> 2] | 0; i2 = i4 + -24 | 0; i3 = i4; while (1) { if ((i3 | 0) == (i2 | 0)) break; i15 = i3 + -24 | 0; HEAP32[i9 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i3 = HEAP32[i9 >> 2] | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i13, 0, 42641) | 0; HEAP32[i12 >> 2] = HEAP32[i3 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i2 = HEAP8[i6 >> 0] | 0; i15 = i2 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4 + -48 | 0, i15 ? HEAP32[i12 >> 2] | 0 : i12, i15 ? HEAP32[i7 >> 2] | 0 : i2 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); i2 = i5; } i15 = i2 + 1 | 0; i4 = __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i15, i10, i11) | 0; if ((i4 | 0) == (i15 | 0)) { i2 = HEAP32[i9 >> 2] | 0; if ((HEAP32[i11 >> 2] | 0) == (i2 | 0)) break; i3 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break L1; i15 = i2 + -24 | 0; HEAP32[i9 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i2 = HEAP32[i9 >> 2] | 0; } } i2 = HEAP32[i9 >> 2] | 0; if (((i2 - (HEAP32[i8 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i13, i2 + -24 | 0); i3 = HEAP32[i9 >> 2] | 0; i1 = i3 + -24 | 0; i2 = i3; while (1) { if ((i2 | 0) == (i1 | 0)) break; i15 = i2 + -24 | 0; HEAP32[i9 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i2 = HEAP32[i9 >> 2] | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i13, 0, 42641) | 0; HEAP32[i12 >> 2] = HEAP32[i2 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = HEAP8[i12 + 11 >> 0] | 0; i15 = i1 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i15 ? HEAP32[i12 >> 2] | 0 : i12, i15 ? HEAP32[i12 + 4 >> 2] | 0 : i1 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); i1 = i4; break; } i2 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S4_RT_(i4, i10, i11) | 0; if ((i2 | 0) != (i4 | 0)) { i6 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i2, i10, i11) | 0; if ((i6 | 0) != (i2 | 0)) { i5 = i11 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i11 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i13, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i15 = i4 + -24 | 0; HEAP32[i5 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i4 = HEAP32[i5 >> 2] | 0; } i15 = HEAP8[i13 + 11 >> 0] | 0; i9 = i15 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -48 | 0, i9 ? HEAP32[i13 >> 2] | 0 : i13, i9 ? HEAP32[i13 + 4 >> 2] | 0 : i15 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); i2 = i6; } i5 = __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i2, i10, i11) | 0; if ((i5 | 0) == (i2 | 0)) { i4 = i11 + 4 | 0; i2 = HEAP32[i4 >> 2] | 0; if ((HEAP32[i11 >> 2] | 0) == (i2 | 0)) break; i3 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break L1; i15 = i2 + -24 | 0; HEAP32[i4 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i2 = HEAP32[i4 >> 2] | 0; } } i4 = i11 + 4 | 0; i2 = HEAP32[i4 >> 2] | 0; if (((i2 - (HEAP32[i11 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i13, i2 + -24 | 0); i3 = HEAP32[i4 >> 2] | 0; i1 = i3 + -24 | 0; i2 = i3; while (1) { if ((i2 | 0) == (i1 | 0)) break; i15 = i2 + -24 | 0; HEAP32[i4 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i2 = HEAP32[i4 >> 2] | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i13, 0, 42641) | 0; HEAP32[i12 >> 2] = HEAP32[i2 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = HEAP8[i12 + 11 >> 0] | 0; i15 = i1 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i15 ? HEAP32[i12 >> 2] | 0 : i12, i15 ? HEAP32[i12 + 4 >> 2] | 0 : i1 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); i1 = i5; break; } i6 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i4, i10, i11) | 0; if (!((i6 | 0) == (i4 | 0) | (i6 | 0) == (i10 | 0))) { if (i5) { i2 = i11 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((HEAP32[i11 >> 2] | 0) == (i3 | 0)) break; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3 + -24 | 0, 0, 42641) | 0; i9 = i2; } else i9 = i11 + 4 | 0; i7 = i12 + 11 | 0; i8 = i12 + 4 | 0; i2 = i6; while (1) { if ((HEAP8[i2 >> 0] | 0) == 69) break; i5 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i2, i10, i11) | 0; if ((i5 | 0) == (i2 | 0) | (i5 | 0) == (i10 | 0)) break L1; i2 = HEAP32[i9 >> 2] | 0; if (((i2 - (HEAP32[i11 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L1; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i13, i2 + -24 | 0); i4 = HEAP32[i9 >> 2] | 0; i2 = i4 + -24 | 0; i3 = i4; while (1) { if ((i3 | 0) == (i2 | 0)) break; i15 = i3 + -24 | 0; HEAP32[i9 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i3 = HEAP32[i9 >> 2] | 0; } i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i13, 0, 42641) | 0; HEAP32[i12 >> 2] = HEAP32[i3 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i2 = HEAP8[i7 >> 0] | 0; i15 = i2 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i4 + -48 | 0, i15 ? HEAP32[i12 >> 2] | 0 : i12, i15 ? HEAP32[i8 >> 2] | 0 : i2 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); i2 = i5; } i15 = i2 + 1 | 0; i4 = __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i15, i10, i11) | 0; if ((i4 | 0) == (i15 | 0)) { i2 = HEAP32[i9 >> 2] | 0; if ((HEAP32[i11 >> 2] | 0) == (i2 | 0)) break; i3 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break L1; i15 = i2 + -24 | 0; HEAP32[i9 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i2 = HEAP32[i9 >> 2] | 0; } } i2 = HEAP32[i9 >> 2] | 0; if (((i2 - (HEAP32[i11 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i13, i2 + -24 | 0); i3 = HEAP32[i9 >> 2] | 0; i1 = i3 + -24 | 0; i2 = i3; while (1) { if ((i2 | 0) == (i1 | 0)) break; i15 = i2 + -24 | 0; HEAP32[i9 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i2 = HEAP32[i9 >> 2] | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i13, 0, 42641) | 0; HEAP32[i12 >> 2] = HEAP32[i2 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = HEAP8[i12 + 11 >> 0] | 0; i15 = i1 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i3 + -48 | 0, i15 ? HEAP32[i12 >> 2] | 0 : i12, i15 ? HEAP32[i12 + 4 >> 2] | 0 : i1 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); i1 = i4; } } } } while (0); STACKTOP = i14; return i1 | 0; } function __ZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefE(i29, i2) { i29 = i29 | 0; i2 = i2 | 0; var i1 = 0, i3 = 0, d4 = 0.0, d5 = 0.0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 = 0, i45 = 0, i46 = 0, i47 = 0, i48 = 0, i49 = 0, i50 = 0, i51 = 0; i51 = STACKTOP; STACKTOP = STACKTOP + 288 | 0; i28 = i51 + 72 | 0; i27 = i51 + 280 | 0; i33 = i51 + 276 | 0; i38 = i51 + 272 | 0; i3 = i51 + 268 | 0; i39 = i51 + 260 | 0; i40 = i51 + 285 | 0; i41 = i51 + 284 | 0; i49 = i51 + 216 | 0; i50 = i51 + 212 | 0; i43 = i51 + 196 | 0; i44 = i51 + 180 | 0; i45 = i51 + 124 | 0; i30 = i51 + 104 | 0; i16 = i51 + 264 | 0; i17 = i51 + 256 | 0; i18 = i51 + 252 | 0; i19 = i51 + 248 | 0; i31 = i51 + 100 | 0; i32 = i51 + 208 | 0; i34 = i51 + 192 | 0; i35 = i51 + 176 | 0; i36 = i51 + 120 | 0; i46 = i51 + 48 | 0; i47 = i51 + 24 | 0; i48 = i51; i37 = i51 + 96 | 0; i1 = __ZN6cashew3RefixEj(i2, 1) | 0; i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0; i1 = HEAP32[i1 >> 2] | 0; if (HEAP8[i29 + 37 >> 0] | 0) { i25 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46604, 12482) | 0; i26 = __ZN6cashew3RefixEj(i2, 1) | 0; i26 = __ZN6cashew5Value10getIStringEv(HEAP32[i26 >> 2] | 0) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i25, HEAP32[i26 >> 2] | 0) | 0, 10) | 0; __ZN6cashew5Value9stringifyERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i2 >> 2] | 0, 46604, 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(46604, 10) | 0; } i15 = __Znwj(64) | 0; HEAP32[i15 + 40 >> 2] = 0; HEAP32[i15 + 44 >> 2] = 0; HEAP32[i15 + 48 >> 2] = 0; i20 = i15 + 56 | 0; HEAP32[i20 >> 2] = 0; HEAP32[i15 + 60 >> 2] = 0; i25 = i15 + 4 | 0; HEAP32[i25 >> 2] = 0; HEAP32[i25 + 4 >> 2] = 0; HEAP32[i25 + 8 >> 2] = 0; HEAP32[i25 + 12 >> 2] = 0; HEAP32[i25 + 16 >> 2] = 0; HEAP32[i25 + 20 >> 2] = 0; HEAP32[i25 + 24 >> 2] = 0; HEAP32[i25 + 28 >> 2] = 0; HEAP32[i15 + 52 >> 2] = i20; HEAP32[i33 >> 2] = i15; HEAP32[i15 >> 2] = i1; i15 = __ZN6cashew3RefixEj(i2, 2) | 0; i15 = HEAP32[i15 >> 2] | 0; i20 = __ZN6cashew3RefixEj(i2, 3) | 0; HEAP32[i38 >> 2] = HEAP32[i20 >> 2]; HEAP32[i3 >> 2] = 0; HEAP32[i39 >> 2] = i3; i20 = i49 + 16 | 0; HEAP32[i49 >> 2] = 0; HEAP32[i49 + 4 >> 2] = 0; HEAP32[i49 + 8 >> 2] = 0; HEAP32[i49 + 12 >> 2] = 0; HEAPF32[i20 >> 2] = 1.0; HEAP32[i49 + 20 >> 2] = 0; HEAP32[i49 + 24 >> 2] = 0; HEAP32[i49 + 28 >> 2] = 0; HEAP32[i50 >> 2] = 0; HEAP32[i43 >> 2] = 0; i25 = i43 + 4 | 0; HEAP32[i25 >> 2] = 0; HEAP32[i43 + 8 >> 2] = 0; HEAP32[i44 >> 2] = 0; i26 = i44 + 4 | 0; HEAP32[i26 >> 2] = 0; HEAP32[i44 + 8 >> 2] = 0; HEAP32[i45 >> 2] = 0; HEAP32[i45 + 4 >> 2] = 0; HEAP32[i45 + 8 >> 2] = 0; HEAP32[i45 + 12 >> 2] = 0; HEAPF32[i45 + 16 >> 2] = 1.0; i21 = i45 + 20 | 0; HEAP32[i45 + 48 >> 2] = 0; HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; HEAP32[i21 + 12 >> 2] = 0; HEAP32[i21 + 16 >> 2] = 0; HEAP32[i21 + 20 >> 2] = 0; i21 = i29 + 72 | 0; i22 = i49 + 4 | 0; i23 = i49 + 12 | 0; i24 = i49 + 8 | 0; i12 = 0; while (1) { if (i12 >>> 0 >= (__ZN6cashew5Value4sizeEv(i15) | 0) >>> 0) { i42 = 5; break; } i14 = __ZN6cashew3RefixEj(i38, i12) | 0; HEAP32[i30 >> 2] = HEAP32[i14 >> 2]; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i30, 0) | 0, 45048) | 0)) { i42 = 7; break; } i14 = __ZN6cashew3RefixEj(i30, 1) | 0; HEAP32[i30 >> 2] = HEAP32[i14 >> 2]; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i30, 0) | 0, 45052) | 0)) { i42 = 10; break; } if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i30, 2) | 0, 0) | 0, 45056) | 0)) { i42 = 10; break; } i13 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i30, 2) | 0, 1) | 0; i13 = __ZN6cashew5Value10getIStringEv(HEAP32[i13 >> 2] | 0) | 0; i13 = HEAP32[i13 >> 2] | 0; i14 = __ZN6cashew3RefixEj(i30, 3) | 0; HEAP32[i16 >> 2] = HEAP32[i14 >> 2]; HEAP32[i17 >> 2] = HEAP32[i21 >> 2]; HEAP32[i27 >> 2] = HEAP32[i16 >> 2]; HEAP32[i28 >> 2] = HEAP32[i17 >> 2]; i14 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i27, 0, 0, i28) | 0; i9 = HEAP32[i33 >> 2] | 0; HEAP32[i18 >> 2] = i13; i11 = __ZN4wasm13asmToWasmTypeE7AsmType(i14) | 0; HEAP32[i28 >> 2] = HEAP32[i18 >> 2]; __ZN4wasm7Builder8addParamEPNS_8FunctionENS_4NameENS_8WasmTypeE(i9, i28, i11) | 0; i11 = i13 * 33 ^ 5381; i9 = HEAP32[i22 >> 2] | 0; i10 = (i9 | 0) == 0; i6 = i13; L10 : do if (!i10) { i7 = i9 + -1 | 0; i8 = (i7 & i9 | 0) == 0; if (i8) i1 = i7 & i11; else i1 = (i11 >>> 0) % (i9 >>> 0) | 0; i2 = HEAP32[(HEAP32[i49 >> 2] | 0) + (i1 << 2) >> 2] | 0; if (!i2) i42 = 22; else do { i2 = HEAP32[i2 >> 2] | 0; if (!i2) { i42 = 22; break L10; } i3 = HEAP32[i2 + 4 >> 2] | 0; if (i8) i3 = i3 & i7; else i3 = (i3 >>> 0) % (i9 >>> 0) | 0; if ((i3 | 0) != (i1 | 0)) { i42 = 22; break L10; } } while ((HEAP32[i2 + 8 >> 2] | 0) != (i6 | 0)); } else { i1 = 0; i42 = 22; } while (0); if ((i42 | 0) == 22) { i42 = 0; i6 = __Znwj(12) | 0; HEAP32[i6 + 8 >> 2] = i13; HEAP32[i6 + 4 >> 2] = i11; HEAP32[i6 >> 2] = 0; d4 = +(((HEAP32[i23 >> 2] | 0) + 1 | 0) >>> 0); d5 = +HEAPF32[i20 >> 2]; do if (i10 | d4 > +(i9 >>> 0) * d5) { i1 = (i9 >>> 0 > 2 & (i9 + -1 & i9 | 0) == 0 & 1 | i9 << 1) ^ 1; i2 = ~~+Math_ceil(+(d4 / d5)) >>> 0; __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE6rehashEj(i49, i1 >>> 0 < i2 >>> 0 ? i2 : i1); i1 = HEAP32[i22 >> 2] | 0; i2 = i1 + -1 | 0; if (!(i2 & i1)) { i3 = i1; i1 = i2 & i11; break; } else { i3 = i1; i1 = (i11 >>> 0) % (i1 >>> 0) | 0; break; } } else i3 = i9; while (0); i1 = (HEAP32[i49 >> 2] | 0) + (i1 << 2) | 0; i2 = HEAP32[i1 >> 2] | 0; if (!i2) { HEAP32[i6 >> 2] = HEAP32[i24 >> 2]; HEAP32[i24 >> 2] = i6; HEAP32[i1 >> 2] = i24; i1 = HEAP32[i6 >> 2] | 0; if (i1 | 0) { i1 = HEAP32[i1 + 4 >> 2] | 0; i2 = i3 + -1 | 0; if (!(i2 & i3)) i1 = i1 & i2; else i1 = (i1 >>> 0) % (i3 >>> 0) | 0; HEAP32[(HEAP32[i49 >> 2] | 0) + (i1 << 2) >> 2] = i6; } } else { HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = i6; } HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + 1; } HEAP32[i19 >> 2] = i13; HEAP32[i28 >> 2] = HEAP32[i19 >> 2]; __ZN7AsmData8addParamEN6cashew7IStringE7AsmType(i45, i28, i14); i12 = i12 + 1 | 0; } if ((i42 | 0) == 5) { i13 = __ZN6cashew5Value4sizeEv(i15) | 0; while (1) { if (i13 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i38 >> 2] | 0) | 0) >>> 0) break; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i38, i13) | 0, 0) | 0, 45060) | 0)) break; i12 = __ZN6cashew3RefixEj(i38, i13) | 0; HEAP32[i30 >> 2] = HEAP32[i12 >> 2]; i12 = 0; while (1) { i19 = __ZN6cashew3RefixEj(i30, 1) | 0; if (i12 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i19 >> 2] | 0) | 0) >>> 0) break; i14 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i30, 1) | 0, i12) | 0; HEAP32[i31 >> 2] = HEAP32[i14 >> 2]; i14 = __ZN6cashew3RefixEj(i31, 0) | 0; i14 = __ZN6cashew5Value10getIStringEv(HEAP32[i14 >> 2] | 0) | 0; i14 = HEAP32[i14 >> 2] | 0; i15 = __ZN6cashew3RefixEj(i31, 1) | 0; HEAP32[i32 >> 2] = HEAP32[i15 >> 2]; HEAP32[i34 >> 2] = HEAP32[i21 >> 2]; HEAP32[i27 >> 2] = HEAP32[i32 >> 2]; HEAP32[i28 >> 2] = HEAP32[i34 >> 2]; i15 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i27, 0, 1, i28) | 0; i9 = HEAP32[i33 >> 2] | 0; HEAP32[i35 >> 2] = i14; i11 = __ZN4wasm13asmToWasmTypeE7AsmType(i15) | 0; HEAP32[i28 >> 2] = HEAP32[i35 >> 2]; __ZN4wasm7Builder6addVarEPNS_8FunctionENS_4NameENS_8WasmTypeE(i9, i28, i11) | 0; i11 = i14 * 33 ^ 5381; i9 = HEAP32[i22 >> 2] | 0; i10 = (i9 | 0) == 0; i6 = i14; L51 : do if (!i10) { i7 = i9 + -1 | 0; i8 = (i7 & i9 | 0) == 0; if (i8) i1 = i7 & i11; else i1 = (i11 >>> 0) % (i9 >>> 0) | 0; i2 = HEAP32[(HEAP32[i49 >> 2] | 0) + (i1 << 2) >> 2] | 0; if (!i2) i42 = 51; else do { i2 = HEAP32[i2 >> 2] | 0; if (!i2) { i42 = 51; break L51; } i3 = HEAP32[i2 + 4 >> 2] | 0; if (i8) i3 = i3 & i7; else i3 = (i3 >>> 0) % (i9 >>> 0) | 0; if ((i3 | 0) != (i1 | 0)) { i42 = 51; break L51; } } while ((HEAP32[i2 + 8 >> 2] | 0) != (i6 | 0)); } else { i1 = 0; i42 = 51; } while (0); if ((i42 | 0) == 51) { i42 = 0; i6 = __Znwj(12) | 0; HEAP32[i6 + 8 >> 2] = i14; HEAP32[i6 + 4 >> 2] = i11; HEAP32[i6 >> 2] = 0; d4 = +(((HEAP32[i23 >> 2] | 0) + 1 | 0) >>> 0); d5 = +HEAPF32[i20 >> 2]; do if (i10 | d4 > +(i9 >>> 0) * d5) { i1 = (i9 >>> 0 > 2 & (i9 + -1 & i9 | 0) == 0 & 1 | i9 << 1) ^ 1; i2 = ~~+Math_ceil(+(d4 / d5)) >>> 0; __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE6rehashEj(i49, i1 >>> 0 < i2 >>> 0 ? i2 : i1); i1 = HEAP32[i22 >> 2] | 0; i2 = i1 + -1 | 0; if (!(i2 & i1)) { i3 = i1; i1 = i2 & i11; break; } else { i3 = i1; i1 = (i11 >>> 0) % (i1 >>> 0) | 0; break; } } else i3 = i9; while (0); i1 = (HEAP32[i49 >> 2] | 0) + (i1 << 2) | 0; i2 = HEAP32[i1 >> 2] | 0; if (!i2) { HEAP32[i6 >> 2] = HEAP32[i24 >> 2]; HEAP32[i24 >> 2] = i6; HEAP32[i1 >> 2] = i24; i1 = HEAP32[i6 >> 2] | 0; if (i1 | 0) { i1 = HEAP32[i1 + 4 >> 2] | 0; i2 = i3 + -1 | 0; if (!(i2 & i3)) i1 = i1 & i2; else i1 = (i1 >>> 0) % (i3 >>> 0) | 0; HEAP32[(HEAP32[i49 >> 2] | 0) + (i1 << 2) >> 2] = i6; } } else { HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = i6; } HEAP32[i23 >> 2] = (HEAP32[i23 >> 2] | 0) + 1; } HEAP32[i36 >> 2] = i14; HEAP32[i28 >> 2] = HEAP32[i36 >> 2]; __ZN7AsmData6addVarEN6cashew7IStringE7AsmType(i45, i28, i15); i12 = i12 + 1 | 0; } i13 = i13 + 1 | 0; } HEAP8[i27 >> 0] = 0; HEAP32[i30 >> 2] = i27; HEAP32[i30 + 4 >> 2] = i33; HEAP32[i30 + 8 >> 2] = i49; HEAP32[i30 + 12 >> 2] = i45; HEAP8[i31 >> 0] = 0; HEAP32[i46 + 16 >> 2] = 0; HEAP32[i47 + 16 >> 2] = 0; i1 = __Znwj(64) | 0; HEAP32[i1 >> 2] = 2840; HEAP32[i1 + 4 >> 2] = i29; HEAP32[i1 + 8 >> 2] = i48; HEAP32[i1 + 12 >> 2] = i49; HEAP32[i1 + 16 >> 2] = i33; HEAP32[i1 + 20 >> 2] = i47; HEAP32[i1 + 24 >> 2] = i45; HEAP32[i1 + 28 >> 2] = i30; HEAP32[i1 + 32 >> 2] = i31; HEAP32[i1 + 36 >> 2] = i50; HEAP32[i1 + 40 >> 2] = i40; HEAP32[i1 + 44 >> 2] = i43; HEAP32[i1 + 48 >> 2] = i46; HEAP32[i1 + 52 >> 2] = i44; HEAP32[i1 + 56 >> 2] = i41; HEAP32[i1 + 60 >> 2] = i39; HEAP32[i48 + 16 >> 2] = i1; i1 = i29; i42 = i48; HEAP32[i28 >> 2] = 2884; HEAP32[i28 + 4 >> 2] = i1; HEAP32[i28 + 8 >> 2] = i42; HEAP32[i28 + 16 >> 2] = i28; __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i28, i47); __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i28); HEAP32[i28 >> 2] = 2928; HEAP32[i28 + 4 >> 2] = i1; HEAP32[i28 + 8 >> 2] = i42; HEAP32[i28 + 16 >> 2] = i28; __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i28, i46); __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i28); HEAP32[i37 >> 2] = HEAP32[i38 >> 2]; HEAP32[i28 >> 2] = HEAP32[i37 >> 2]; i42 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i46, i28, i13) | 0; i1 = HEAP32[i33 >> 2] | 0; HEAP32[i1 + 36 >> 2] = i42; if ((HEAP32[i25 >> 2] | 0) == (HEAP32[i43 >> 2] | 0) ? (HEAP32[i26 >> 2] | 0) == (HEAP32[i44 >> 2] | 0) : 0) if (!(HEAP32[i50 >> 2] | 0)) { __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev(i48); __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i47); __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i46); __ZN7AsmDataD2Ev(i45); __ZNSt3__213__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i44); __ZNSt3__213__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i43); __ZN6cashew10IStringSetD2Ev(i49); STACKTOP = i51; return i1 | 0; } else ___assert_fail(12614, 11743, 1799, 12506); ___assert_fail(12562, 11743, 1798, 12506); } else if ((i42 | 0) == 7) ___assert_fail(12490, 11743, 953, 12506); else if ((i42 | 0) == 10) ___assert_fail(12522, 11743, 955, 12506); return 0; } function __ZN4wasm10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE4scanEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i5 = HEAP32[i2 >> 2] | 0; L1 : do switch (HEAP32[i5 >> 2] | 0) { case 0: { _abort(); break; } case 1: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 98, i2); i2 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i5) | 0; i3 = i2 + 12 | 0; i2 = HEAP32[i2 + 20 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 2: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 99, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13maybePushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i5) | 0) + 16 | 0); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i5) | 0) + 12 | 0); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i5) | 0) + 8 | 0); break; } case 3: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 100, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_4LoopEEEPT_v(i5) | 0) + 16 | 0); break; } case 4: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 101, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13maybePushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, (__ZN4wasm10Expression4castINS_5BreakEEEPT_v(i5) | 0) + 16 | 0); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13maybePushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, (__ZN4wasm10Expression4castINS_5BreakEEEPT_v(i5) | 0) + 12 | 0); break; } case 5: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 102, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13maybePushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, (__ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i5) | 0) + 32 | 0); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i5) | 0) + 28 | 0); break; } case 6: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 103, i2); i2 = __ZN4wasm10Expression4castINS_4CallEEEPT_v(i5) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 7: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 104, i2); i2 = __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(i5) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 8: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 105, i2); i2 = __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i5) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i5) | 0) + 28 | 0); break; } case 9: { __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i1 + 16 | 0, 106, i2); break; } case 10: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 107, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(i5) | 0) + 12 | 0); break; } case 11: { __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i1 + 16 | 0, 108, i2); break; } case 12: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 109, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(i5) | 0) + 12 | 0); break; } case 13: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 110, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_4LoadEEEPT_v(i5) | 0) + 20 | 0); break; } case 14: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 111, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_5StoreEEEPT_v(i5) | 0) + 24 | 0); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_5StoreEEEPT_v(i5) | 0) + 20 | 0); break; } case 15: { __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i1 + 16 | 0, 112, i2); break; } case 16: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 113, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_5UnaryEEEPT_v(i5) | 0) + 12 | 0); break; } case 17: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 114, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i5) | 0) + 16 | 0); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i5) | 0) + 12 | 0); break; } case 18: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 115, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i5) | 0) + 16 | 0); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i5) | 0) + 12 | 0); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i5) | 0) + 8 | 0); break; } case 19: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 116, i2); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13maybePushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, (__ZN4wasm10Expression4castINS_6ReturnEEEPT_v(i5) | 0) + 8 | 0); break; } case 20: { i4 = i1 + 16 | 0; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 117, i2); i2 = __ZN4wasm10Expression4castINS_4HostEEEPT_v(i5) | 0; i3 = i2 + 16 | 0; i2 = HEAP32[i2 + 24 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i4, 97, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 21: { __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i1 + 16 | 0, 118, i2); break; } case 22: { __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i1 + 16 | 0, 119, i2); break; } default: {} } while (0); return; } function __ZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementE(i37, i32) { i37 = i37 | 0; i32 = i32 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0; i41 = STACKTOP; STACKTOP = STACKTOP + 160 | 0; i18 = i41 + 152 | 0; i2 = i41 + 148 | 0; i1 = i41 + 144 | 0; i36 = i41 + 140 | 0; i38 = i41 + 128 | 0; i39 = i41 + 116 | 0; i40 = i41 + 104 | 0; i28 = i41 + 100 | 0; i25 = i41 + 96 | 0; i26 = i41 + 76 | 0; i19 = i41 + 64 | 0; i20 = i41 + 56 | 0; i21 = i41 + 40 | 0; i22 = i41 + 60 | 0; i23 = i41 + 44 | 0; i24 = i41 + 36 | 0; i27 = i41 + 24 | 0; i29 = i41 + 12 | 0; i33 = i41; HEAP32[i2 >> 2] = 0; HEAP32[i1 >> 2] = 0; i3 = __ZN4wasm22SExpressionWasmBuilder18parseFunctionNamesERNS_7ElementERNS_4NameES4_(i37, i32, i2, i1) | 0; if (!(HEAP32[i2 >> 2] | 0)) { i31 = __ZN4wasm4Name7fromIntEj(HEAP32[i37 + 20 >> 2] | 0) | 0; HEAP32[i2 >> 2] = i31; } if (!(HEAP32[i1 >> 2] | 0)) i31 = i37; else { i31 = __ZN4wasm11make_uniqueINS_6ExportEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() | 0; HEAP32[i31 >> 2] = HEAP32[i1 >> 2]; HEAP32[i31 + 4 >> 2] = HEAP32[i2 >> 2]; __ZN4wasm6Module9addExportEPNS_6ExportE(HEAP32[i37 >> 2] | 0, i31); i31 = i37; } i13 = i37 + 20 | 0; HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 1; HEAP32[i36 >> 2] = 0; i13 = i37 + 60 | 0; HEAP32[i13 >> 2] = 0; HEAP32[i37 + 64 >> 2] = 0; i14 = i37 + 80 | 0; HEAP8[i14 >> 0] = 0; HEAP32[i38 >> 2] = 0; i15 = i38 + 4 | 0; HEAP32[i15 >> 2] = 0; HEAP32[i38 + 8 >> 2] = 0; HEAP32[i39 >> 2] = 0; i16 = i39 + 4 | 0; HEAP32[i16 >> 2] = 0; HEAP32[i39 + 8 >> 2] = 0; HEAP32[i40 >> 2] = 0; i17 = i40 + 4 | 0; HEAP32[i17 >> 2] = 0; HEAP32[i40 + 8 >> 2] = 0; HEAP32[i28 >> 2] = 0; HEAP32[i25 >> 2] = 0; HEAP32[i26 >> 2] = i37; HEAP32[i26 + 4 >> 2] = i2; HEAP32[i26 + 8 >> 2] = i39; HEAP32[i26 + 12 >> 2] = i28; HEAP32[i26 + 16 >> 2] = i40; HEAP32[i19 >> 2] = i25; HEAP32[i19 + 4 >> 2] = i37; HEAP32[i19 + 8 >> 2] = i36; i9 = i38 + 8 | 0; i10 = i37 + 48 | 0; i30 = i37 + 44 | 0; i11 = i39 + 8 | 0; i12 = i40 + 8 | 0; i1 = 0; L8 : while (1) { i8 = (__ZN4wasm7Element4listEv(i32) | 0) + 8 | 0; if (i3 >>> 0 >= (HEAP32[i8 >> 2] | 0) >>> 0) break; i6 = __ZN4wasm7ElementixEj(i32, i3) | 0; i5 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, 0) | 0) | 0; L11 : do if (!((i5 | 0) == (HEAP32[11437] | 0) | (i5 | 0) == (HEAP32[11444] | 0))) { if ((i5 | 0) == (HEAP32[11438] | 0)) { i8 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i37, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, 1) | 0) | 0, 0, 0) | 0; HEAP32[i28 >> 2] = i8; break; } if ((i5 | 0) == (HEAP32[11445] | 0)) { i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, 1) | 0) | 0; i8 = HEAP32[i31 >> 2] | 0; HEAP32[i22 >> 2] = i1; HEAP32[i18 >> 2] = HEAP32[i22 >> 2]; if (!(__ZN4wasm6Module17checkFunctionTypeENS_4NameE(i8, i18) | 0)) { i35 = 28; break L8; } i5 = HEAP32[i31 >> 2] | 0; HEAP32[i24 >> 2] = i1; HEAP32[i18 >> 2] = HEAP32[i24 >> 2]; i5 = __ZN4wasm6Module15getFunctionTypeENS_4NameE(i5, i18) | 0; HEAP32[i28 >> 2] = HEAP32[i5 + 4 >> 2]; i4 = i5 + 8 | 0; i5 = i5 + 12 | 0; i2 = 0; while (1) { if (i2 >>> 0 >= (HEAP32[i5 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2 >>> 0) break L11; i6 = __ZN4wasm4Name7fromIntEj(i2) | 0; HEAP32[i18 >> 2] = i6; i7 = HEAP32[(HEAP32[i4 >> 2] | 0) + (i2 << 2) >> 2] | 0; HEAP32[i20 >> 2] = i7; i8 = HEAP32[i15 >> 2] | 0; if (i8 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) { HEAP32[i8 >> 2] = i6; HEAP32[i8 + 4 >> 2] = i7; HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + 8; } else __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i38, i18, i20); i7 = HEAP32[i20 >> 2] | 0; HEAP32[i21 >> 2] = HEAP32[i18 >> 2]; i8 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i10, i21) | 0; HEAP32[i8 >> 2] = i7; i2 = i2 + 1 | 0; } } i7 = HEAP32[i15 >> 2] | 0; i8 = HEAP32[i38 >> 2] | 0; i2 = i8; i4 = i7; if ((i7 | 0) != (i8 | 0) ? (HEAP32[i16 >> 2] | 0) == (HEAP32[i39 >> 2] | 0) : 0) __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i39, i2, i4); if (!(HEAP32[i30 >> 2] | 0)) __ZZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementEENKUlvE_clEv(i26); i2 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i37, i6) | 0; if (!(HEAP32[i36 >> 2] | 0)) { HEAP32[i36 >> 2] = i2; break; } else { __ZZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementEENKUlvE0_clEv(i19); __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_((HEAP32[i25 >> 2] | 0) + 12 | 0, i2); break; } } else { i2 = 1; while (1) { i8 = (__ZN4wasm7Element4listEv(i6) | 0) + 8 | 0; if (i2 >>> 0 >= (HEAP32[i8 >> 2] | 0) >>> 0) break L11; HEAP32[i18 >> 2] = 0; HEAP32[i20 >> 2] = 0; i8 = (__ZN4wasm7ElementixEj(i6, i2) | 0) + 24 | 0; if (!(HEAP8[i8 >> 0] | 0)) { i4 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i37, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, i2) | 0) | 0, 1, 0) | 0; HEAP32[i20 >> 2] = i4; } else i4 = HEAP32[i20 >> 2] | 0; if (!i4) { i8 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, i2) | 0) | 0; HEAP32[i18 >> 2] = i8; i2 = i2 + 1 | 0; i8 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i37, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, i2) | 0) | 0, 0, 0) | 0; HEAP32[i20 >> 2] = i8; } else { i8 = __ZN4wasm4Name7fromIntEj(HEAP32[i13 >> 2] | 0) | 0; HEAP32[i18 >> 2] = i8; } i2 = i2 + 1 | 0; do if ((i5 | 0) == (HEAP32[11437] | 0)) { i4 = HEAP32[i16 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i11 >> 2] | 0) >>> 0) { i8 = HEAP32[i20 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i18 >> 2]; HEAP32[i4 + 4 >> 2] = i8; HEAP32[i16 >> 2] = (HEAP32[i16 >> 2] | 0) + 8; break; } else { __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i39, i18, i20); break; } } else { i4 = HEAP32[i17 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i12 >> 2] | 0) >>> 0) { i8 = HEAP32[i20 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i18 >> 2]; HEAP32[i4 + 4 >> 2] = i8; HEAP32[i17 >> 2] = (HEAP32[i17 >> 2] | 0) + 8; break; } else { __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i40, i18, i20); break; } } while (0); HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 1; i7 = HEAP32[i20 >> 2] | 0; HEAP32[i21 >> 2] = HEAP32[i18 >> 2]; i8 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i10, i21) | 0; HEAP32[i8 >> 2] = i7; } } while (0); i3 = i3 + 1 | 0; } if ((i35 | 0) == 28) { i41 = ___cxa_allocate_exception(20) | 0; HEAP32[i23 >> 2] = 0; HEAP32[i23 + 4 >> 2] = 0; HEAP32[i23 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i23, 17412, 16); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i41, i23); ___cxa_throw(i41 | 0, 8, 154); } if (!(HEAP8[i14 >> 0] | 0)) i2 = HEAP32[i25 >> 2] | 0; else { __ZZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementEENKUlvE0_clEv(i19); i2 = HEAP32[i25 >> 2] | 0; HEAP32[i2 + 8 >> 2] = HEAP32[11459]; } if (i2 | 0) __ZN4wasm5Block8finalizeEv(i2); i2 = HEAP32[i30 >> 2] | 0; if (!i2) { __ZZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementEENKUlvE_clEv(i26); i2 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i37 + 4 >> 2] | 0) | 0; HEAP32[i36 >> 2] = i2; i2 = HEAP32[i30 >> 2] | 0; } if ((HEAP32[i2 + 4 >> 2] | 0) != (HEAP32[i28 >> 2] | 0)) { i41 = ___cxa_allocate_exception(20) | 0; HEAP32[i27 >> 2] = 0; HEAP32[i27 + 4 >> 2] = 0; HEAP32[i27 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i27, 17660, 20); i39 = HEAP32[i32 + 28 >> 2] | 0; i40 = HEAP32[i32 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i41, i27); HEAP32[i41 + 12 >> 2] = i39; HEAP32[i41 + 16 >> 2] = i40; ___cxa_throw(i41 | 0, 8, 154); } do if (!i1) { __ZN4wasm6getSigEPNS_8FunctionE(i29, i2); i3 = __ZN4wasm17sigToFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(i29) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i29); i1 = HEAP32[i31 >> 2] | 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i1 = HEAP32[i1 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; if (__ZN4wasm12FunctionType20structuralComparisonERS0_(HEAP32[i1 >> 2] | 0, i3) | 0) { i35 = 58; break; } i1 = i1 + 4 | 0; } if ((i35 | 0) == 58 ? (i34 = HEAP32[HEAP32[i1 >> 2] >> 2] | 0, i34 | 0) : 0) { if (!i3) { i1 = i34; break; } __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i3 + 8 | 0); __ZdlPv(i3); i1 = i34; break; } i41 = ___cxa_allocate_exception(20) | 0; HEAP32[i33 >> 2] = 0; HEAP32[i33 + 4 >> 2] = 0; HEAP32[i33 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i33, 17681, 34); i39 = HEAP32[i32 + 28 >> 2] | 0; i40 = HEAP32[i32 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i41, i33); HEAP32[i41 + 12 >> 2] = i39; HEAP32[i41 + 16 >> 2] = i40; ___cxa_throw(i41 | 0, 8, 154); } while (0); HEAP32[(HEAP32[i30 >> 2] | 0) + 36 >> 2] = HEAP32[i36 >> 2]; HEAP32[(HEAP32[i30 >> 2] | 0) + 32 >> 2] = i1; i1 = HEAP32[i31 >> 2] | 0; i3 = HEAP32[i30 >> 2] | 0; HEAP32[i30 >> 2] = 0; __ZN4wasm6Module11addFunctionEPNS_8FunctionE(i1, i3); __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE5clearEv(i37 + 48 | 0); i3 = HEAP32[i37 + 68 >> 2] | 0; i1 = i37 + 72 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i37 = i2 + -4 | 0; HEAP32[i1 >> 2] = i37; i2 = i37; } __ZNSt3__213__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i40); __ZNSt3__213__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i39); __ZNSt3__213__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i38); STACKTOP = i41; return; } function __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i28, i26, i30) { i28 = i28 | 0; i26 = i26 | 0; i30 = i30 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i27 = 0, i29 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0; i35 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i31 = i35 + 48 | 0; i32 = i35 + 24 | 0; i33 = i35; i34 = i35 + 36 | 0; do if ((i26 - i28 | 0) > 1 ? (HEAP8[i28 >> 0] | 0) == 73 : 0) { i27 = i30 + 61 | 0; i25 = i30 + 36 | 0; L4 : do if (HEAP8[i27 >> 0] | 0) { i2 = HEAP32[i25 >> 2] | 0; i1 = HEAP32[i2 + -16 >> 2] | 0; i2 = i2 + -12 | 0; while (1) { i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (i1 | 0)) break L4; i29 = i3 + -16 | 0; HEAP32[i2 >> 2] = i29; __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i29); } } while (0); HEAP32[i32 >> 2] = 0; HEAP32[i32 + 4 >> 2] = 0; HEAP32[i32 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i32, 42515, 1); i29 = i30 + 4 | 0; i14 = i30 + 12 | 0; i15 = i31 + 8 | 0; i16 = i31 + 8 | 0; i23 = i32 + 11 | 0; i24 = i32 + 4 | 0; i17 = i31 + 11 | 0; i18 = i31 + 4 | 0; i22 = i30 + 32 | 0; i19 = i30 + 40 | 0; i20 = i30 + 44 | 0; i21 = i31 + 8 | 0; i7 = i28 + 1 | 0; L10 : while (1) { if ((HEAP8[i7 >> 0] | 0) == 69) { i1 = 42; break; } do if (HEAP8[i27 >> 0] | 0) { i3 = HEAP32[i14 >> 2] | 0; i1 = HEAP32[i25 >> 2] | 0; i4 = HEAP32[i19 >> 2] | 0; if (i1 >>> 0 < i4 >>> 0) { HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = i3; HEAP32[i25 >> 2] = (HEAP32[i25 >> 2] | 0) + 16; break; } i6 = HEAP32[i22 >> 2] | 0; i1 = i1 - i6 >> 4; i2 = i1 + 1 | 0; if (i2 >>> 0 > 268435455) { i1 = 13; break L10; } i12 = i4 - i6 | 0; i13 = i12 >> 3; __ZNSt3__214__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEEC2EjjSB_(i31, i12 >> 4 >>> 0 < 134217727 ? (i13 >>> 0 < i2 >>> 0 ? i2 : i13) : 268435455, i1, i20); i13 = HEAP32[i21 >> 2] | 0; HEAP32[i13 >> 2] = 0; HEAP32[i13 + 4 >> 2] = 0; HEAP32[i13 + 8 >> 2] = 0; HEAP32[i13 + 12 >> 2] = i3; HEAP32[i21 >> 2] = i13 + 16; __ZNSt3__26vectorINS0_INS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEEENS4_IS8_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS8_RS9_EE(i22, i31); __ZNSt3__214__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEED2Ev(i31); } while (0); i12 = ((HEAP32[i29 >> 2] | 0) - (HEAP32[i30 >> 2] | 0) | 0) / 24 | 0; i13 = __ZN10__cxxabiv112_GLOBAL__N_118parse_template_argINS0_2DbEEEPKcS4_S4_RT_(i7, i26, i30) | 0; i11 = ((HEAP32[i29 >> 2] | 0) - (HEAP32[i30 >> 2] | 0) | 0) / 24 | 0; L20 : do if (HEAP8[i27 >> 0] | 0) { i2 = HEAP32[i25 >> 2] | 0; i1 = i2 + -16 | 0; while (1) { if ((i2 | 0) == (i1 | 0)) break L20; i10 = i2 + -16 | 0; HEAP32[i25 >> 2] = i10; __ZNSt3__213__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i10); i2 = HEAP32[i25 >> 2] | 0; } } while (0); if ((i13 | 0) == (i7 | 0) | (i13 | 0) == (i26 | 0)) { i1 = 54; break; } L27 : do if (!(HEAP8[i27 >> 0] | 0)) i1 = i12; else { i6 = HEAP32[i25 >> 2] | 0; i8 = i6 + -16 | 0; i4 = HEAP32[i14 >> 2] | 0; i1 = i6 + -12 | 0; i2 = HEAP32[i1 >> 2] | 0; i10 = HEAP32[i6 + -8 >> 2] | 0; i7 = i10; if (i2 >>> 0 < i10 >>> 0) { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = i4; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 16; i4 = i12; } else { i3 = HEAP32[i8 >> 2] | 0; i1 = i2 - i3 >> 4; i2 = i1 + 1 | 0; if (i2 >>> 0 > 268435455) { i1 = 24; break L10; } i9 = i7 - i3 | 0; i10 = i9 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i31, i9 >> 4 >>> 0 < 134217727 ? (i10 >>> 0 < i2 >>> 0 ? i2 : i10) : 268435455, i1, i6 + -4 | 0); i10 = HEAP32[i15 >> 2] | 0; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; HEAP32[i10 + 12 >> 2] = i4; HEAP32[i15 >> 2] = i10 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i8, i31); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i31); i4 = i12; } while (1) { if (i4 >>> 0 >= i11 >>> 0) { i1 = i12; break L27; } i6 = HEAP32[(HEAP32[i25 >> 2] | 0) + -12 >> 2] | 0; i10 = i6 + -16 | 0; i7 = HEAP32[i30 >> 2] | 0; i8 = i7 + (i4 * 24 | 0) | 0; i1 = i6 + -12 | 0; i2 = HEAP32[i1 >> 2] | 0; i3 = HEAP32[i6 + -8 >> 2] | 0; i9 = i3; if ((i2 | 0) == (i3 | 0)) { i3 = HEAP32[i10 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) { i1 = 30; break L10; } i3 = (i9 - i3 | 0) / 24 | 0; i9 = i3 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i31, i3 >>> 0 < 89478485 ? (i9 >>> 0 < i2 >>> 0 ? i2 : i9) : 178956970, i1, i6 + -4 | 0); i9 = HEAP32[i16 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i9, i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i9 + 12 | 0, i7 + (i4 * 24 | 0) + 12 | 0); HEAP32[i16 >> 2] = i9 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i10, i31); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i31); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i2, i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i2 + 12 | 0, i7 + (i4 * 24 | 0) + 12 | 0); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } i4 = i4 + 1 | 0; } } while (0); while (1) { if (i1 >>> 0 >= i11 >>> 0) { i1 = i11; break; } i10 = HEAP8[i23 >> 0] | 0; if ((i10 << 24 >> 24 < 0 ? HEAP32[i24 >> 2] | 0 : i10 & 255) >>> 0 > 1) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i32, 42455) | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i31, (HEAP32[i30 >> 2] | 0) + (i1 * 24 | 0) | 0); i10 = HEAP8[i17 >> 0] | 0; i9 = i10 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i32, i9 ? HEAP32[i31 >> 2] | 0 : i31, i9 ? HEAP32[i18 >> 2] | 0 : i10 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i31); i1 = i1 + 1 | 0; } while (1) { if ((i1 | 0) == (i12 | 0)) { i7 = i13; continue L10; } i3 = HEAP32[i29 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break; i11 = i3 + -24 | 0; HEAP32[i29 >> 2] = i11; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11); i3 = HEAP32[i29 >> 2] | 0; } i1 = i1 + -1 | 0; } } if ((i1 | 0) == 13) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i22); else if ((i1 | 0) == 24) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else if ((i1 | 0) == 30) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i10); else if ((i1 | 0) == 42) { i5 = i7 + 1 | 0; i28 = HEAP8[i23 >> 0] | 0; i27 = i28 << 24 >> 24 < 0; if ((HEAP8[(i27 ? HEAP32[i32 >> 2] | 0 : i32) + (i27 ? HEAP32[i24 >> 2] | 0 : i28 & 255) + -1 >> 0] | 0) == 62) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i32, 43500) | 0; else __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i32, 42517) | 0; HEAP32[i34 >> 2] = HEAP32[i32 >> 2]; HEAP32[i34 + 4 >> 2] = HEAP32[i32 + 4 >> 2]; HEAP32[i34 + 8 >> 2] = HEAP32[i32 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i32 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i33, i34); i1 = HEAP32[i29 >> 2] | 0; i28 = HEAP32[i30 + 8 >> 2] | 0; i4 = i28; do if (i1 >>> 0 >= i28 >>> 0) { i3 = HEAP32[i30 >> 2] | 0; i1 = (i1 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i30); else { i28 = (i4 - i3 | 0) / 24 | 0; i29 = i28 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i31, i28 >>> 0 < 89478485 ? (i29 >>> 0 < i2 >>> 0 ? i2 : i29) : 178956970, i1, i30 + 12 | 0); i29 = i31 + 8 | 0; i28 = HEAP32[i29 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i28, i33); HEAP32[i29 >> 2] = i28 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i30, i31); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i31); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i1, i33); HEAP32[i29 >> 2] = (HEAP32[i29 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i33); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i34); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i32); break; } else if ((i1 | 0) == 54) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i32); i5 = i28; break; } } else i5 = i28; while (0); STACKTOP = i35; return i5 | 0; } function __ZN4wasm16PrintSExpression11visitBinaryEPNS_6BinaryE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i1 >> 2] | 0, 40) | 0; __Z12prepareColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(HEAP32[i1 >> 2] | 0) | 0; do switch (HEAP32[i2 + 8 >> 2] | 0) { case 0: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31721) | 0; break; } case 1: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31729) | 0; break; } case 2: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31737) | 0; break; } case 3: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31745) | 0; break; } case 4: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31755) | 0; break; } case 5: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31765) | 0; break; } case 6: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31775) | 0; break; } case 7: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31785) | 0; break; } case 8: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31793) | 0; break; } case 9: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31800) | 0; break; } case 10: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31808) | 0; break; } case 11: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31816) | 0; break; } case 12: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31826) | 0; break; } case 13: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31836) | 0; break; } case 14: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31845) | 0; break; } case 15: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31854) | 0; break; } case 16: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31861) | 0; break; } case 17: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31868) | 0; break; } case 18: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31877) | 0; break; } case 19: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31886) | 0; break; } case 20: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31895) | 0; break; } case 21: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31904) | 0; break; } case 22: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31913) | 0; break; } case 23: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31922) | 0; break; } case 24: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31931) | 0; break; } case 25: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31940) | 0; break; } case 26: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31948) | 0; break; } case 27: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31956) | 0; break; } case 28: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31964) | 0; break; } case 29: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31974) | 0; break; } case 30: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31984) | 0; break; } case 31: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 31994) | 0; break; } case 32: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32004) | 0; break; } case 33: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32012) | 0; break; } case 34: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32019) | 0; break; } case 35: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32027) | 0; break; } case 36: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32035) | 0; break; } case 37: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32045) | 0; break; } case 38: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32055) | 0; break; } case 39: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32064) | 0; break; } case 40: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32073) | 0; break; } case 41: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32080) | 0; break; } case 42: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32087) | 0; break; } case 43: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32096) | 0; break; } case 44: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32105) | 0; break; } case 45: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32114) | 0; break; } case 46: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32123) | 0; break; } case 47: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32132) | 0; break; } case 48: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32141) | 0; break; } case 49: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32150) | 0; break; } case 50: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32159) | 0; break; } case 51: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32167) | 0; break; } case 52: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32175) | 0; break; } case 53: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32183) | 0; break; } case 54: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32191) | 0; break; } case 55: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32204) | 0; break; } case 56: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32212) | 0; break; } case 57: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32220) | 0; break; } case 58: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32227) | 0; break; } case 59: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32234) | 0; break; } case 60: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32241) | 0; break; } case 61: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32248) | 0; break; } case 62: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32255) | 0; break; } case 63: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32262) | 0; break; } case 64: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32270) | 0; break; } case 65: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32278) | 0; break; } case 66: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32286) | 0; break; } case 67: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32294) | 0; break; } case 68: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32307) | 0; break; } case 69: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32315) | 0; break; } case 70: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32323) | 0; break; } case 71: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32330) | 0; break; } case 72: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32337) | 0; break; } case 73: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32344) | 0; break; } case 74: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32351) | 0; break; } case 75: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32358) | 0; break; } default: _abort(); } while (0); __ZN4wasm16PrintSExpression9incIndentEv(i1); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 12 >> 2] | 0); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 16 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i1); return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc(i35, i36, i37, i38, i39, i40, i41, i1) { i35 = i35 | 0; i36 = i36 | 0; i37 = i37 | 0; i38 = i38 | 0; i39 = i39 | 0; i40 = i40 | 0; i41 = i41 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i42 = 0, i43 = 0, i44 = 0; i42 = STACKTOP; STACKTOP = STACKTOP + 144 | 0; i2 = i42 + 128 | 0; i1 = i42 + 112 | 0; i33 = i42 + 124 | 0; i34 = i42 + 120 | 0; i3 = i42 + 116 | 0; i4 = i42 + 108 | 0; i5 = i42 + 104 | 0; i6 = i42 + 100 | 0; i7 = i42 + 96 | 0; i8 = i42 + 92 | 0; i9 = i42 + 88 | 0; i10 = i42 + 84 | 0; i11 = i42 + 80 | 0; i12 = i42 + 76 | 0; i13 = i42 + 72 | 0; i14 = i42 + 68 | 0; i15 = i42 + 64 | 0; i16 = i42 + 60 | 0; i17 = i42 + 56 | 0; i18 = i42 + 52 | 0; i19 = i42 + 48 | 0; i20 = i42 + 44 | 0; i21 = i42 + 40 | 0; i22 = i42 + 36 | 0; i23 = i42 + 32 | 0; i24 = i42 + 28 | 0; i25 = i42 + 24 | 0; i26 = i42 + 20 | 0; i27 = i42 + 16 | 0; i28 = i42 + 12 | 0; i29 = i42 + 8 | 0; i30 = i42 + 4 | 0; i31 = i42; HEAP32[i39 >> 2] = 0; i44 = __ZNKSt3__28ios_base6getlocEv(i38) | 0; HEAP32[i2 >> 2] = i44; i32 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47508) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i44) | 0; do switch (i41 << 24 >> 24 | 0) { case 65: case 97: { HEAP32[i33 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i33 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 24 | 0, i36, i2, i39, i32); i43 = 26; break; } case 104: case 66: case 98: { HEAP32[i34 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i34 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 16 | 0, i36, i2, i39, i32); i43 = 26; break; } case 99: { i41 = i35 + 8 | 0; i41 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i41 >> 2] | 0) + 12 >> 2] & 127](i41) | 0; HEAP32[i3 >> 2] = HEAP32[i36 >> 2]; HEAP32[i4 >> 2] = HEAP32[i37 >> 2]; i43 = HEAP8[i41 + 8 + 3 >> 0] | 0; i37 = i43 << 24 >> 24 < 0; i44 = i37 ? HEAP32[i41 >> 2] | 0 : i41; i43 = i44 + ((i37 ? HEAP32[i41 + 4 >> 2] | 0 : i43 & 255) << 2) | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; i43 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i35, i1, i2, i38, i39, i40, i44, i43) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 101: case 100: { HEAP32[i5 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 12 | 0, i36, i2, i39, i32); i43 = 26; break; } case 68: { HEAP32[i6 >> 2] = HEAP32[i36 >> 2]; HEAP32[i7 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; i43 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i35, i1, i2, i38, i39, i40, 9512, 9544) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 70: { HEAP32[i8 >> 2] = HEAP32[i36 >> 2]; HEAP32[i9 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; HEAP32[i2 >> 2] = HEAP32[i9 >> 2]; i43 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i35, i1, i2, i38, i39, i40, 9544, 9576) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 72: { HEAP32[i10 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i10 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 8 | 0, i36, i2, i39, i32); i43 = 26; break; } case 73: { HEAP32[i11 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i11 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 8 | 0, i36, i2, i39, i32); i43 = 26; break; } case 106: { HEAP32[i12 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i12 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 28 | 0, i36, i2, i39, i32); i43 = 26; break; } case 109: { HEAP32[i13 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i13 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 16 | 0, i36, i2, i39, i32); i43 = 26; break; } case 77: { HEAP32[i14 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i14 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 4 | 0, i36, i2, i39, i32); i43 = 26; break; } case 116: case 110: { HEAP32[i15 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i15 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIwEE(i35, i36, i2, i39, i32); i43 = 26; break; } case 112: { HEAP32[i16 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i16 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 8 | 0, i36, i2, i39, i32); i43 = 26; break; } case 114: { HEAP32[i17 >> 2] = HEAP32[i36 >> 2]; HEAP32[i18 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i17 >> 2]; HEAP32[i2 >> 2] = HEAP32[i18 >> 2]; i43 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i35, i1, i2, i38, i39, i40, 9576, 9620) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 82: { HEAP32[i19 >> 2] = HEAP32[i36 >> 2]; HEAP32[i20 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i19 >> 2]; HEAP32[i2 >> 2] = HEAP32[i20 >> 2]; i43 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i35, i1, i2, i38, i39, i40, 9620, 9640) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 83: { HEAP32[i21 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i21 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40, i36, i2, i39, i32); i43 = 26; break; } case 84: { HEAP32[i22 >> 2] = HEAP32[i36 >> 2]; HEAP32[i23 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i22 >> 2]; HEAP32[i2 >> 2] = HEAP32[i23 >> 2]; i43 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i35, i1, i2, i38, i39, i40, 9640, 9672) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 119: { HEAP32[i24 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i24 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 24 | 0, i36, i2, i39, i32); i43 = 26; break; } case 120: { i44 = HEAP32[(HEAP32[i35 >> 2] | 0) + 20 >> 2] | 0; HEAP32[i25 >> 2] = HEAP32[i36 >> 2]; HEAP32[i26 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i25 >> 2]; HEAP32[i2 >> 2] = HEAP32[i26 >> 2]; i1 = FUNCTION_TABLE_iiiiiii[i44 & 63](i35, i1, i2, i38, i39, i40) | 0; break; } case 88: { i41 = i35 + 8 | 0; i41 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i41 >> 2] | 0) + 24 >> 2] & 127](i41) | 0; HEAP32[i27 >> 2] = HEAP32[i36 >> 2]; HEAP32[i28 >> 2] = HEAP32[i37 >> 2]; i43 = HEAP8[i41 + 8 + 3 >> 0] | 0; i37 = i43 << 24 >> 24 < 0; i44 = i37 ? HEAP32[i41 >> 2] | 0 : i41; i43 = i44 + ((i37 ? HEAP32[i41 + 4 >> 2] | 0 : i43 & 255) << 2) | 0; HEAP32[i1 >> 2] = HEAP32[i27 >> 2]; HEAP32[i2 >> 2] = HEAP32[i28 >> 2]; i43 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i35, i1, i2, i38, i39, i40, i44, i43) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 121: { HEAP32[i29 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i29 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 20 | 0, i36, i2, i39, i32); i43 = 26; break; } case 89: { HEAP32[i30 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i30 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIwEE(i35, i40 + 20 | 0, i36, i2, i39, i32); i43 = 26; break; } case 37: { HEAP32[i31 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i31 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIwEE(i35, i36, i2, i39, i32); i43 = 26; break; } default: { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i43 = 26; } } while (0); if ((i43 | 0) == 26) i1 = HEAP32[i36 >> 2] | 0; STACKTOP = i42; return i1 | 0; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc(i35, i36, i37, i38, i39, i40, i41, i1) { i35 = i35 | 0; i36 = i36 | 0; i37 = i37 | 0; i38 = i38 | 0; i39 = i39 | 0; i40 = i40 | 0; i41 = i41 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i42 = 0, i43 = 0, i44 = 0; i42 = STACKTOP; STACKTOP = STACKTOP + 144 | 0; i2 = i42 + 128 | 0; i1 = i42 + 112 | 0; i33 = i42 + 124 | 0; i34 = i42 + 120 | 0; i3 = i42 + 116 | 0; i4 = i42 + 108 | 0; i5 = i42 + 104 | 0; i6 = i42 + 100 | 0; i7 = i42 + 96 | 0; i8 = i42 + 92 | 0; i9 = i42 + 88 | 0; i10 = i42 + 84 | 0; i11 = i42 + 80 | 0; i12 = i42 + 76 | 0; i13 = i42 + 72 | 0; i14 = i42 + 68 | 0; i15 = i42 + 64 | 0; i16 = i42 + 60 | 0; i17 = i42 + 56 | 0; i18 = i42 + 52 | 0; i19 = i42 + 48 | 0; i20 = i42 + 44 | 0; i21 = i42 + 40 | 0; i22 = i42 + 36 | 0; i23 = i42 + 32 | 0; i24 = i42 + 28 | 0; i25 = i42 + 24 | 0; i26 = i42 + 20 | 0; i27 = i42 + 16 | 0; i28 = i42 + 12 | 0; i29 = i42 + 8 | 0; i30 = i42 + 4 | 0; i31 = i42; HEAP32[i39 >> 2] = 0; i44 = __ZNKSt3__28ios_base6getlocEv(i38) | 0; HEAP32[i2 >> 2] = i44; i32 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i44) | 0; do switch (i41 << 24 >> 24 | 0) { case 65: case 97: { HEAP32[i33 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i33 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 24 | 0, i36, i2, i39, i32); i43 = 26; break; } case 104: case 66: case 98: { HEAP32[i34 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i34 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 16 | 0, i36, i2, i39, i32); i43 = 26; break; } case 99: { i41 = i35 + 8 | 0; i41 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i41 >> 2] | 0) + 12 >> 2] & 127](i41) | 0; HEAP32[i3 >> 2] = HEAP32[i36 >> 2]; HEAP32[i4 >> 2] = HEAP32[i37 >> 2]; i43 = HEAP8[i41 + 11 >> 0] | 0; i37 = i43 << 24 >> 24 < 0; i44 = i37 ? HEAP32[i41 >> 2] | 0 : i41; i43 = i44 + (i37 ? HEAP32[i41 + 4 >> 2] | 0 : i43 & 255) | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; i43 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i35, i1, i2, i38, i39, i40, i44, i43) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 101: case 100: { HEAP32[i5 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 12 | 0, i36, i2, i39, i32); i43 = 26; break; } case 68: { HEAP32[i6 >> 2] = HEAP32[i36 >> 2]; HEAP32[i7 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; i43 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i35, i1, i2, i38, i39, i40, 39553, 39561) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 70: { HEAP32[i8 >> 2] = HEAP32[i36 >> 2]; HEAP32[i9 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; HEAP32[i2 >> 2] = HEAP32[i9 >> 2]; i43 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i35, i1, i2, i38, i39, i40, 39561, 39569) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 72: { HEAP32[i10 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i10 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 8 | 0, i36, i2, i39, i32); i43 = 26; break; } case 73: { HEAP32[i11 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i11 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 8 | 0, i36, i2, i39, i32); i43 = 26; break; } case 106: { HEAP32[i12 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i12 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 28 | 0, i36, i2, i39, i32); i43 = 26; break; } case 109: { HEAP32[i13 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i13 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 16 | 0, i36, i2, i39, i32); i43 = 26; break; } case 77: { HEAP32[i14 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i14 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 4 | 0, i36, i2, i39, i32); i43 = 26; break; } case 116: case 110: { HEAP32[i15 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i15 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIcEE(i35, i36, i2, i39, i32); i43 = 26; break; } case 112: { HEAP32[i16 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i16 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 8 | 0, i36, i2, i39, i32); i43 = 26; break; } case 114: { HEAP32[i17 >> 2] = HEAP32[i36 >> 2]; HEAP32[i18 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i17 >> 2]; HEAP32[i2 >> 2] = HEAP32[i18 >> 2]; i43 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i35, i1, i2, i38, i39, i40, 39569, 39580) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 82: { HEAP32[i19 >> 2] = HEAP32[i36 >> 2]; HEAP32[i20 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i19 >> 2]; HEAP32[i2 >> 2] = HEAP32[i20 >> 2]; i43 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i35, i1, i2, i38, i39, i40, 39580, 39585) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 83: { HEAP32[i21 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i21 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40, i36, i2, i39, i32); i43 = 26; break; } case 84: { HEAP32[i22 >> 2] = HEAP32[i36 >> 2]; HEAP32[i23 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i22 >> 2]; HEAP32[i2 >> 2] = HEAP32[i23 >> 2]; i43 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i35, i1, i2, i38, i39, i40, 39585, 39593) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 119: { HEAP32[i24 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i24 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 24 | 0, i36, i2, i39, i32); i43 = 26; break; } case 120: { i44 = HEAP32[(HEAP32[i35 >> 2] | 0) + 20 >> 2] | 0; HEAP32[i25 >> 2] = HEAP32[i36 >> 2]; HEAP32[i26 >> 2] = HEAP32[i37 >> 2]; HEAP32[i1 >> 2] = HEAP32[i25 >> 2]; HEAP32[i2 >> 2] = HEAP32[i26 >> 2]; i1 = FUNCTION_TABLE_iiiiiii[i44 & 63](i35, i1, i2, i38, i39, i40) | 0; break; } case 88: { i41 = i35 + 8 | 0; i41 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i41 >> 2] | 0) + 24 >> 2] & 127](i41) | 0; HEAP32[i27 >> 2] = HEAP32[i36 >> 2]; HEAP32[i28 >> 2] = HEAP32[i37 >> 2]; i43 = HEAP8[i41 + 11 >> 0] | 0; i37 = i43 << 24 >> 24 < 0; i44 = i37 ? HEAP32[i41 >> 2] | 0 : i41; i43 = i44 + (i37 ? HEAP32[i41 + 4 >> 2] | 0 : i43 & 255) | 0; HEAP32[i1 >> 2] = HEAP32[i27 >> 2]; HEAP32[i2 >> 2] = HEAP32[i28 >> 2]; i43 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i35, i1, i2, i38, i39, i40, i44, i43) | 0; HEAP32[i36 >> 2] = i43; i43 = 26; break; } case 121: { HEAP32[i29 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i29 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 20 | 0, i36, i2, i39, i32); i43 = 26; break; } case 89: { HEAP32[i30 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i30 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIcEE(i35, i40 + 20 | 0, i36, i2, i39, i32); i43 = 26; break; } case 37: { HEAP32[i31 >> 2] = HEAP32[i37 >> 2]; HEAP32[i2 >> 2] = HEAP32[i31 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIcEE(i35, i36, i2, i39, i32); i43 = 26; break; } default: { HEAP32[i39 >> 2] = HEAP32[i39 >> 2] | 4; i43 = 26; } } while (0); if ((i43 | 0) == 26) i1 = HEAP32[i36 >> 2] | 0; STACKTOP = i42; return i1 | 0; } function _free(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; if (!i1) return; i3 = i1 + -8 | 0; i7 = HEAP32[11487] | 0; if (i3 >>> 0 < i7 >>> 0) _abort(); i1 = HEAP32[i1 + -4 >> 2] | 0; i2 = i1 & 3; if ((i2 | 0) == 1) _abort(); i4 = i1 & -8; i13 = i3 + i4 | 0; do if (!(i1 & 1)) { i1 = HEAP32[i3 >> 2] | 0; if (!i2) return; i10 = i3 + (0 - i1) | 0; i9 = i1 + i4 | 0; if (i10 >>> 0 < i7 >>> 0) _abort(); if ((i10 | 0) == (HEAP32[11488] | 0)) { i1 = i13 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 & 3 | 0) != 3) { i16 = i10; i5 = i9; break; } HEAP32[11485] = i9; HEAP32[i1 >> 2] = i2 & -2; HEAP32[i10 + 4 >> 2] = i9 | 1; HEAP32[i10 + i9 >> 2] = i9; return; } i4 = i1 >>> 3; if (i1 >>> 0 < 256) { i2 = HEAP32[i10 + 8 >> 2] | 0; i3 = HEAP32[i10 + 12 >> 2] | 0; i1 = 45972 + (i4 << 1 << 2) | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 >>> 0 < i7 >>> 0) _abort(); if ((HEAP32[i2 + 12 >> 2] | 0) != (i10 | 0)) _abort(); } if ((i3 | 0) == (i2 | 0)) { HEAP32[11483] = HEAP32[11483] & ~(1 << i4); i16 = i10; i5 = i9; break; } if ((i3 | 0) != (i1 | 0)) { if (i3 >>> 0 < i7 >>> 0) _abort(); i1 = i3 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == (i10 | 0)) i6 = i1; else _abort(); } else i6 = i3 + 8 | 0; HEAP32[i2 + 12 >> 2] = i3; HEAP32[i6 >> 2] = i2; i16 = i10; i5 = i9; break; } i6 = HEAP32[i10 + 24 >> 2] | 0; i3 = HEAP32[i10 + 12 >> 2] | 0; do if ((i3 | 0) == (i10 | 0)) { i3 = i10 + 16 | 0; i2 = i3 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i8 = 0; break; } else i2 = i3; } while (1) { i3 = i1 + 20 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 | 0) { i1 = i4; i2 = i3; continue; } i3 = i1 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; if (!i4) break; else { i1 = i4; i2 = i3; } } if (i2 >>> 0 < i7 >>> 0) _abort(); else { HEAP32[i2 >> 2] = 0; i8 = i1; break; } } else { i4 = HEAP32[i10 + 8 >> 2] | 0; if (i4 >>> 0 < i7 >>> 0) _abort(); i1 = i4 + 12 | 0; if ((HEAP32[i1 >> 2] | 0) != (i10 | 0)) _abort(); i2 = i3 + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == (i10 | 0)) { HEAP32[i1 >> 2] = i3; HEAP32[i2 >> 2] = i4; i8 = i3; break; } else _abort(); } while (0); if (i6) { i1 = HEAP32[i10 + 28 >> 2] | 0; i2 = 46236 + (i1 << 2) | 0; if ((i10 | 0) == (HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = i8; if (!i8) { HEAP32[11484] = HEAP32[11484] & ~(1 << i1); i16 = i10; i5 = i9; break; } } else { if (i6 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i6 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) == (i10 | 0)) HEAP32[i1 >> 2] = i8; else HEAP32[i6 + 20 >> 2] = i8; if (!i8) { i16 = i10; i5 = i9; break; } } i3 = HEAP32[11487] | 0; if (i8 >>> 0 < i3 >>> 0) _abort(); HEAP32[i8 + 24 >> 2] = i6; i1 = i10 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else { HEAP32[i8 + 16 >> 2] = i2; HEAP32[i2 + 24 >> 2] = i8; break; } while (0); i1 = HEAP32[i1 + 4 >> 2] | 0; if (i1) if (i1 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i8 + 20 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i8; i16 = i10; i5 = i9; break; } else { i16 = i10; i5 = i9; } } else { i16 = i10; i5 = i9; } } else { i16 = i3; i5 = i4; } while (0); if (i16 >>> 0 >= i13 >>> 0) _abort(); i1 = i13 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; if (!(i2 & 1)) _abort(); if (!(i2 & 2)) { if ((i13 | 0) == (HEAP32[11489] | 0)) { i15 = (HEAP32[11486] | 0) + i5 | 0; HEAP32[11486] = i15; HEAP32[11489] = i16; HEAP32[i16 + 4 >> 2] = i15 | 1; if ((i16 | 0) != (HEAP32[11488] | 0)) return; HEAP32[11488] = 0; HEAP32[11485] = 0; return; } if ((i13 | 0) == (HEAP32[11488] | 0)) { i15 = (HEAP32[11485] | 0) + i5 | 0; HEAP32[11485] = i15; HEAP32[11488] = i16; HEAP32[i16 + 4 >> 2] = i15 | 1; HEAP32[i16 + i15 >> 2] = i15; return; } i5 = (i2 & -8) + i5 | 0; i4 = i2 >>> 3; do if (i2 >>> 0 >= 256) { i6 = HEAP32[i13 + 24 >> 2] | 0; i1 = HEAP32[i13 + 12 >> 2] | 0; do if ((i1 | 0) == (i13 | 0)) { i3 = i13 + 16 | 0; i2 = i3 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i12 = 0; break; } else i2 = i3; } while (1) { i3 = i1 + 20 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 | 0) { i1 = i4; i2 = i3; continue; } i3 = i1 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; if (!i4) break; else { i1 = i4; i2 = i3; } } if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i2 >> 2] = 0; i12 = i1; break; } } else { i2 = HEAP32[i13 + 8 >> 2] | 0; if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i3 = i2 + 12 | 0; if ((HEAP32[i3 >> 2] | 0) != (i13 | 0)) _abort(); i4 = i1 + 8 | 0; if ((HEAP32[i4 >> 2] | 0) == (i13 | 0)) { HEAP32[i3 >> 2] = i1; HEAP32[i4 >> 2] = i2; i12 = i1; break; } else _abort(); } while (0); if (i6 | 0) { i1 = HEAP32[i13 + 28 >> 2] | 0; i2 = 46236 + (i1 << 2) | 0; if ((i13 | 0) == (HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = i12; if (!i12) { HEAP32[11484] = HEAP32[11484] & ~(1 << i1); break; } } else { if (i6 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i6 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) == (i13 | 0)) HEAP32[i1 >> 2] = i12; else HEAP32[i6 + 20 >> 2] = i12; if (!i12) break; } i3 = HEAP32[11487] | 0; if (i12 >>> 0 < i3 >>> 0) _abort(); HEAP32[i12 + 24 >> 2] = i6; i1 = i13 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else { HEAP32[i12 + 16 >> 2] = i2; HEAP32[i2 + 24 >> 2] = i12; break; } while (0); i1 = HEAP32[i1 + 4 >> 2] | 0; if (i1 | 0) if (i1 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i12 + 20 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i12; break; } } } else { i2 = HEAP32[i13 + 8 >> 2] | 0; i3 = HEAP32[i13 + 12 >> 2] | 0; i1 = 45972 + (i4 << 1 << 2) | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); if ((HEAP32[i2 + 12 >> 2] | 0) != (i13 | 0)) _abort(); } if ((i3 | 0) == (i2 | 0)) { HEAP32[11483] = HEAP32[11483] & ~(1 << i4); break; } if ((i3 | 0) != (i1 | 0)) { if (i3 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i3 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == (i13 | 0)) i11 = i1; else _abort(); } else i11 = i3 + 8 | 0; HEAP32[i2 + 12 >> 2] = i3; HEAP32[i11 >> 2] = i2; } while (0); HEAP32[i16 + 4 >> 2] = i5 | 1; HEAP32[i16 + i5 >> 2] = i5; if ((i16 | 0) == (HEAP32[11488] | 0)) { HEAP32[11485] = i5; return; } } else { HEAP32[i1 >> 2] = i2 & -2; HEAP32[i16 + 4 >> 2] = i5 | 1; HEAP32[i16 + i5 >> 2] = i5; } i1 = i5 >>> 3; if (i5 >>> 0 < 256) { i3 = 45972 + (i1 << 1 << 2) | 0; i2 = HEAP32[11483] | 0; i1 = 1 << i1; if (i2 & i1) { i1 = i3 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { i14 = i2; i15 = i1; } } else { HEAP32[11483] = i2 | i1; i14 = i3; i15 = i3 + 8 | 0; } HEAP32[i15 >> 2] = i16; HEAP32[i14 + 12 >> 2] = i16; HEAP32[i16 + 8 >> 2] = i14; HEAP32[i16 + 12 >> 2] = i3; return; } i1 = i5 >>> 8; if (i1) if (i5 >>> 0 > 16777215) i1 = 31; else { i14 = (i1 + 1048320 | 0) >>> 16 & 8; i15 = i1 << i14; i13 = (i15 + 520192 | 0) >>> 16 & 4; i15 = i15 << i13; i1 = (i15 + 245760 | 0) >>> 16 & 2; i1 = 14 - (i13 | i14 | i1) + (i15 << i1 >>> 15) | 0; i1 = i5 >>> (i1 + 7 | 0) & 1 | i1 << 1; } else i1 = 0; i4 = 46236 + (i1 << 2) | 0; HEAP32[i16 + 28 >> 2] = i1; HEAP32[i16 + 20 >> 2] = 0; HEAP32[i16 + 16 >> 2] = 0; i2 = HEAP32[11484] | 0; i3 = 1 << i1; do if (i2 & i3) { i2 = i5 << ((i1 | 0) == 31 ? 0 : 25 - (i1 >>> 1) | 0); i4 = HEAP32[i4 >> 2] | 0; while (1) { if ((HEAP32[i4 + 4 >> 2] & -8 | 0) == (i5 | 0)) { i1 = 130; break; } i3 = i4 + 16 + (i2 >>> 31 << 2) | 0; i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i1 = 127; break; } else { i2 = i2 << 1; i4 = i1; } } if ((i1 | 0) == 127) if (i3 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i3 >> 2] = i16; HEAP32[i16 + 24 >> 2] = i4; HEAP32[i16 + 12 >> 2] = i16; HEAP32[i16 + 8 >> 2] = i16; break; } else if ((i1 | 0) == 130) { i1 = i4 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; i15 = HEAP32[11487] | 0; if (i2 >>> 0 >= i15 >>> 0 & i4 >>> 0 >= i15 >>> 0) { HEAP32[i2 + 12 >> 2] = i16; HEAP32[i1 >> 2] = i16; HEAP32[i16 + 8 >> 2] = i2; HEAP32[i16 + 12 >> 2] = i4; HEAP32[i16 + 24 >> 2] = 0; break; } else _abort(); } } else { HEAP32[11484] = i2 | i3; HEAP32[i4 >> 2] = i16; HEAP32[i16 + 24 >> 2] = i4; HEAP32[i16 + 12 >> 2] = i16; HEAP32[i16 + 8 >> 2] = i16; } while (0); i16 = (HEAP32[11491] | 0) + -1 | 0; HEAP32[11491] = i16; if (!i16) i1 = 46388; else return; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) break; else i1 = i1 + 8 | 0; } HEAP32[11491] = -1; return; } function __ZN4wasm17WasmBinaryBuilder15maybeVisitUnaryERPNS_10ExpressionEh(i2, i3, i1) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i6; do switch (i1 << 24 >> 24) { case 87: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case 114: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 1; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case 88: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 2; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case 115: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 3; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case 89: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 4; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case 116: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 5; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case 90: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 20; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case -70: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 21; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case 124: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 6; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -112: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 7; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case 123: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 8; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -113: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 9; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case 126: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 10; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -110: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 11; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case 127: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 12; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -109: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 13; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -127: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 16; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -107: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 17; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -126: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 18; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -106: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 19; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -87: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 37; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -81: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 38; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -88: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 35; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -82: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 36; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -85: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 41; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -79: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 42; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -86: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 39; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -80: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 40; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -90: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 22; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case -89: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 23; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case -95: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 24; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case -97: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 27; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case -96: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 31; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case -99: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 25; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case -98: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 29; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case -92: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 28; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case -91: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 32; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case -94: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 26; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case -93: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 30; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case -128: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 14; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -108: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 15; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -84: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 44; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -78: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 43; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } case -76: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 33; HEAP32[i1 + 4 >> 2] = 1; i5 = 49; break; } case -75: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 34; HEAP32[i1 + 4 >> 2] = 2; i5 = 49; break; } case -83: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 45; HEAP32[i1 + 4 >> 2] = 3; i5 = 49; break; } case -77: { i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 46; HEAP32[i1 + 4 >> 2] = 4; i5 = 49; break; } default: i1 = 0; } while (0); if ((i5 | 0) == 49) { if (HEAP8[i2 + 12 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20777) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i7 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i2) | 0; HEAP32[i1 + 12 >> 2] = i7; HEAP32[i3 >> 2] = i1; i1 = 1; } STACKTOP = i6; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i1, i13, i17) { i1 = i1 | 0; i13 = i13 | 0; i17 = i17 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0, i16 = 0, i18 = 0, i19 = 0, i20 = 0; i20 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i18 = i20 + 36 | 0; i19 = i20; i16 = i20 + 24 | 0; i15 = i1; L1 : do if ((i13 - i15 | 0) > 1 ? (HEAP8[i1 >> 0] | 0) == 84 : 0) { i12 = HEAP8[i1 + 1 >> 0] | 0; if (i12 << 24 >> 24 == 95) { i2 = HEAP32[i17 + 36 >> 2] | 0; if ((HEAP32[i17 + 32 >> 2] | 0) == (i2 | 0)) break; i3 = HEAP32[i2 + -16 >> 2] | 0; if ((i3 | 0) != (HEAP32[i2 + -12 >> 2] | 0)) { i7 = HEAP32[i3 + 4 >> 2] | 0; i8 = i17 + 4 | 0; i9 = i17 + 8 | 0; i10 = i17 + 12 | 0; i11 = i18 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i7 | 0)) { i2 = 8; break; } i2 = HEAP32[i8 >> 2] | 0; i6 = HEAP32[i9 >> 2] | 0; i5 = i6; if ((i2 | 0) == (i6 | 0)) { i6 = HEAP32[i17 >> 2] | 0; i2 = (i2 - i6 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) { i2 = 12; break; } i5 = (i5 - i6 | 0) / 24 | 0; i6 = i5 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i18, i5 >>> 0 < 89478485 ? (i6 >>> 0 < i3 >>> 0 ? i3 : i6) : 178956970, i2, i10); i6 = HEAP32[i11 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i6, i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i6 + 12 | 0, i4 + 12 | 0); HEAP32[i11 >> 2] = i6 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i17, i18); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i18); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i2, i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i2 + 12 | 0, i4 + 12 | 0); HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 24; } i4 = i4 + 24 | 0; } if ((i2 | 0) == 8) { i1 = i1 + 2 | 0; break; } else if ((i2 | 0) == 12) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i17); } else { HEAP32[i19 >> 2] = 0; HEAP32[i19 + 4 >> 2] = 0; HEAP32[i19 + 8 >> 2] = 0; HEAP8[i19 + 11 >> 0] = 2; HEAP16[i19 >> 1] = 24404; HEAP8[i19 + 2 >> 0] = 0; i3 = i19 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i2 = i17 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i16 = HEAP32[i17 + 8 >> 2] | 0; i5 = i16; do if (i3 >>> 0 >= i16 >>> 0) { i4 = HEAP32[i17 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i17); else { i15 = (i5 - i4 | 0) / 24 | 0; i16 = i15 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i18, i15 >>> 0 < 89478485 ? (i16 >>> 0 < i3 >>> 0 ? i3 : i16) : 178956970, i2, i17 + 12 | 0); i16 = i18 + 8 | 0; i15 = HEAP32[i16 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i15, i19); HEAP32[i16 >> 2] = i15 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i17, i18); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i18); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i19); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i19); HEAP8[i17 + 62 >> 0] = 1; i1 = i1 + 2 | 0; break; } } i2 = (i12 << 24 >> 24) + -48 | 0; if (i2 >>> 0 < 10) { i12 = i1 + 2 | 0; while (1) { if ((i12 | 0) == (i13 | 0)) break L1; i3 = HEAP8[i12 >> 0] | 0; i4 = (i3 << 24 >> 24) + -48 | 0; if (i4 >>> 0 >= 10) break; i2 = i4 + (i2 * 10 | 0) | 0; i12 = i12 + 1 | 0; } if (i3 << 24 >> 24 == 95 ? (i14 = HEAP32[i17 + 36 >> 2] | 0, (HEAP32[i17 + 32 >> 2] | 0) != (i14 | 0)) : 0) { i2 = i2 + 1 | 0; i13 = HEAP32[i14 + -16 >> 2] | 0; i3 = i13; if (i2 >>> 0 < (HEAP32[i14 + -12 >> 2] | 0) - i13 >> 4 >>> 0) { i7 = HEAP32[i3 + (i2 << 4) + 4 >> 2] | 0; i8 = i17 + 4 | 0; i9 = i17 + 8 | 0; i10 = i17 + 12 | 0; i11 = i18 + 8 | 0; i4 = HEAP32[i3 + (i2 << 4) >> 2] | 0; while (1) { if ((i4 | 0) == (i7 | 0)) { i2 = 34; break; } i2 = HEAP32[i8 >> 2] | 0; i14 = HEAP32[i9 >> 2] | 0; i5 = i14; if ((i2 | 0) == (i14 | 0)) { i6 = HEAP32[i17 >> 2] | 0; i2 = (i2 - i6 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) { i2 = 38; break; } i13 = (i5 - i6 | 0) / 24 | 0; i14 = i13 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i18, i13 >>> 0 < 89478485 ? (i14 >>> 0 < i3 >>> 0 ? i3 : i14) : 178956970, i2, i10); i14 = HEAP32[i11 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i14, i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i14 + 12 | 0, i4 + 12 | 0); HEAP32[i11 >> 2] = i14 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i17, i18); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i18); } else { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i2, i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i2 + 12 | 0, i4 + 12 | 0); HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 24; } i4 = i4 + 24 | 0; } if ((i2 | 0) == 34) { i1 = i12 + 1 | 0; break; } else if ((i2 | 0) == 38) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i17); } i5 = i12 + 1 | 0; HEAP32[i16 >> 2] = 0; HEAP32[i16 + 4 >> 2] = 0; HEAP32[i16 + 8 >> 2] = 0; i4 = i5 - i15 | 0; if (i4 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i16); if (i4 >>> 0 < 11) { HEAP8[i16 + 11 >> 0] = i4; i3 = i16; } else { i15 = i4 + 16 & -16; i3 = _malloc(i15) | 0; HEAP32[i16 >> 2] = i3; HEAP32[i16 + 8 >> 2] = i15 | -2147483648; HEAP32[i16 + 4 >> 2] = i4; } i2 = i3; while (1) { if ((i1 | 0) == (i5 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } HEAP8[i3 + i4 >> 0] = 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i19, i16); i1 = i17 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i15 = HEAP32[i17 + 8 >> 2] | 0; i4 = i15; do if (i2 >>> 0 >= i15 >>> 0) { i3 = HEAP32[i17 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i17); else { i14 = (i4 - i3 | 0) / 24 | 0; i15 = i14 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i18, i14 >>> 0 < 89478485 ? (i15 >>> 0 < i2 >>> 0 ? i2 : i15) : 178956970, i1, i17 + 12 | 0); i15 = i18 + 8 | 0; i14 = HEAP32[i15 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i14, i19); HEAP32[i15 >> 2] = i14 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i17, i18); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i18); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i19); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i19); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16); HEAP8[i17 + 62 >> 0] = 1; i1 = i5; } } } while (0); STACKTOP = i20; return i1 | 0; } function _dispose_chunk(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0; i14 = i1 + i3 | 0; i2 = HEAP32[i1 + 4 >> 2] | 0; do if (!(i2 & 1)) { i6 = HEAP32[i1 >> 2] | 0; if (!(i2 & 3)) return; i11 = i1 + (0 - i6) | 0; i10 = i6 + i3 | 0; i8 = HEAP32[11487] | 0; if (i11 >>> 0 < i8 >>> 0) _abort(); if ((i11 | 0) == (HEAP32[11488] | 0)) { i1 = i14 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 & 3 | 0) != 3) { i17 = i11; i5 = i10; break; } HEAP32[11485] = i10; HEAP32[i1 >> 2] = i2 & -2; HEAP32[i11 + 4 >> 2] = i10 | 1; HEAP32[i11 + i10 >> 2] = i10; return; } i4 = i6 >>> 3; if (i6 >>> 0 < 256) { i2 = HEAP32[i11 + 8 >> 2] | 0; i3 = HEAP32[i11 + 12 >> 2] | 0; i1 = 45972 + (i4 << 1 << 2) | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 >>> 0 < i8 >>> 0) _abort(); if ((HEAP32[i2 + 12 >> 2] | 0) != (i11 | 0)) _abort(); } if ((i3 | 0) == (i2 | 0)) { HEAP32[11483] = HEAP32[11483] & ~(1 << i4); i17 = i11; i5 = i10; break; } if ((i3 | 0) != (i1 | 0)) { if (i3 >>> 0 < i8 >>> 0) _abort(); i1 = i3 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == (i11 | 0)) i7 = i1; else _abort(); } else i7 = i3 + 8 | 0; HEAP32[i2 + 12 >> 2] = i3; HEAP32[i7 >> 2] = i2; i17 = i11; i5 = i10; break; } i6 = HEAP32[i11 + 24 >> 2] | 0; i3 = HEAP32[i11 + 12 >> 2] | 0; do if ((i3 | 0) == (i11 | 0)) { i3 = i11 + 16 | 0; i2 = i3 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i9 = 0; break; } else i2 = i3; } while (1) { i3 = i1 + 20 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 | 0) { i1 = i4; i2 = i3; continue; } i3 = i1 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; if (!i4) break; else { i1 = i4; i2 = i3; } } if (i2 >>> 0 < i8 >>> 0) _abort(); else { HEAP32[i2 >> 2] = 0; i9 = i1; break; } } else { i4 = HEAP32[i11 + 8 >> 2] | 0; if (i4 >>> 0 < i8 >>> 0) _abort(); i1 = i4 + 12 | 0; if ((HEAP32[i1 >> 2] | 0) != (i11 | 0)) _abort(); i2 = i3 + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == (i11 | 0)) { HEAP32[i1 >> 2] = i3; HEAP32[i2 >> 2] = i4; i9 = i3; break; } else _abort(); } while (0); if (i6) { i1 = HEAP32[i11 + 28 >> 2] | 0; i2 = 46236 + (i1 << 2) | 0; if ((i11 | 0) == (HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = i9; if (!i9) { HEAP32[11484] = HEAP32[11484] & ~(1 << i1); i17 = i11; i5 = i10; break; } } else { if (i6 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i6 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) == (i11 | 0)) HEAP32[i1 >> 2] = i9; else HEAP32[i6 + 20 >> 2] = i9; if (!i9) { i17 = i11; i5 = i10; break; } } i3 = HEAP32[11487] | 0; if (i9 >>> 0 < i3 >>> 0) _abort(); HEAP32[i9 + 24 >> 2] = i6; i1 = i11 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else { HEAP32[i9 + 16 >> 2] = i2; HEAP32[i2 + 24 >> 2] = i9; break; } while (0); i1 = HEAP32[i1 + 4 >> 2] | 0; if (i1) if (i1 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i9 + 20 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i9; i17 = i11; i5 = i10; break; } else { i17 = i11; i5 = i10; } } else { i17 = i11; i5 = i10; } } else { i17 = i1; i5 = i3; } while (0); i7 = HEAP32[11487] | 0; if (i14 >>> 0 < i7 >>> 0) _abort(); i1 = i14 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; if (!(i2 & 2)) { if ((i14 | 0) == (HEAP32[11489] | 0)) { i16 = (HEAP32[11486] | 0) + i5 | 0; HEAP32[11486] = i16; HEAP32[11489] = i17; HEAP32[i17 + 4 >> 2] = i16 | 1; if ((i17 | 0) != (HEAP32[11488] | 0)) return; HEAP32[11488] = 0; HEAP32[11485] = 0; return; } if ((i14 | 0) == (HEAP32[11488] | 0)) { i16 = (HEAP32[11485] | 0) + i5 | 0; HEAP32[11485] = i16; HEAP32[11488] = i17; HEAP32[i17 + 4 >> 2] = i16 | 1; HEAP32[i17 + i16 >> 2] = i16; return; } i5 = (i2 & -8) + i5 | 0; i4 = i2 >>> 3; do if (i2 >>> 0 >= 256) { i6 = HEAP32[i14 + 24 >> 2] | 0; i3 = HEAP32[i14 + 12 >> 2] | 0; do if ((i3 | 0) == (i14 | 0)) { i3 = i14 + 16 | 0; i2 = i3 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i13 = 0; break; } else i2 = i3; } while (1) { i3 = i1 + 20 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 | 0) { i1 = i4; i2 = i3; continue; } i3 = i1 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; if (!i4) break; else { i1 = i4; i2 = i3; } } if (i2 >>> 0 < i7 >>> 0) _abort(); else { HEAP32[i2 >> 2] = 0; i13 = i1; break; } } else { i4 = HEAP32[i14 + 8 >> 2] | 0; if (i4 >>> 0 < i7 >>> 0) _abort(); i1 = i4 + 12 | 0; if ((HEAP32[i1 >> 2] | 0) != (i14 | 0)) _abort(); i2 = i3 + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == (i14 | 0)) { HEAP32[i1 >> 2] = i3; HEAP32[i2 >> 2] = i4; i13 = i3; break; } else _abort(); } while (0); if (i6 | 0) { i1 = HEAP32[i14 + 28 >> 2] | 0; i2 = 46236 + (i1 << 2) | 0; if ((i14 | 0) == (HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = i13; if (!i13) { HEAP32[11484] = HEAP32[11484] & ~(1 << i1); break; } } else { if (i6 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i6 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) == (i14 | 0)) HEAP32[i1 >> 2] = i13; else HEAP32[i6 + 20 >> 2] = i13; if (!i13) break; } i3 = HEAP32[11487] | 0; if (i13 >>> 0 < i3 >>> 0) _abort(); HEAP32[i13 + 24 >> 2] = i6; i1 = i14 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else { HEAP32[i13 + 16 >> 2] = i2; HEAP32[i2 + 24 >> 2] = i13; break; } while (0); i1 = HEAP32[i1 + 4 >> 2] | 0; if (i1 | 0) if (i1 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i13 + 20 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i13; break; } } } else { i2 = HEAP32[i14 + 8 >> 2] | 0; i3 = HEAP32[i14 + 12 >> 2] | 0; i1 = 45972 + (i4 << 1 << 2) | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 >>> 0 < i7 >>> 0) _abort(); if ((HEAP32[i2 + 12 >> 2] | 0) != (i14 | 0)) _abort(); } if ((i3 | 0) == (i2 | 0)) { HEAP32[11483] = HEAP32[11483] & ~(1 << i4); break; } if ((i3 | 0) != (i1 | 0)) { if (i3 >>> 0 < i7 >>> 0) _abort(); i1 = i3 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == (i14 | 0)) i12 = i1; else _abort(); } else i12 = i3 + 8 | 0; HEAP32[i2 + 12 >> 2] = i3; HEAP32[i12 >> 2] = i2; } while (0); HEAP32[i17 + 4 >> 2] = i5 | 1; HEAP32[i17 + i5 >> 2] = i5; if ((i17 | 0) == (HEAP32[11488] | 0)) { HEAP32[11485] = i5; return; } } else { HEAP32[i1 >> 2] = i2 & -2; HEAP32[i17 + 4 >> 2] = i5 | 1; HEAP32[i17 + i5 >> 2] = i5; } i1 = i5 >>> 3; if (i5 >>> 0 < 256) { i3 = 45972 + (i1 << 1 << 2) | 0; i2 = HEAP32[11483] | 0; i1 = 1 << i1; if (i2 & i1) { i1 = i3 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { i15 = i2; i16 = i1; } } else { HEAP32[11483] = i2 | i1; i15 = i3; i16 = i3 + 8 | 0; } HEAP32[i16 >> 2] = i17; HEAP32[i15 + 12 >> 2] = i17; HEAP32[i17 + 8 >> 2] = i15; HEAP32[i17 + 12 >> 2] = i3; return; } i1 = i5 >>> 8; if (i1) if (i5 >>> 0 > 16777215) i1 = 31; else { i15 = (i1 + 1048320 | 0) >>> 16 & 8; i16 = i1 << i15; i14 = (i16 + 520192 | 0) >>> 16 & 4; i16 = i16 << i14; i1 = (i16 + 245760 | 0) >>> 16 & 2; i1 = 14 - (i14 | i15 | i1) + (i16 << i1 >>> 15) | 0; i1 = i5 >>> (i1 + 7 | 0) & 1 | i1 << 1; } else i1 = 0; i4 = 46236 + (i1 << 2) | 0; HEAP32[i17 + 28 >> 2] = i1; HEAP32[i17 + 20 >> 2] = 0; HEAP32[i17 + 16 >> 2] = 0; i2 = HEAP32[11484] | 0; i3 = 1 << i1; if (!(i2 & i3)) { HEAP32[11484] = i2 | i3; HEAP32[i4 >> 2] = i17; HEAP32[i17 + 24 >> 2] = i4; HEAP32[i17 + 12 >> 2] = i17; HEAP32[i17 + 8 >> 2] = i17; return; } i2 = i5 << ((i1 | 0) == 31 ? 0 : 25 - (i1 >>> 1) | 0); i4 = HEAP32[i4 >> 2] | 0; while (1) { if ((HEAP32[i4 + 4 >> 2] & -8 | 0) == (i5 | 0)) { i1 = 127; break; } i3 = i4 + 16 + (i2 >>> 31 << 2) | 0; i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i1 = 124; break; } else { i2 = i2 << 1; i4 = i1; } } if ((i1 | 0) == 124) { if (i3 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); HEAP32[i3 >> 2] = i17; HEAP32[i17 + 24 >> 2] = i4; HEAP32[i17 + 12 >> 2] = i17; HEAP32[i17 + 8 >> 2] = i17; return; } else if ((i1 | 0) == 127) { i1 = i4 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; i16 = HEAP32[11487] | 0; if (!(i2 >>> 0 >= i16 >>> 0 & i4 >>> 0 >= i16 >>> 0)) _abort(); HEAP32[i2 + 12 >> 2] = i17; HEAP32[i1 >> 2] = i17; HEAP32[i17 + 8 >> 2] = i2; HEAP32[i17 + 12 >> 2] = i4; HEAP32[i17 + 24 >> 2] = 0; return; } } function __ZN4wasm16PrintSExpression11visitModuleEPNS_6ModuleE(i16, i15) { i16 = i16 | 0; i15 = i15 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i12 = i19 + 8 | 0; i13 = i19; i17 = i16 + 24 | 0; HEAP32[i17 >> 2] = i15; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i16 >> 2] | 0, 35096, 1) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i16); i18 = i16 + 4 | 0; __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i16 >> 2] | 0, 34986, 0) | 0, 32) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i1, HEAP32[i15 + 72 >> 2] | 0) | 0; i1 = i15 + 76 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) < 65535) switch (i2 | 0) { case 0: break; default: i3 = 2; } else switch (i2 | 0) { case 65535: break; default: i3 = 2; } if ((i3 | 0) == 2) { i14 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i16 >> 2] | 0, 32) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i14, HEAP32[i1 >> 2] | 0) | 0; } i5 = i15 + 80 | 0; i6 = i15 + 84 | 0; i7 = HEAP32[i6 >> 2] | 0; i14 = i16 + 16 | 0; i8 = i16 + 8 | 0; i9 = i12 + 4 | 0; i10 = i12 + 8 | 0; i11 = i12 + 4 | 0; i4 = HEAP32[i5 >> 2] | 0; while (1) { if ((i4 | 0) == (i7 | 0)) break; __ZN4wasm6Memory7SegmentC2ERKS1_(i12, i4); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP8[i8 >> 0] | 0 ? 53494 : 31524) | 0, 31529) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i3, HEAP32[i12 >> 2] | 0) | 0, 31539) | 0; i3 = 0; while (1) { i1 = HEAP32[i9 >> 2] | 0; if (i3 >>> 0 >= ((HEAP32[i10 >> 2] | 0) - i1 | 0) >>> 0) break; i1 = HEAP8[i1 + i3 >> 0] | 0; L13 : do switch (i1 << 24 >> 24) { case 10: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31545) | 0; break; } case 13: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31548) | 0; break; } case 9: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31552) | 0; break; } case 12: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31555) | 0; break; } case 8: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31559) | 0; break; } case 92: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31563) | 0; break; } case 34: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31566) | 0; break; } case 39: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31569) | 0; break; } default: { i2 = HEAP32[i16 >> 2] | 0; if ((i1 + -32 & 255) < 95) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_h(i2, i1) | 0; break L13; } else { i20 = i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i20 >> 2] = HEAP32[i20 >> 2] & -75 | 8; i2 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i2, 92) | 0, (i1 & 255) >>> 4 & 255) | 0, i1 & 15) | 0; i2 = i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i2 >> 2] = HEAP32[i2 >> 2] & -75 | 2; break L13; } } } while (0); i3 = i3 + 1 | 0; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, 31542) | 0; __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i11); i4 = i4 + 16 | 0; } if ((HEAP32[i6 >> 2] | 0) == (HEAP32[i5 >> 2] | 0)) i1 = 53494; else i1 = HEAP8[i8 >> 0] | 0 ? 53494 : 31572; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, i1) | 0, 41) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; i1 = i15 + 92 | 0; if (HEAP32[i1 >> 2] | 0) { __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i16 >> 2] | 0, 31576, 0) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__Z9printTextRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i16 >> 2] | 0, HEAP32[i1 >> 2] | 0) | 0, 31584) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; } i1 = i15 + 96 | 0; if (HEAP32[i1 >> 2] | 0) { __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; i20 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i16 >> 2] | 0, 35049, 0) | 0, 32) | 0; HEAP32[i13 >> 2] = HEAP32[i1 >> 2]; HEAP32[i12 >> 2] = HEAP32[i13 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i20, i12) | 0, 41) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; } i2 = HEAP32[i15 + 4 >> 2] | 0; i1 = HEAP32[i15 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; __ZN4wasm16PrintSExpression17visitFunctionTypeEPNS_12FunctionTypeEb(i16, HEAP32[i1 >> 2] | 0, 1); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; i1 = i1 + 4 | 0; } i2 = HEAP32[i15 + 16 >> 2] | 0; i1 = HEAP32[i15 + 12 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; __ZN4wasm16PrintSExpression11visitImportEPNS_6ImportE(i16, HEAP32[i1 >> 2] | 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; i1 = i1 + 4 | 0; } i2 = HEAP32[i15 + 28 >> 2] | 0; i1 = HEAP32[i15 + 24 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; __ZN4wasm16PrintSExpression11visitExportEPNS_6ExportE(i16, HEAP32[i1 >> 2] | 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; i1 = i1 + 4 | 0; } i2 = HEAP32[i15 + 52 >> 2] | 0; i1 = HEAP32[i15 + 48 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; __ZN4wasm16PrintSExpression11visitGlobalEPNS_6GlobalE(i16, HEAP32[i1 >> 2] | 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; i1 = i1 + 4 | 0; } i1 = i15 + 60 | 0; if ((HEAP32[i15 + 64 >> 2] | 0) != (HEAP32[i1 >> 2] | 0)) { __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; __ZN4wasm16PrintSExpression10visitTableEPNS_5TableE(i16, i1); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; } i2 = HEAP32[i15 + 40 >> 2] | 0; i1 = HEAP32[i15 + 36 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i16 >> 2] | 0, HEAP32[i18 >> 2] | 0) | 0; __ZN4wasm16PrintSExpression13visitFunctionEPNS_8FunctionE(i16, HEAP32[i1 >> 2] | 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; i1 = i1 + 4 | 0; } __ZN4wasm16PrintSExpression9decIndentEv(i16); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i16 >> 2] | 0, HEAP32[i14 >> 2] | 0) | 0; HEAP32[i17 >> 2] = 0; STACKTOP = i19; return; } function __ZN4wasm10PostWalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE4scanEPS1_PPNS_10ExpressionE(i5, i1) { i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i4 = HEAP32[i1 >> 2] | 0; L1 : do switch (HEAP32[i4 >> 2] | 0) { case 0: { _abort(); break; } case 1: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 52, i1); i2 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i4) | 0; i3 = i2 + 12 | 0; i2 = HEAP32[i2 + 20 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 2: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 53, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 12 | 0); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 8 | 0); break; } case 3: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 54, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_4LoopEEEPT_v(i4) | 0) + 16 | 0); break; } case 4: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 55, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_5BreakEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_5BreakEEEPT_v(i4) | 0) + 12 | 0); break; } case 5: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 56, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i4) | 0) + 32 | 0); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i4) | 0) + 28 | 0); break; } case 6: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 57, i1); i2 = __ZN4wasm10Expression4castINS_4CallEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 7: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 58, i1); i2 = __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 8: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 59, i1); i2 = __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i4) | 0) + 28 | 0); break; } case 9: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 60, i1); break; } case 10: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 61, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(i4) | 0) + 12 | 0); break; } case 11: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 62, i1); break; } case 12: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 63, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(i4) | 0) + 12 | 0); break; } case 13: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 64, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_4LoadEEEPT_v(i4) | 0) + 20 | 0); break; } case 14: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 65, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_5StoreEEEPT_v(i4) | 0) + 24 | 0); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_5StoreEEEPT_v(i4) | 0) + 20 | 0); break; } case 15: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 66, i1); break; } case 16: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 67, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_5UnaryEEEPT_v(i4) | 0) + 12 | 0); break; } case 17: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 68, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i4) | 0) + 12 | 0); break; } case 18: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 69, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 12 | 0); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 8 | 0); break; } case 19: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 70, i1); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, (__ZN4wasm10Expression4castINS_6ReturnEEEPT_v(i4) | 0) + 8 | 0); break; } case 20: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 71, i1); i2 = __ZN4wasm10Expression4castINS_4HostEEEPT_v(i4) | 0; i3 = i2 + 16 | 0; i2 = HEAP32[i2 + 24 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 51, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 21: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 72, i1); break; } case 22: { __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 73, i1); break; } default: {} } while (0); return; } function __ZN4wasm10PostWalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE4scanEPS1_PPNS_10ExpressionE(i5, i1) { i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i4 = HEAP32[i1 >> 2] | 0; L1 : do switch (HEAP32[i4 >> 2] | 0) { case 0: { _abort(); break; } case 1: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 75, i1); i2 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i4) | 0; i3 = i2 + 12 | 0; i2 = HEAP32[i2 + 20 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 2: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 76, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 12 | 0); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 8 | 0); break; } case 3: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 77, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_4LoopEEEPT_v(i4) | 0) + 16 | 0); break; } case 4: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 78, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_5BreakEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_5BreakEEEPT_v(i4) | 0) + 12 | 0); break; } case 5: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 79, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i4) | 0) + 32 | 0); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i4) | 0) + 28 | 0); break; } case 6: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 80, i1); i2 = __ZN4wasm10Expression4castINS_4CallEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 7: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 81, i1); i2 = __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 8: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 82, i1); i2 = __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break; __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i4) | 0) + 28 | 0); break; } case 9: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 83, i1); break; } case 10: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 84, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(i4) | 0) + 12 | 0); break; } case 11: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 85, i1); break; } case 12: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 86, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(i4) | 0) + 12 | 0); break; } case 13: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 87, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_4LoadEEEPT_v(i4) | 0) + 20 | 0); break; } case 14: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 88, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_5StoreEEEPT_v(i4) | 0) + 24 | 0); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_5StoreEEEPT_v(i4) | 0) + 20 | 0); break; } case 15: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 89, i1); break; } case 16: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 90, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_5UnaryEEEPT_v(i4) | 0) + 12 | 0); break; } case 17: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 91, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i4) | 0) + 12 | 0); break; } case 18: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 92, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 12 | 0); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 8 | 0); break; } case 19: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 93, i1); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, (__ZN4wasm10Expression4castINS_6ReturnEEEPT_v(i4) | 0) + 8 | 0); break; } case 20: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 94, i1); i2 = __ZN4wasm10Expression4castINS_4HostEEEPT_v(i4) | 0; i3 = i2 + 16 | 0; i2 = HEAP32[i2 + 24 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 74, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 21: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 95, i1); break; } case 22: { __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 96, i1); break; } default: {} } while (0); return; } function __ZN4wasm10PostWalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE4scanEPS1_PPNS_10ExpressionE(i5, i1) { i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i4 = HEAP32[i1 >> 2] | 0; L1 : do switch (HEAP32[i4 >> 2] | 0) { case 0: { _abort(); break; } case 1: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 121, i1); i2 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i4) | 0; i3 = i2 + 12 | 0; i2 = HEAP32[i2 + 20 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 2: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 122, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 12 | 0); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_2IfEEEPT_v(i4) | 0) + 8 | 0); break; } case 3: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 123, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_4LoopEEEPT_v(i4) | 0) + 16 | 0); break; } case 4: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 124, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_5BreakEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_5BreakEEEPT_v(i4) | 0) + 12 | 0); break; } case 5: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 125, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i4) | 0) + 32 | 0); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i4) | 0) + 28 | 0); break; } case 6: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 126, i1); i2 = __ZN4wasm10Expression4castINS_4CallEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 7: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 127, i1); i2 = __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 8: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 128, i1); i2 = __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i4) | 0; i3 = i2 + 8 | 0; i2 = HEAP32[i2 + 16 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break; __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i4) | 0) + 28 | 0); break; } case 9: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 129, i1); break; } case 10: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 130, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(i4) | 0) + 12 | 0); break; } case 11: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 131, i1); break; } case 12: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 132, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(i4) | 0) + 12 | 0); break; } case 13: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 133, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_4LoadEEEPT_v(i4) | 0) + 20 | 0); break; } case 14: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 134, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_5StoreEEEPT_v(i4) | 0) + 24 | 0); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_5StoreEEEPT_v(i4) | 0) + 20 | 0); break; } case 15: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 135, i1); break; } case 16: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 136, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_5UnaryEEEPT_v(i4) | 0) + 12 | 0); break; } case 17: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 137, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i4) | 0) + 12 | 0); break; } case 18: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 138, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 16 | 0); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 12 | 0); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_6SelectEEEPT_v(i4) | 0) + 8 | 0); break; } case 19: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 139, i1); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, (__ZN4wasm10Expression4castINS_6ReturnEEEPT_v(i4) | 0) + 8 | 0); break; } case 20: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 140, i1); i2 = __ZN4wasm10Expression4castINS_4HostEEEPT_v(i4) | 0; i3 = i2 + 16 | 0; i2 = HEAP32[i2 + 24 >> 2] | 0; while (1) { i1 = i2 + -1 | 0; if ((i2 | 0) <= 0) break L1; __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 120, __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0); i2 = i1; } } case 21: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 141, i1); break; } case 22: { __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, 142, i1); break; } default: {} } while (0); return; } function __ZN4wasm17WasmBinaryBuilder14readExpressionERPNS_10ExpressionE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i8; i6 = i2 + 16 | 0; if ((HEAP32[i6 >> 2] | 0) != (HEAP32[i2 + 68 >> 2] | 0)) { i7 = i2 + 12 | 0; if (HEAP8[i7 >> 0] | 0) { i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19878) | 0; i9 = i2 + 124 | 0; i5 = (HEAP32[i9 >> 2] | 0) + 1 | 0; HEAP32[i9 >> 2] = i5; i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(i1, i5) | 0, 19895) | 0; i5 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i5, HEAP32[i6 >> 2] | 0) | 0; i1 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i1) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i5 = __ZN4wasm17WasmBinaryBuilder7getInt8Ev(i2) | 0; if (!(HEAP8[i7 >> 0] | 0)) i1 = i5 & 255; else { i1 = i5 & 255; i9 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19900) | 0, i1) | 0; i10 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i10; i10 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i10 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i10) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } do switch (i5 << 24 >> 24) { case 1: { i10 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder10visitBlockEPNS_5BlockE(i2, __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i10) | 0); break; } case 3: { i10 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder7visitIfEPNS_2IfE(i2, __ZN4wasm10Expression4castINS_2IfEEEPT_v(i10) | 0); break; } case 2: { i10 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder9visitLoopEPNS_4LoopE(i2, __ZN4wasm10Expression4castINS_4LoopEEEPT_v(i10) | 0); break; } case 7: case 6: { i10 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder10visitBreakEPNS_5BreakEh(i2, __ZN4wasm10Expression4castINS_5BreakEEEPT_v(i10) | 0, i5); break; } case 8: { i10 = __ZN10MixedArena5allocIN4wasm6SwitchEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder11visitSwitchEPNS_6SwitchE(i2, __ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i10) | 0); break; } case 22: { i10 = __ZN10MixedArena5allocIN4wasm4CallEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder9visitCallEPNS_4CallE(i2, __ZN4wasm10Expression4castINS_4CallEEEPT_v(i10) | 0); break; } case 24: { i10 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder15visitCallImportEPNS_10CallImportE(i2, __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(i10) | 0); break; } case 23: { i10 = __ZN10MixedArena5allocIN4wasm12CallIndirectEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder17visitCallIndirectEPNS_12CallIndirectE(i2, __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i10) | 0); break; } case 20: { i10 = __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder13visitGetLocalEPNS_8GetLocalE(i2, __ZN4wasm10Expression4castINS_8GetLocalEEEPT_v(i10) | 0); break; } case 21: { i10 = __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder13visitSetLocalEPNS_8SetLocalE(i2, __ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(i10) | 0); break; } case 26: { i10 = __ZN10MixedArena5allocIN4wasm9GetGlobalEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder14visitGetGlobalEPNS_9GetGlobalE(i2, __ZN4wasm10Expression4castINS_9GetGlobalEEEPT_v(i10) | 0); break; } case 27: { i10 = __ZN10MixedArena5allocIN4wasm9SetGlobalEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder14visitSetGlobalEPNS_9SetGlobalE(i2, __ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(i10) | 0); break; } case 5: { i10 = __ZN10MixedArena5allocIN4wasm6SelectEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder11visitSelectEPNS_6SelectE(i2, __ZN4wasm10Expression4castINS_6SelectEEEPT_v(i10) | 0); break; } case 9: { i10 = __ZN10MixedArena5allocIN4wasm6ReturnEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder11visitReturnEPNS_6ReturnE(i2, __ZN4wasm10Expression4castINS_6ReturnEEEPT_v(i10) | 0); break; } case 0: { i10 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder8visitNopEPNS_3NopE(i2, __ZN4wasm10Expression4castINS_3NopEEEPT_v(i10) | 0); break; } case 10: { i10 = __ZN10MixedArena5allocIN4wasm11UnreachableEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = i10; __ZN4wasm17WasmBinaryBuilder16visitUnreachableEPNS_11UnreachableE(i2, __ZN4wasm10Expression4castINS_11UnreachableEEEPT_v(i10) | 0); break; } case 4: case 15: { HEAP32[i3 >> 2] = 0; break; } default: if (((((!(__ZN4wasm17WasmBinaryBuilder16maybeVisitBinaryERPNS_10ExpressionEh(i2, i3, i5) | 0) ? !(__ZN4wasm17WasmBinaryBuilder15maybeVisitUnaryERPNS_10ExpressionEh(i2, i3, i5) | 0) : 0) ? !(__ZN4wasm17WasmBinaryBuilder15maybeVisitConstERPNS_10ExpressionEh(i2, i3, i5) | 0) : 0) ? !(__ZN4wasm17WasmBinaryBuilder14maybeVisitLoadERPNS_10ExpressionEh(i2, i3, i5) | 0) : 0) ? !(__ZN4wasm17WasmBinaryBuilder15maybeVisitStoreERPNS_10ExpressionEh(i2, i3, i5) | 0) : 0) ? !(__ZN4wasm17WasmBinaryBuilder14maybeVisitHostERPNS_10ExpressionEh(i2, i3, i5) | 0) : 0) { i10 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19923) | 0; i9 = i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i9 >> 2] = HEAP32[i9 >> 2] & -75 | 8; i10 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(i10, i1) | 0; i9 = __ZNKSt3__28ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i9; i9 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i10, i9) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i10) | 0; _abort(); } } while (0); if (HEAP8[i7 >> 0] | 0) { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19935) | 0; i7 = i2 + 124 | 0; i10 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = i10 + -1; i10 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(i9, i10) | 0, 19895) | 0; i10 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i10, HEAP32[i6 >> 2] | 0) | 0; i9 = __ZNKSt3__28ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i9; i9 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i10, i9) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i10) | 0; } } else { HEAP32[i3 >> 2] = 0; i1 = 15; } STACKTOP = i8; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i3, i9) { i1 = i1 | 0; i3 = i3 | 0; i9 = i9 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i10 = i12 + 24 | 0; i11 = i12 + 8 | 0; i8 = i12; L1 : do if ((i1 | 0) != (i3 | 0)) switch (HEAP8[i1 >> 0] | 0) { case 84: { i6 = i9 + 4 | 0; i5 = ((HEAP32[i6 >> 2] | 0) - (HEAP32[i9 >> 2] | 0) | 0) / 24 | 0; i7 = __ZN10__cxxabiv112_GLOBAL__N_120parse_template_paramINS0_2DbEEEPKcS4_S4_RT_(i1, i3, i9) | 0; i2 = HEAP32[i6 >> 2] | 0; i4 = (i2 - (HEAP32[i9 >> 2] | 0) | 0) / 24 | 0; if (!((i7 | 0) != (i1 | 0) & (i4 | 0) == (i5 + 1 | 0))) while (1) { if ((i4 | 0) == (i5 | 0)) break L1; i3 = i2 + -24 | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i11 = i2 + -24 | 0; HEAP32[i6 >> 2] = i11; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11); i2 = HEAP32[i6 >> 2] | 0; } i4 = i4 + -1 | 0; i2 = i3; } i5 = i9 + 16 | 0; HEAP32[i8 >> 2] = HEAP32[i9 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i11, i2 + -24 | 0, i8); i1 = i9 + 20 | 0; i2 = HEAP32[i1 >> 2] | 0; i8 = HEAP32[i9 + 24 >> 2] | 0; i4 = i8; do if (i2 >>> 0 >= i8 >>> 0) { i3 = HEAP32[i5 >> 2] | 0; i1 = i2 - i3 >> 4; i2 = i1 + 1 | 0; if (i2 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i6 = i4 - i3 | 0; i8 = i6 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i10, i6 >> 4 >>> 0 < 134217727 ? (i8 >>> 0 < i2 >>> 0 ? i2 : i8) : 268435455, i1, i9 + 28 | 0); i9 = i10 + 8 | 0; i8 = HEAP32[i9 >> 2] | 0; HEAP32[i8 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i8 >> 2] = HEAP32[i11 >> 2]; i6 = i11 + 4 | 0; HEAP32[i8 + 4 >> 2] = HEAP32[i6 >> 2]; i4 = i11 + 8 | 0; HEAP32[i8 + 8 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = 0; HEAP32[i6 >> 2] = 0; HEAP32[i11 >> 2] = 0; HEAP32[i9 >> 2] = i8 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i10); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i10); break; } } else { HEAP32[i2 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i2 >> 2] = HEAP32[i11 >> 2]; i10 = i11 + 4 | 0; HEAP32[i2 + 4 >> 2] = HEAP32[i10 >> 2]; i9 = i11 + 8 | 0; HEAP32[i2 + 8 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = 0; HEAP32[i10 >> 2] = 0; HEAP32[i11 >> 2] = 0; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i11); i1 = i7; break L1; } case 68: { i6 = __ZN10__cxxabiv112_GLOBAL__N_114parse_decltypeINS0_2DbEEEPKcS4_S4_RT_(i1, i3, i9) | 0; if ((i6 | 0) == (i1 | 0)) break L1; i2 = HEAP32[i9 + 4 >> 2] | 0; if ((HEAP32[i9 >> 2] | 0) == (i2 | 0)) break L1; i5 = i9 + 16 | 0; HEAP32[i8 >> 2] = HEAP32[i9 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i11, i2 + -24 | 0, i8); i1 = i9 + 20 | 0; i2 = HEAP32[i1 >> 2] | 0; i8 = HEAP32[i9 + 24 >> 2] | 0; i4 = i8; do if (i2 >>> 0 >= i8 >>> 0) { i3 = HEAP32[i5 >> 2] | 0; i1 = i2 - i3 >> 4; i2 = i1 + 1 | 0; if (i2 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i7 = i4 - i3 | 0; i8 = i7 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i10, i7 >> 4 >>> 0 < 134217727 ? (i8 >>> 0 < i2 >>> 0 ? i2 : i8) : 268435455, i1, i9 + 28 | 0); i9 = i10 + 8 | 0; i8 = HEAP32[i9 >> 2] | 0; HEAP32[i8 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i8 >> 2] = HEAP32[i11 >> 2]; i7 = i11 + 4 | 0; HEAP32[i8 + 4 >> 2] = HEAP32[i7 >> 2]; i4 = i11 + 8 | 0; HEAP32[i8 + 8 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = 0; HEAP32[i7 >> 2] = 0; HEAP32[i11 >> 2] = 0; HEAP32[i9 >> 2] = i8 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i10); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i10); break; } } else { HEAP32[i2 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i2 >> 2] = HEAP32[i11 >> 2]; i10 = i11 + 4 | 0; HEAP32[i2 + 4 >> 2] = HEAP32[i10 >> 2]; i9 = i11 + 8 | 0; HEAP32[i2 + 8 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = 0; HEAP32[i10 >> 2] = 0; HEAP32[i11 >> 2] = 0; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i11); i1 = i6; break L1; } case 83: { i2 = __ZN10__cxxabiv112_GLOBAL__N_118parse_substitutionINS0_2DbEEEPKcS4_S4_RT_(i1, i3, i9) | 0; if ((i2 | 0) != (i1 | 0)) { i1 = i2; break L1; } if ((i3 - i1 | 0) <= 2) break L1; if ((HEAP8[i1 + 1 >> 0] | 0) != 116) break L1; i7 = i1 + 2 | 0; i6 = __ZN10__cxxabiv112_GLOBAL__N_122parse_unqualified_nameINS0_2DbEEEPKcS4_S4_RT_(i7, i3, i9) | 0; if ((i6 | 0) == (i7 | 0)) break L1; i3 = i9 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if ((HEAP32[i9 >> 2] | 0) == (i2 | 0)) break L1; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 42661) | 0; i5 = i9 + 16 | 0; i1 = (HEAP32[i3 >> 2] | 0) + -24 | 0; HEAP32[i8 >> 2] = HEAP32[i9 + 12 >> 2]; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i11, i1, i8); i1 = i9 + 20 | 0; i2 = HEAP32[i1 >> 2] | 0; i8 = HEAP32[i9 + 24 >> 2] | 0; i4 = i8; do if (i2 >>> 0 >= i8 >>> 0) { i3 = HEAP32[i5 >> 2] | 0; i1 = i2 - i3 >> 4; i2 = i1 + 1 | 0; if (i2 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); else { i7 = i4 - i3 | 0; i8 = i7 >> 3; __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i10, i7 >> 4 >>> 0 < 134217727 ? (i8 >>> 0 < i2 >>> 0 ? i2 : i8) : 268435455, i1, i9 + 28 | 0); i9 = i10 + 8 | 0; i8 = HEAP32[i9 >> 2] | 0; HEAP32[i8 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i8 >> 2] = HEAP32[i11 >> 2]; i7 = i11 + 4 | 0; HEAP32[i8 + 4 >> 2] = HEAP32[i7 >> 2]; i4 = i11 + 8 | 0; HEAP32[i8 + 8 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = 0; HEAP32[i7 >> 2] = 0; HEAP32[i11 >> 2] = 0; HEAP32[i9 >> 2] = i8 + 16; __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i10); __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i10); break; } } else { HEAP32[i2 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i2 >> 2] = HEAP32[i11 >> 2]; i10 = i11 + 4 | 0; HEAP32[i2 + 4 >> 2] = HEAP32[i10 >> 2]; i9 = i11 + 8 | 0; HEAP32[i2 + 8 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = 0; HEAP32[i10 >> 2] = 0; HEAP32[i11 >> 2] = 0; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 16; } while (0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i11); i1 = i6; break L1; } default: break L1; } while (0); STACKTOP = i12; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder13readFunctionsEv(i10) { i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0, i29 = 0, i30 = 0, i31 = 0, i32 = 0, i33 = 0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0; i39 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i9 = i39 + 44 | 0; i11 = i39 + 40 | 0; i12 = i39 + 32 | 0; i15 = i39 + 16 | 0; i26 = i39 + 4 | 0; i35 = i39; i36 = i39 + 36 | 0; i37 = i39 + 28 | 0; i38 = i10 + 12 | 0; if (HEAP8[i38 >> 0] | 0) { i34 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19685) | 0; i33 = __ZNKSt3__28ios_base6getlocEv(i34 + (HEAP32[(HEAP32[i34 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i9 >> 2] = i33; i33 = __ZNKSt3__26locale9use_facetERNS0_2idE(i9, 47476) | 0; i33 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i33 >> 2] | 0) + 28 >> 2] & 31](i33, 10) | 0; __ZNSt3__26localeD2Ev(i9); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i34, i33) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i34) | 0; } i13 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i10) | 0; i14 = i10 + 24 | 0; if ((i13 | 0) != ((HEAP32[i10 + 28 >> 2] | 0) - (HEAP32[i14 >> 2] | 0) >> 2 | 0)) ___assert_fail(19702, 18854, 1506, 19732); i16 = i10 + 16 | 0; i17 = i10 + 68 | 0; i18 = i15 + 4 | 0; i19 = i15 + 8 | 0; i20 = i26 + 4 | 0; i21 = i26 + 8 | 0; i22 = i15 + 8 | 0; i23 = i26 + 8 | 0; i24 = i10 + 64 | 0; i25 = i10 + 36 | 0; i27 = i10 + 84 | 0; i28 = i10 + 88 | 0; i29 = i10 + 96 | 0; i30 = i10 + 100 | 0; i31 = i10 + 124 | 0; i32 = i10 + 44 | 0; i33 = i10 + 48 | 0; i34 = i10 + 40 | 0; i8 = 0; while (1) { if (i8 >>> 0 >= i13 >>> 0) { i1 = 7; break; } if (HEAP8[i38 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19746) | 0; i7 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i7, HEAP32[i16 >> 2] | 0) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i9 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i9, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i9); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i10) | 0; if (!i1) { i1 = 11; break; } HEAP32[i17 >> 2] = (HEAP32[i16 >> 2] | 0) + i1; i7 = HEAP32[(HEAP32[i14 >> 2] | 0) + (i8 << 2) >> 2] | 0; if (HEAP8[i38 >> 0] | 0) { i6 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19768) | 0, i8) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i9 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i9, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i9); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; } HEAP32[i11 >> 2] = 0; HEAP32[i12 >> 2] = i11; HEAP32[i15 >> 2] = 0; HEAP32[i18 >> 2] = 0; HEAP32[i19 >> 2] = 0; HEAP32[i26 >> 2] = 0; HEAP32[i20 >> 2] = 0; HEAP32[i21 >> 2] = 0; i2 = i7 + 8 | 0; i3 = i7 + 12 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i3 >> 2] | 0) - (HEAP32[i2 >> 2] | 0) >> 2 >>> 0) break; i4 = __ZZN4wasm17WasmBinaryBuilder13readFunctionsEvENKUlvE_clEv(i12) | 0; HEAP32[i9 >> 2] = i4; i5 = (HEAP32[i2 >> 2] | 0) + (i1 << 2) | 0; i6 = HEAP32[i18 >> 2] | 0; if (i6 >>> 0 < (HEAP32[i22 >> 2] | 0) >>> 0) { i5 = HEAP32[i5 >> 2] | 0; HEAP32[i6 >> 2] = i4; HEAP32[i6 + 4 >> 2] = i5; HEAP32[i18 >> 2] = (HEAP32[i18 >> 2] | 0) + 8; } else __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJNS1_4NameERNS1_8WasmTypeEEEEvDpOT_(i15, i9, i5); i1 = i1 + 1 | 0; } i5 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i10) | 0; i2 = 0; while (1) { if (i2 >>> 0 >= i5 >>> 0) break; i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i10) | 0; i6 = __ZN4wasm17WasmBinaryBuilder11getWasmTypeEv(i10) | 0; HEAP32[i9 >> 2] = i6; while (1) { if (!i1) break; i3 = __ZZN4wasm17WasmBinaryBuilder13readFunctionsEvENKUlvE_clEv(i12) | 0; HEAP32[i35 >> 2] = i3; i4 = HEAP32[i20 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i23 >> 2] | 0) >>> 0) { i6 = HEAP32[i9 >> 2] | 0; HEAP32[i4 >> 2] = i3; HEAP32[i4 + 4 >> 2] = i6; HEAP32[i20 >> 2] = (HEAP32[i20 >> 2] | 0) + 8; } else __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJNS1_4NameERNS1_8WasmTypeEEEEvDpOT_(i26, i35, i9); i1 = i1 + -1 | 0; } i2 = i2 + 1 | 0; } HEAP32[i36 >> 2] = (HEAP32[i10 >> 2] | 0) + 100; i6 = __ZN4wasm4Name7fromIntEj(i8) | 0; HEAP32[i37 >> 2] = i6; i6 = HEAP32[i7 + 4 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i37 >> 2]; i6 = __ZN4wasm7Builder12makeFunctionENS_4NameEONSt3__26vectorINS_8NameTypeENS2_9allocatorIS4_EEEENS_8WasmTypeES8_PNS_10ExpressionE(i36, i9, i15, i6, i26, 0) | 0; HEAP32[i35 >> 2] = i6; HEAP32[i6 + 32 >> 2] = HEAP32[i7 >> 2]; HEAP32[i24 >> 2] = i6; if (HEAP8[i38 >> 0] | 0) { i7 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19776) | 0, i8) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i9 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i9, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i9); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } HEAP32[i25 >> 2] = 0; if ((HEAP32[i27 >> 2] | 0) != (HEAP32[i28 >> 2] | 0)) { i1 = 32; break; } if ((HEAP32[i29 >> 2] | 0) != (HEAP32[i30 >> 2] | 0)) { i1 = 34; break; } if (HEAP32[i31 >> 2] | 0) { i1 = 36; break; } i7 = __ZN4wasm17WasmBinaryBuilder13getMaybeBlockEv(i10) | 0; i1 = HEAP32[i35 >> 2] | 0; HEAP32[i1 + 36 >> 2] = i7; if (HEAP32[i31 >> 2] | 0) { i1 = 38; break; } if ((HEAP32[i27 >> 2] | 0) != (HEAP32[i28 >> 2] | 0)) { i1 = 40; break; } if ((HEAP32[i29 >> 2] | 0) != (HEAP32[i30 >> 2] | 0)) { i1 = 42; break; } if ((HEAP32[i16 >> 2] | 0) != (HEAP32[i17 >> 2] | 0)) { i1 = 44; break; } HEAP32[i24 >> 2] = 0; i2 = HEAP32[i32 >> 2] | 0; if ((i2 | 0) == (HEAP32[i33 >> 2] | 0)) __ZNSt3__26vectorIPN4wasm8FunctionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i34, i35); else { HEAP32[i2 >> 2] = i1; HEAP32[i32 >> 2] = (HEAP32[i32 >> 2] | 0) + 4; } __ZNSt3__213__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i26); __ZNSt3__213__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i15); i8 = i8 + 1 | 0; } if ((i1 | 0) == 7) { STACKTOP = i39; return; } else if ((i1 | 0) == 11) ___assert_fail(19759, 18854, 1510, 19732); else if ((i1 | 0) == 32) ___assert_fail(19798, 18854, 1545, 19732); else if ((i1 | 0) == 34) ___assert_fail(19817, 18854, 1546, 19732); else if ((i1 | 0) == 36) ___assert_fail(19841, 18854, 1547, 19732); else if ((i1 | 0) == 38) ___assert_fail(19841, 18854, 1549, 19732); else if ((i1 | 0) == 40) ___assert_fail(19798, 18854, 1550, 19732); else if ((i1 | 0) == 42) ___assert_fail(19817, 18854, 1551, 19732); else if ((i1 | 0) == 44) ___assert_fail(19852, 18854, 1552, 19732); } function __ZNSt3__211__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri(i1, i3, i2, i4, i7, i8, i9, i10, i5, i12) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; i4 = i4 | 0; i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; i10 = i10 | 0; i5 = i5 | 0; i12 = i12 | 0; var i6 = 0, i11 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i11 = i13; if (i1) { i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49196) | 0; if (i3) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 44 >> 2] & 255](i11, i6); i1 = HEAP32[i11 >> 2] | 0; HEAP8[i4 >> 0] = i1; HEAP8[i4 + 1 >> 0] = i1 >> 8; HEAP8[i4 + 2 >> 0] = i1 >> 16; HEAP8[i4 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 32 >> 2] & 255](i11, i6); i1 = i5 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i5 >> 2] >> 0] = 0; HEAP32[i5 + 4 >> 2] = 0; i1 = i5; } else { HEAP8[i5 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i5; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i5, 0); HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i11 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); i2 = i6; } else { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 255](i11, i6); i1 = HEAP32[i11 >> 2] | 0; HEAP8[i4 >> 0] = i1; HEAP8[i4 + 1 >> 0] = i1 >> 8; HEAP8[i4 + 2 >> 0] = i1 >> 16; HEAP8[i4 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 255](i11, i6); i1 = i5 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i5 >> 2] >> 0] = 0; HEAP32[i5 + 4 >> 2] = 0; i1 = i5; } else { HEAP8[i5 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i5; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i5, 0); HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i11 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); i2 = i6; } i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 12 >> 2] & 127](i6) | 0; HEAP8[i7 >> 0] = i1; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 16 >> 2] & 127](i6) | 0; HEAP8[i8 >> 0] = i1; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i11, i6); i1 = i9 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i9 >> 2] >> 0] = 0; HEAP32[i9 + 4 >> 2] = 0; i1 = i9; } else { HEAP8[i9 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i9; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i9, 0); HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i11 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i11, i6); i1 = i10 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i10 + 4 >> 2] = 0; i1 = i10; } else { HEAP8[i10 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i10; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i10, 0); HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i11 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; } else { i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49188) | 0; if (i3) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 44 >> 2] & 255](i11, i6); i1 = HEAP32[i11 >> 2] | 0; HEAP8[i4 >> 0] = i1; HEAP8[i4 + 1 >> 0] = i1 >> 8; HEAP8[i4 + 2 >> 0] = i1 >> 16; HEAP8[i4 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 32 >> 2] & 255](i11, i6); i1 = i5 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i5 >> 2] >> 0] = 0; HEAP32[i5 + 4 >> 2] = 0; i1 = i5; } else { HEAP8[i5 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i5; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i5, 0); HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i11 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); i2 = i6; } else { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 255](i11, i6); i1 = HEAP32[i11 >> 2] | 0; HEAP8[i4 >> 0] = i1; HEAP8[i4 + 1 >> 0] = i1 >> 8; HEAP8[i4 + 2 >> 0] = i1 >> 16; HEAP8[i4 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 255](i11, i6); i1 = i5 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i5 >> 2] >> 0] = 0; HEAP32[i5 + 4 >> 2] = 0; i1 = i5; } else { HEAP8[i5 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i5; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i5, 0); HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i11 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); i2 = i6; } i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 12 >> 2] & 127](i6) | 0; HEAP8[i7 >> 0] = i1; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 16 >> 2] & 127](i6) | 0; HEAP8[i8 >> 0] = i1; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i11, i6); i1 = i9 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i9 >> 2] >> 0] = 0; HEAP32[i9 + 4 >> 2] = 0; i1 = i9; } else { HEAP8[i9 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i9; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i9, 0); HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i11 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i11, i6); i1 = i10 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i10 + 4 >> 2] = 0; i1 = i10; } else { HEAP8[i10 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i10; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i10, 0); HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i11 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; } HEAP32[i12 >> 2] = i1; STACKTOP = i13; return; } function _strstr(i1, i16) { i1 = i1 | 0; i16 = i16 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 1056 | 0; i17 = i19 + 1024 | 0; i18 = i19; i7 = HEAP8[i16 >> 0] | 0; do if (i7 << 24 >> 24) { i15 = _strchr(i1, i7 << 24 >> 24) | 0; if (i15) { i4 = HEAP8[i16 + 1 >> 0] | 0; if (i4 << 24 >> 24) { i2 = i15 + 1 | 0; i8 = HEAP8[i2 >> 0] | 0; if (i8 << 24 >> 24) { i5 = HEAP8[i16 + 2 >> 0] | 0; if (!(i5 << 24 >> 24)) { i4 = i4 & 255 | (i7 & 255) << 8; i3 = HEAPU8[i15 >> 0] << 8 | i8 & 255; i1 = i8; while (1) { i3 = i3 & 65535; if ((i3 | 0) == (i4 | 0)) break; i2 = i2 + 1 | 0; i1 = HEAP8[i2 >> 0] | 0; if (!(i1 << 24 >> 24)) { i1 = 0; break; } else i3 = i1 & 255 | i3 << 8; } i1 = i1 << 24 >> 24 ? i2 + -1 | 0 : 0; break; } i2 = i15 + 2 | 0; i1 = HEAP8[i2 >> 0] | 0; if (i1 << 24 >> 24) { i3 = HEAP8[i16 + 3 >> 0] | 0; if (!(i3 << 24 >> 24)) { i4 = (i4 & 255) << 16 | (i7 & 255) << 24 | (i5 & 255) << 8; i3 = (i1 & 255) << 8 | (i8 & 255) << 16 | HEAPU8[i15 >> 0] << 24; if ((i3 | 0) != (i4 | 0)) do { i2 = i2 + 1 | 0; i1 = HEAP8[i2 >> 0] | 0; i3 = (i1 & 255 | i3) << 8; } while (!(i1 << 24 >> 24 == 0 | (i3 | 0) == (i4 | 0))); i1 = i1 << 24 >> 24 ? i2 + -2 | 0 : 0; break; } i2 = i15 + 3 | 0; i6 = HEAP8[i2 >> 0] | 0; if (i6 << 24 >> 24) { if (!(HEAP8[i16 + 4 >> 0] | 0)) { i4 = (i4 & 255) << 16 | (i7 & 255) << 24 | (i5 & 255) << 8 | i3 & 255; i3 = (i1 & 255) << 8 | (i8 & 255) << 16 | i6 & 255 | HEAPU8[i15 >> 0] << 24; if ((i3 | 0) == (i4 | 0)) i1 = i6; else do { i2 = i2 + 1 | 0; i1 = HEAP8[i2 >> 0] | 0; i3 = i1 & 255 | i3 << 8; } while (!(i1 << 24 >> 24 == 0 | (i3 | 0) == (i4 | 0))); i1 = i1 << 24 >> 24 ? i2 + -3 | 0 : 0; break; }; HEAP32[i17 >> 2] = 0; HEAP32[i17 + 4 >> 2] = 0; HEAP32[i17 + 8 >> 2] = 0; HEAP32[i17 + 12 >> 2] = 0; HEAP32[i17 + 16 >> 2] = 0; HEAP32[i17 + 20 >> 2] = 0; HEAP32[i17 + 24 >> 2] = 0; HEAP32[i17 + 28 >> 2] = 0; i14 = 0; i1 = i7; while (1) { if (!(HEAP8[i15 + i14 >> 0] | 0)) { i1 = 0; break; } i13 = i17 + (((i1 & 255) >>> 5 & 255) << 2) | 0; HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 1 << (i1 & 31); i13 = i14 + 1 | 0; HEAP32[i18 + ((i1 & 255) << 2) >> 2] = i13; i1 = HEAP8[i16 + i13 >> 0] | 0; if (!(i1 << 24 >> 24)) { i9 = 23; break; } else i14 = i13; } L32 : do if ((i9 | 0) == 23) { L34 : do if (i13 >>> 0 > 1) { i2 = 0; i7 = -1; i3 = 1; L35 : while (1) { i4 = 1; i1 = i2; while (1) { i2 = i3; L39 : while (1) { i6 = 1; while (1) { i3 = HEAP8[i16 + (i6 + i7) >> 0] | 0; i5 = HEAP8[i16 + i2 >> 0] | 0; if (i3 << 24 >> 24 != i5 << 24 >> 24) break L39; if ((i6 | 0) == (i4 | 0)) break; i6 = i6 + 1 | 0; i2 = i6 + i1 | 0; if (i2 >>> 0 >= i13 >>> 0) { i8 = i4; i1 = i7; break L35; } } i1 = i1 + i4 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 >= i13 >>> 0) { i8 = i4; i1 = i7; break L35; } } i4 = i2 - i7 | 0; if ((i3 & 255) <= (i5 & 255)) break; i3 = i2 + 1 | 0; if (i3 >>> 0 >= i13 >>> 0) { i8 = i4; i1 = i7; break L35; } else i1 = i2; } i3 = i1 + 2 | 0; if (i3 >>> 0 >= i13 >>> 0) { i8 = 1; break; } else { i2 = i1 + 1 | 0; i7 = i1; } } i4 = 0; i9 = -1; i5 = 1; while (1) { i3 = 1; i2 = i4; while (1) { i4 = i5; L54 : while (1) { i7 = 1; while (1) { i5 = HEAP8[i16 + (i7 + i9) >> 0] | 0; i6 = HEAP8[i16 + i4 >> 0] | 0; if (i5 << 24 >> 24 != i6 << 24 >> 24) break L54; if ((i7 | 0) == (i3 | 0)) break; i7 = i7 + 1 | 0; i4 = i7 + i2 | 0; if (i4 >>> 0 >= i13 >>> 0) { i4 = i8; i2 = i9; break L34; } } i2 = i2 + i3 | 0; i4 = i2 + 1 | 0; if (i4 >>> 0 >= i13 >>> 0) { i4 = i8; i2 = i9; break L34; } } i3 = i4 - i9 | 0; if ((i5 & 255) >= (i6 & 255)) break; i5 = i4 + 1 | 0; if (i5 >>> 0 >= i13 >>> 0) { i4 = i8; i2 = i9; break L34; } else i2 = i4; } i5 = i2 + 2 | 0; if (i5 >>> 0 >= i13 >>> 0) { i4 = i8; i3 = 1; break; } else { i4 = i2 + 1 | 0; i9 = i2; } } } else { i4 = 1; i1 = -1; i3 = 1; i2 = -1; } while (0); i11 = (i2 + 1 | 0) >>> 0 > (i1 + 1 | 0) >>> 0; i3 = i11 ? i3 : i4; i11 = i11 ? i2 : i1; i12 = i11 + 1 | 0; if (!(_memcmp(i16, i16 + i3 | 0, i12) | 0)) i10 = i13 - i3 | 0; else { i3 = i13 - i11 + -1 | 0; i10 = 0; i3 = (i11 >>> 0 > i3 >>> 0 ? i11 : i3) + 1 | 0; } i7 = i13 | 63; i8 = (i10 | 0) != 0; i9 = i13 - i3 | 0; i1 = i15; i6 = 0; i2 = i15; L69 : while (1) { i4 = i1; do if ((i2 - i4 | 0) >>> 0 < i13 >>> 0) { i5 = _memchr(i2, 0, i7) | 0; if (i5) if ((i5 - i4 | 0) >>> 0 < i13 >>> 0) { i1 = 0; break L32; } else break; else { i5 = i2 + i7 | 0; break; } } else i5 = i2; while (0); i2 = HEAP8[i1 + i14 >> 0] | 0; if (!(1 << (i2 & 31) & HEAP32[i17 + (((i2 & 255) >>> 5 & 255) << 2) >> 2])) { i1 = i1 + i13 | 0; i6 = 0; i2 = i5; continue; } i2 = i13 - (HEAP32[i18 + ((i2 & 255) << 2) >> 2] | 0) | 0; if (i2 | 0) { i1 = i1 + (i8 & (i6 | 0) != 0 & i2 >>> 0 < i3 >>> 0 ? i9 : i2) | 0; i6 = 0; i2 = i5; continue; } i2 = i12 >>> 0 > i6 >>> 0 ? i12 : i6; i4 = HEAP8[i16 + i2 >> 0] | 0; L83 : do if (!(i4 << 24 >> 24)) i2 = i12; else { while (1) { if (i4 << 24 >> 24 != (HEAP8[i1 + i2 >> 0] | 0)) break; i2 = i2 + 1 | 0; i4 = HEAP8[i16 + i2 >> 0] | 0; if (!(i4 << 24 >> 24)) { i2 = i12; break L83; } } i1 = i1 + (i2 - i11) | 0; i6 = 0; i2 = i5; continue L69; } while (0); do { if (i2 >>> 0 <= i6 >>> 0) break L32; i2 = i2 + -1 | 0; } while ((HEAP8[i16 + i2 >> 0] | 0) == (HEAP8[i1 + i2 >> 0] | 0)); i1 = i1 + i3 | 0; i6 = i10; i2 = i5; } } while (0); } else i1 = 0; } else i1 = 0; } else i1 = 0; } else i1 = i15; } else i1 = 0; } while (0); STACKTOP = i19; return i1 | 0; } function ___intscan(i13, i4, i6, i1, i2) { i13 = i13 | 0; i4 = i4 | 0; i6 = i6 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0; L1 : do if (i4 >>> 0 > 36) { i2 = ___errno_location() | 0; HEAP32[i2 >> 2] = 22; i2 = 0; i1 = 0; } else { i15 = i13 + 4 | 0; i14 = i13 + 100 | 0; do { i3 = HEAP32[i15 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i3 + 1; i3 = HEAPU8[i3 >> 0] | 0; } else i3 = ___shgetc(i13) | 0; } while ((_isspace(i3) | 0) != 0); L11 : do switch (i3 | 0) { case 43: case 45: { i3 = ((i3 | 0) == 45) << 31 >> 31; i5 = HEAP32[i15 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i5 + 1; i12 = i3; i3 = HEAPU8[i5 >> 0] | 0; break L11; } else { i12 = i3; i3 = ___shgetc(i13) | 0; break L11; } } default: i12 = 0; } while (0); i5 = (i4 | 0) == 0; do if ((i4 | 16 | 0) == 16 & (i3 | 0) == 48) { i3 = HEAP32[i15 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i3 + 1; i3 = HEAPU8[i3 >> 0] | 0; } else i3 = ___shgetc(i13) | 0; if ((i3 | 32 | 0) != 120) if (i5) { i4 = 8; i10 = 46; break; } else { i10 = 32; break; } i3 = HEAP32[i15 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i3 + 1; i3 = HEAPU8[i3 >> 0] | 0; } else i3 = ___shgetc(i13) | 0; if ((HEAPU8[35369 + i3 >> 0] | 0) > 15) { i1 = (HEAP32[i14 >> 2] | 0) == 0; if (!i1) HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + -1; if (!i6) { ___shlim(i13, 0); i2 = 0; i1 = 0; break L1; } if (i1) { i2 = 0; i1 = 0; break L1; } HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + -1; i2 = 0; i1 = 0; break L1; } else { i4 = 16; i10 = 46; } } else { i4 = i5 ? 10 : i4; if ((HEAPU8[35369 + i3 >> 0] | 0) >>> 0 < i4 >>> 0) i10 = 32; else { if (HEAP32[i14 >> 2] | 0) HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + -1; ___shlim(i13, 0); i2 = ___errno_location() | 0; HEAP32[i2 >> 2] = 22; i2 = 0; i1 = 0; break L1; } } while (0); if ((i10 | 0) == 32) if ((i4 | 0) == 10) { i4 = i3 + -48 | 0; if (i4 >>> 0 < 10) { i3 = 0; i5 = i4; do { i3 = (i3 * 10 | 0) + i5 | 0; i4 = HEAP32[i15 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i4 + 1; i4 = HEAPU8[i4 >> 0] | 0; } else i4 = ___shgetc(i13) | 0; i5 = i4 + -48 | 0; } while (i5 >>> 0 < 10 & i3 >>> 0 < 429496729); i6 = 0; } else { i4 = i3; i3 = 0; i6 = 0; } i5 = i4 + -48 | 0; if (i5 >>> 0 < 10) { i9 = i5; while (1) { i5 = ___muldi3(i3 | 0, i6 | 0, 10, 0) | 0; i7 = tempRet0; i8 = ((i9 | 0) < 0) << 31 >> 31; i11 = ~i8; if (i7 >>> 0 > i11 >>> 0 | (i7 | 0) == (i11 | 0) & i5 >>> 0 > ~i9 >>> 0) { i5 = i4; i4 = i9; break; } i3 = _i64Add(i5 | 0, i7 | 0, i9 | 0, i8 | 0) | 0; i6 = tempRet0; i4 = HEAP32[i15 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i4 + 1; i4 = HEAPU8[i4 >> 0] | 0; } else i4 = ___shgetc(i13) | 0; i7 = i4 + -48 | 0; if (i7 >>> 0 < 10 & (i6 >>> 0 < 429496729 | (i6 | 0) == 429496729 & i3 >>> 0 < 2576980378)) i9 = i7; else { i5 = i4; i4 = i7; break; } } if (i4 >>> 0 > 9) { i5 = i12; i4 = i6; } else { i4 = 10; i10 = 72; } } else { i5 = i12; i4 = i6; } } else i10 = 46; L63 : do if ((i10 | 0) == 46) { if (!(i4 + -1 & i4)) { i10 = HEAP8[35625 + ((i4 * 23 | 0) >>> 5 & 7) >> 0] | 0; i6 = HEAP8[35369 + i3 >> 0] | 0; i5 = i6 & 255; if (i5 >>> 0 < i4 >>> 0) { i3 = 0; i7 = i5; do { i3 = i7 | i3 << i10; i5 = HEAP32[i15 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i5 + 1; i5 = HEAPU8[i5 >> 0] | 0; } else i5 = ___shgetc(i13) | 0; i6 = HEAP8[35369 + i5 >> 0] | 0; i7 = i6 & 255; } while (i3 >>> 0 < 134217728 & i7 >>> 0 < i4 >>> 0); i7 = 0; } else { i5 = i3; i7 = 0; i3 = 0; } i8 = _bitshift64Lshr(-1, -1, i10 | 0) | 0; i9 = tempRet0; if ((i6 & 255) >>> 0 >= i4 >>> 0 | (i7 >>> 0 > i9 >>> 0 | (i7 | 0) == (i9 | 0) & i3 >>> 0 > i8 >>> 0)) { i6 = i7; i10 = 72; break; } else i5 = i7; while (1) { i3 = _bitshift64Shl(i3 | 0, i5 | 0, i10 | 0) | 0; i7 = tempRet0; i3 = i6 & 255 | i3; i5 = HEAP32[i15 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i5 + 1; i5 = HEAPU8[i5 >> 0] | 0; } else i5 = ___shgetc(i13) | 0; i6 = HEAP8[35369 + i5 >> 0] | 0; if ((i6 & 255) >>> 0 >= i4 >>> 0 | (i7 >>> 0 > i9 >>> 0 | (i7 | 0) == (i9 | 0) & i3 >>> 0 > i8 >>> 0)) { i6 = i7; i10 = 72; break L63; } else i5 = i7; } } i6 = HEAP8[35369 + i3 >> 0] | 0; i5 = i6 & 255; if (i5 >>> 0 < i4 >>> 0) { i3 = 0; i7 = i5; do { i3 = i7 + (Math_imul(i3, i4) | 0) | 0; i5 = HEAP32[i15 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i5 + 1; i5 = HEAPU8[i5 >> 0] | 0; } else i5 = ___shgetc(i13) | 0; i6 = HEAP8[35369 + i5 >> 0] | 0; i7 = i6 & 255; } while (i3 >>> 0 < 119304647 & i7 >>> 0 < i4 >>> 0); i7 = 0; } else { i5 = i3; i3 = 0; i7 = 0; } if ((i6 & 255) >>> 0 < i4 >>> 0) { i10 = ___udivdi3(-1, -1, i4 | 0, 0) | 0; i11 = tempRet0; i9 = i7; while (1) { if (i9 >>> 0 > i11 >>> 0 | (i9 | 0) == (i11 | 0) & i3 >>> 0 > i10 >>> 0) { i6 = i9; i10 = 72; break L63; } i7 = ___muldi3(i3 | 0, i9 | 0, i4 | 0, 0) | 0; i8 = tempRet0; i6 = i6 & 255; if (i8 >>> 0 > 4294967295 | (i8 | 0) == -1 & i7 >>> 0 > ~i6 >>> 0) { i6 = i9; i10 = 72; break L63; } i3 = _i64Add(i6 | 0, 0, i7 | 0, i8 | 0) | 0; i7 = tempRet0; i5 = HEAP32[i15 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i5 + 1; i5 = HEAPU8[i5 >> 0] | 0; } else i5 = ___shgetc(i13) | 0; i6 = HEAP8[35369 + i5 >> 0] | 0; if ((i6 & 255) >>> 0 >= i4 >>> 0) { i6 = i7; i10 = 72; break; } else i9 = i7; } } else { i6 = i7; i10 = 72; } } while (0); if ((i10 | 0) == 72) if ((HEAPU8[35369 + i5 >> 0] | 0) >>> 0 < i4 >>> 0) { do { i3 = HEAP32[i15 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i14 >> 2] | 0) >>> 0) { HEAP32[i15 >> 2] = i3 + 1; i3 = HEAPU8[i3 >> 0] | 0; } else i3 = ___shgetc(i13) | 0; } while ((HEAPU8[35369 + i3 >> 0] | 0) >>> 0 < i4 >>> 0); i5 = ___errno_location() | 0; HEAP32[i5 >> 2] = 34; i5 = (i1 & 1 | 0) == 0 & 0 == 0 ? i12 : 0; i4 = i2; i3 = i1; } else { i5 = i12; i4 = i6; } if (HEAP32[i14 >> 2] | 0) HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + -1; if (!(i4 >>> 0 < i2 >>> 0 | (i4 | 0) == (i2 | 0) & i3 >>> 0 < i1 >>> 0)) { if (!((i1 & 1 | 0) != 0 | 0 != 0 | (i5 | 0) != 0)) { i15 = ___errno_location() | 0; HEAP32[i15 >> 2] = 34; i1 = _i64Add(i1 | 0, i2 | 0, -1, -1) | 0; i2 = tempRet0; break; } if (i4 >>> 0 > i2 >>> 0 | (i4 | 0) == (i2 | 0) & i3 >>> 0 > i1 >>> 0) { i15 = ___errno_location() | 0; HEAP32[i15 >> 2] = 34; break; } } i1 = ((i5 | 0) < 0) << 31 >> 31; i1 = _i64Subtract(i3 ^ i5 | 0, i4 ^ i1 | 0, i5 | 0, i1 | 0) | 0; i2 = tempRet0; } while (0); tempRet0 = i2; return i1 | 0; } function __ZNSt3__211__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri(i1, i3, i2, i4, i6, i7, i8, i9, i5, i11) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; i4 = i4 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; i5 = i5 | 0; i11 = i11 | 0; var i10 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i10 = i12; if (i1) { i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49212) | 0; if (i3) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 255](i10, i2); i1 = HEAP32[i10 >> 2] | 0; HEAP8[i4 >> 0] = i1; HEAP8[i4 + 1 >> 0] = i1 >> 8; HEAP8[i4 + 2 >> 0] = i1 >> 16; HEAP8[i4 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 255](i10, i2); i1 = i5 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i5 >> 2] >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; } else { HEAP32[i5 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i5, 0); HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); } else { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 255](i10, i2); i1 = HEAP32[i10 >> 2] | 0; HEAP8[i4 >> 0] = i1; HEAP8[i4 + 1 >> 0] = i1 >> 8; HEAP8[i4 + 2 >> 0] = i1 >> 16; HEAP8[i4 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 255](i10, i2); i1 = i5 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i5 >> 2] >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; } else { HEAP32[i5 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i5, 0); HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); } i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0; HEAP32[i6 >> 2] = i1; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0; HEAP32[i7 >> 2] = i1; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i10, i2); i1 = i8 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i8 >> 2] >> 0] = 0; HEAP32[i8 + 4 >> 2] = 0; i1 = i8; } else { HEAP8[i8 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i8; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i8, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i10, i2); i1 = i9 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i9 >> 2] >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; } else { HEAP32[i9 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i9, 0); HEAP32[i9 >> 2] = HEAP32[i10 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; } else { i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49204) | 0; if (i3) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 255](i10, i2); i1 = HEAP32[i10 >> 2] | 0; HEAP8[i4 >> 0] = i1; HEAP8[i4 + 1 >> 0] = i1 >> 8; HEAP8[i4 + 2 >> 0] = i1 >> 16; HEAP8[i4 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 255](i10, i2); i1 = i5 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i5 >> 2] >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; } else { HEAP32[i5 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i5, 0); HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); } else { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 255](i10, i2); i1 = HEAP32[i10 >> 2] | 0; HEAP8[i4 >> 0] = i1; HEAP8[i4 + 1 >> 0] = i1 >> 8; HEAP8[i4 + 2 >> 0] = i1 >> 16; HEAP8[i4 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 255](i10, i2); i1 = i5 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i5 >> 2] >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; } else { HEAP32[i5 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i5, 0); HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); } i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0; HEAP32[i6 >> 2] = i1; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0; HEAP32[i7 >> 2] = i1; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i10, i2); i1 = i8 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i8 >> 2] >> 0] = 0; HEAP32[i8 + 4 >> 2] = 0; i1 = i8; } else { HEAP8[i8 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i8; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i8, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i10, i2); i1 = i9 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i9 >> 2] >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; } else { HEAP32[i9 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i9, 0); HEAP32[i9 >> 2] = HEAP32[i10 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; } HEAP32[i11 >> 2] = i1; STACKTOP = i12; return; } function __ZNSt3__211__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_SF_Ri(i1, i2, i3, i6, i7, i8, i9, i5, i4, i11) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; i5 = i5 | 0; i4 = i4 | 0; i11 = i11 | 0; var i10 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i10 = i12; if (i1) { i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49196) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 255](i10, i2); i1 = HEAP32[i10 >> 2] | 0; HEAP8[i3 >> 0] = i1; HEAP8[i3 + 1 >> 0] = i1 >> 8; HEAP8[i3 + 2 >> 0] = i1 >> 16; HEAP8[i3 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 255](i10, i2); i1 = i4 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i4 >> 2] >> 0] = 0; HEAP32[i4 + 4 >> 2] = 0; i1 = i4; } else { HEAP8[i4 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i4; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i4, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 255](i10, i2); i1 = i5 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i5 >> 2] >> 0] = 0; HEAP32[i5 + 4 >> 2] = 0; i1 = i5; } else { HEAP8[i5 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i5; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i5, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0; HEAP8[i6 >> 0] = i1; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0; HEAP8[i7 >> 0] = i1; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i10, i2); i1 = i8 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i8 >> 2] >> 0] = 0; HEAP32[i8 + 4 >> 2] = 0; i1 = i8; } else { HEAP8[i8 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i8; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i8, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i10, i2); i1 = i9 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i9 >> 2] >> 0] = 0; HEAP32[i9 + 4 >> 2] = 0; i1 = i9; } else { HEAP8[i9 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i9; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i9, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; } else { i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49188) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 255](i10, i2); i1 = HEAP32[i10 >> 2] | 0; HEAP8[i3 >> 0] = i1; HEAP8[i3 + 1 >> 0] = i1 >> 8; HEAP8[i3 + 2 >> 0] = i1 >> 16; HEAP8[i3 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 255](i10, i2); i1 = i4 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i4 >> 2] >> 0] = 0; HEAP32[i4 + 4 >> 2] = 0; i1 = i4; } else { HEAP8[i4 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i4; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i4, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 255](i10, i2); i1 = i5 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i5 >> 2] >> 0] = 0; HEAP32[i5 + 4 >> 2] = 0; i1 = i5; } else { HEAP8[i5 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i5; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i5, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0; HEAP8[i6 >> 0] = i1; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0; HEAP8[i7 >> 0] = i1; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i10, i2); i1 = i8 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i8 >> 2] >> 0] = 0; HEAP32[i8 + 4 >> 2] = 0; i1 = i8; } else { HEAP8[i8 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i8; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i8, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i10, i2); i1 = i9 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i9 >> 2] >> 0] = 0; HEAP32[i9 + 4 >> 2] = 0; i1 = i9; } else { HEAP8[i9 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i9; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i9, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; } HEAP32[i11 >> 2] = i1; STACKTOP = i12; return; } function __ZNSt3__211__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_SJ_Ri(i1, i2, i3, i6, i7, i8, i9, i5, i4, i11) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; i5 = i5 | 0; i4 = i4 | 0; i11 = i11 | 0; var i10 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i10 = i12; if (i1) { i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49212) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 255](i10, i2); i1 = HEAP32[i10 >> 2] | 0; HEAP8[i3 >> 0] = i1; HEAP8[i3 + 1 >> 0] = i1 >> 8; HEAP8[i3 + 2 >> 0] = i1 >> 16; HEAP8[i3 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 255](i10, i2); i1 = i4 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i4 >> 2] >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; } else { HEAP32[i4 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i4, 0); HEAP32[i4 >> 2] = HEAP32[i10 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 255](i10, i2); i1 = i5 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i5 >> 2] >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; } else { HEAP32[i5 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i5, 0); HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0; HEAP32[i6 >> 2] = i1; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0; HEAP32[i7 >> 2] = i1; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i10, i2); i1 = i8 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i8 >> 2] >> 0] = 0; HEAP32[i8 + 4 >> 2] = 0; i1 = i8; } else { HEAP8[i8 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i8; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i8, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i10, i2); i1 = i9 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i9 >> 2] >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; } else { HEAP32[i9 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i9, 0); HEAP32[i9 >> 2] = HEAP32[i10 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; } else { i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49204) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 44 >> 2] & 255](i10, i2); i1 = HEAP32[i10 >> 2] | 0; HEAP8[i3 >> 0] = i1; HEAP8[i3 + 1 >> 0] = i1 >> 8; HEAP8[i3 + 2 >> 0] = i1 >> 16; HEAP8[i3 + 3 >> 0] = i1 >> 24; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 32 >> 2] & 255](i10, i2); i1 = i4 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i4 >> 2] >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; } else { HEAP32[i4 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i4, 0); HEAP32[i4 >> 2] = HEAP32[i10 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 255](i10, i2); i1 = i5 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i5 >> 2] >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; } else { HEAP32[i5 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i5, 0); HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 127](i2) | 0; HEAP32[i6 >> 2] = i1; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 127](i2) | 0; HEAP32[i7 >> 2] = i1; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i10, i2); i1 = i8 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i8 >> 2] >> 0] = 0; HEAP32[i8 + 4 >> 2] = 0; i1 = i8; } else { HEAP8[i8 >> 0] = 0; HEAP8[i1 >> 0] = 0; i1 = i8; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i8, 0); HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i10, i2); i1 = i9 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i9 >> 2] >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; } else { HEAP32[i9 >> 2] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i9, 0); HEAP32[i9 >> 2] = HEAP32[i10 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i10); i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; } HEAP32[i11 >> 2] = i1; STACKTOP = i12; return; } function __ZN6cashew5Value9stringifyERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEb(i1, i8, i6) { i1 = i1 | 0; i8 = i8 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i9; L1 : do switch (HEAP32[i1 >> 2] | 0) { case 0: { i1 = i1 + 8 | 0; if (!(HEAP32[i1 >> 2] | 0)) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 16602) | 0; break L1; } else { i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 34) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, HEAP32[i1 >> 2] | 0) | 0, 34) | 0; break L1; } } case 1: { HEAP32[i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) + 8 >> 2] = 17; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEd(i8, +HEAPF64[i1 + 8 >> 3]) | 0; break; } case 2: { i3 = i1 + 8 | 0; i5 = HEAP32[i3 >> 2] | 0; if ((HEAP32[i5 + 4 >> 2] | 0) == (HEAP32[i5 >> 2] | 0)) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 16611) | 0; break L1; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 91) | 0; if (i6) { i5 = __ZNKSt3__28ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i7 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i7); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; HEAP32[11252] = (HEAP32[11252] | 0) + 1; } i1 = 0; while (1) { i5 = HEAP32[i3 >> 2] | 0; if (i1 >>> 0 >= (HEAP32[i5 + 4 >> 2] | 0) - (HEAP32[i5 >> 2] | 0) >> 2 >>> 0) break; do if (i1) if (i6) { i2 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 43657) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i7 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i7); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i2, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i2) | 0; i2 = 0; break; } else { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 42455) | 0; i2 = 0; break; } else i2 = 0; while (0); while (1) { if ((i2 | 0) >= (HEAP32[11252] | 0)) break; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 33275) | 0; i2 = i2 + 1 | 0; } __ZN6cashew5Value9stringifyERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[(HEAP32[HEAP32[i3 >> 2] >> 2] | 0) + (i1 << 2) >> 2] | 0, i8, i6); i1 = i1 + 1 | 0; } if (i6) { i1 = __ZNKSt3__28ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i7 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 10) | 0; __ZNSt3__26localeD2Ev(i7); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i1) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; HEAP32[11252] = (HEAP32[11252] | 0) + -1; i1 = 0; } else i1 = 0; while (1) { if ((i1 | 0) >= (HEAP32[11252] | 0)) break; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 33275) | 0; i1 = i1 + 1 | 0; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 93) | 0; break; } case 3: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 16614) | 0; break; } case 4: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, HEAP8[i1 + 8 >> 0] | 0 ? 43517 : 43511) | 0; break; } case 5: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 123) | 0; if (i6) { i5 = __ZNKSt3__28ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i7 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i7); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; HEAP32[11252] = (HEAP32[11252] | 0) + 1; i5 = i8; } else i5 = i8; i2 = 1; i1 = (HEAP32[i1 + 8 >> 2] | 0) + 8 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) break; i4 = i1; i3 = HEAP32[i4 + 8 >> 2] | 0; i4 = HEAP32[i4 + 12 >> 2] | 0; if (!i2 ? (__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 42455) | 0, i6) : 0) { i2 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i7 >> 2] = i2; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47476) | 0; i2 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 31](i2, 10) | 0; __ZNSt3__26localeD2Ev(i7); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i2) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; i2 = 0; } else i2 = 0; while (1) { if ((i2 | 0) >= (HEAP32[11252] | 0)) break; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 33275) | 0; i2 = i2 + 1 | 0; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 34) | 0, i3) | 0, 16619) | 0; __ZN6cashew5Value9stringifyERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEb(i4, i8, i6); i2 = 0; } if (i6) { i1 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i7 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 10) | 0; __ZNSt3__26localeD2Ev(i7); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i1) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; HEAP32[11252] = (HEAP32[11252] | 0) + -1; i1 = 0; } else i1 = 0; while (1) { if ((i1 | 0) >= (HEAP32[11252] | 0)) break; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i8, 33275) | 0; i1 = i1 + 1 | 0; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i8, 125) | 0; break; } default: {} } while (0); STACKTOP = i9; return; } function __ZN4wasm16PrintSExpression10visitUnaryEPNS_5UnaryE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i1 >> 2] | 0, 40) | 0; __Z12prepareColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(HEAP32[i1 >> 2] | 0) | 0; do switch (HEAP32[i2 + 8 >> 2] | 0) { case 0: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32370) | 0; break; } case 2: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32378) | 0; break; } case 4: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32386) | 0; break; } case 20: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32397) | 0; break; } case 1: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32405) | 0; break; } case 3: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32413) | 0; break; } case 5: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32421) | 0; break; } case 21: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32432) | 0; break; } case 6: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32440) | 0; break; } case 8: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32448) | 0; break; } case 10: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32456) | 0; break; } case 12: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32465) | 0; break; } case 14: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32475) | 0; break; } case 16: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32485) | 0; break; } case 18: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32497) | 0; break; } case 7: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32506) | 0; break; } case 9: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32514) | 0; break; } case 11: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32522) | 0; break; } case 13: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32531) | 0; break; } case 15: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32541) | 0; break; } case 17: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32551) | 0; break; } case 19: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32563) | 0; break; } case 22: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32572) | 0; break; } case 23: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32589) | 0; break; } case 24: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32606) | 0; break; } case 25: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32619) | 0; break; } case 26: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32635) | 0; break; } case 27: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32651) | 0; break; } case 28: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32667) | 0; break; } case 29: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32683) | 0; break; } case 30: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32699) | 0; break; } case 31: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32715) | 0; break; } case 32: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32731) | 0; break; } case 33: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32747) | 0; break; } case 34: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32767) | 0; break; } case 37: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32787) | 0; break; } case 38: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32805) | 0; break; } case 35: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32823) | 0; break; } case 36: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32841) | 0; break; } case 41: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32859) | 0; break; } case 42: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32877) | 0; break; } case 39: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32895) | 0; break; } case 40: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32913) | 0; break; } case 43: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32931) | 0; break; } case 44: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32947) | 0; break; } case 45: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32962) | 0; break; } case 46: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, 32982) | 0; break; } default: _abort(); } while (0); __ZN4wasm16PrintSExpression9incIndentEv(i1); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 12 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i1); return; } function __ZN4wasm12PassRegistry14registerPassesEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0, i26 = 0, i27 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 608 | 0; i27 = i2 + 576 | 0; i26 = i2 + 552 | 0; i25 = i2 + 528 | 0; i24 = i2 + 504 | 0; i23 = i2 + 480 | 0; i22 = i2 + 456 | 0; i21 = i2 + 432 | 0; i20 = i2 + 408 | 0; i19 = i2 + 384 | 0; i18 = i2 + 360 | 0; i17 = i2 + 336 | 0; i16 = i2 + 312 | 0; i15 = i2 + 288 | 0; i14 = i2 + 264 | 0; i13 = i2 + 240 | 0; i12 = i2 + 216 | 0; i11 = i2 + 192 | 0; i10 = i2 + 168 | 0; i9 = i2 + 144 | 0; i8 = i2 + 120 | 0; i7 = i2 + 96 | 0; i6 = i2 + 72 | 0; i5 = i2 + 48 | 0; i4 = i2 + 24 | 0; i3 = i2; HEAP32[i27 >> 2] = 2972; HEAP32[i27 + 4 >> 2] = 1; HEAP32[i27 + 16 >> 2] = i27; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 29697, 29713, i27); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i27); HEAP32[i26 >> 2] = 2972; HEAP32[i26 + 4 >> 2] = 2; HEAP32[i26 + 16 >> 2] = i26; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 29746, 29771, i26); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i26); HEAP32[i25 >> 2] = 2972; HEAP32[i25 + 4 >> 2] = 3; HEAP32[i25 + 16 >> 2] = i25; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 29817, 29821, i25); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i25); HEAP32[i24 >> 2] = 2972; HEAP32[i24 + 4 >> 2] = 4; HEAP32[i24 + 16 >> 2] = i24; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 29846, 29865, i24); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i24); HEAP32[i23 >> 2] = 2972; HEAP32[i23 + 4 >> 2] = 5; HEAP32[i23 + 16 >> 2] = i23; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 29921, 29952, i23); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i23); HEAP32[i22 >> 2] = 2972; HEAP32[i22 + 4 >> 2] = 6; HEAP32[i22 + 16 >> 2] = i22; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 29980, 29994, i22); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i22); HEAP32[i21 >> 2] = 2972; HEAP32[i21 + 4 >> 2] = 7; HEAP32[i21 + 16 >> 2] = i21; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30040, 30053, i21); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i21); HEAP32[i20 >> 2] = 2972; HEAP32[i20 + 4 >> 2] = 8; HEAP32[i20 + 16 >> 2] = i20; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30084, 30092, i20); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i20); HEAP32[i19 >> 2] = 2972; HEAP32[i19 + 4 >> 2] = 9; HEAP32[i19 + 16 >> 2] = i19; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30108, 30111, i19); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i19); HEAP32[i18 >> 2] = 2972; HEAP32[i18 + 4 >> 2] = 10; HEAP32[i18 + 16 >> 2] = i18; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30121, 30134, i18); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i18); HEAP32[i17 >> 2] = 2972; HEAP32[i17 + 4 >> 2] = 11; HEAP32[i17 + 16 >> 2] = i17; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30174, 30196, i17); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i17); HEAP32[i16 >> 2] = 2972; HEAP32[i16 + 4 >> 2] = 12; HEAP32[i16 + 16 >> 2] = i16; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30231, 30247, i16); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i16); HEAP32[i15 >> 2] = 2972; HEAP32[i15 + 4 >> 2] = 13; HEAP32[i15 + 16 >> 2] = i15; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 35294, 30305, i15); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i15); HEAP32[i14 >> 2] = 2972; HEAP32[i14 + 4 >> 2] = 14; HEAP32[i14 + 16 >> 2] = i14; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30334, 30349, i14); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i14); HEAP32[i13 >> 2] = 2972; HEAP32[i13 + 4 >> 2] = 15; HEAP32[i13 + 16 >> 2] = i13; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30387, 30398, i13); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i13); HEAP32[i12 >> 2] = 2972; HEAP32[i12 + 4 >> 2] = 16; HEAP32[i12 + 16 >> 2] = i12; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30432, 30447, i12); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i12); HEAP32[i11 >> 2] = 2972; HEAP32[i11 + 4 >> 2] = 17; HEAP32[i11 + 16 >> 2] = i11; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30491, 30505, i11); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i11); HEAP32[i10 >> 2] = 2972; HEAP32[i10 + 4 >> 2] = 18; HEAP32[i10 + 16 >> 2] = i10; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30529, 30547, i10); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i10); HEAP32[i9 >> 2] = 2972; HEAP32[i9 + 4 >> 2] = 19; HEAP32[i9 + 16 >> 2] = i9; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30597, 30621, i9); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i9); HEAP32[i8 >> 2] = 2972; HEAP32[i8 + 4 >> 2] = 20; HEAP32[i8 + 16 >> 2] = i8; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30646, 30666, i8); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i8); HEAP32[i7 >> 2] = 2972; HEAP32[i7 + 4 >> 2] = 21; HEAP32[i7 + 16 >> 2] = i7; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30722, 30740, i7); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i7); HEAP32[i6 >> 2] = 2972; HEAP32[i6 + 4 >> 2] = 22; HEAP32[i6 + 16 >> 2] = i6; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30776, 30791, i6); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i6); HEAP32[i5 >> 2] = 2972; HEAP32[i5 + 4 >> 2] = 23; HEAP32[i5 + 16 >> 2] = i5; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30824, 30840, i5); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i5); HEAP32[i4 >> 2] = 2972; HEAP32[i4 + 4 >> 2] = 24; HEAP32[i4 + 16 >> 2] = i4; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30883, 30890, i4); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i4); HEAP32[i3 >> 2] = 2972; HEAP32[i3 + 4 >> 2] = 25; HEAP32[i3 + 16 >> 2] = i3; __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, 30922, 30933, i3); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i3); STACKTOP = i2; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i11, i18, i19, i13, i20, i14, i1, i15) { i11 = i11 | 0; i18 = i18 | 0; i19 = i19 | 0; i13 = i13 | 0; i20 = i20 | 0; i14 = i14 | 0; i1 = i1 | 0; i15 = i15 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i16 = 0, i17 = 0, i21 = 0, i22 = 0; i22 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i10 = i22 + 12 | 0; i9 = i22 + 8 | 0; i16 = i22 + 4 | 0; i17 = i22; i2 = __ZNKSt3__28ios_base6getlocEv(i13) | 0; HEAP32[i10 >> 2] = i2; i12 = __ZNKSt3__26locale9use_facetERNS0_2idE(i10, 47508) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i2) | 0; HEAP32[i20 >> 2] = 0; i2 = 0; L1 : while (1) { i8 = (i1 | 0) != (i15 | 0); i3 = i2; while (1) { i2 = HEAP32[i18 >> 2] | 0; if (!(i8 & (i3 | 0) == 0)) break L1; i4 = i2; if (i2) { i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAP32[i3 >> 2] | 0; if ((i3 | 0) == -1) { HEAP32[i18 >> 2] = 0; i2 = 0; i6 = 1; i7 = 0; } else { i6 = 0; i7 = i4; } } else { i2 = 0; i6 = 1; i7 = i4; } i5 = HEAP32[i19 >> 2] | 0; i3 = i5; do if (i5) { i4 = HEAP32[i5 + 12 >> 2] | 0; if ((i4 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i4 = HEAP32[i4 >> 2] | 0; if ((i4 | 0) != -1) if (i6) break; else { i21 = 18; break L1; } else { HEAP32[i19 >> 2] = 0; i3 = 0; i21 = 16; break; } } else i21 = 16; while (0); if ((i21 | 0) == 16) { i21 = 0; if (i6) { i21 = 18; break L1; } else i5 = 0; } if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 52 >> 2] & 31](i12, HEAP32[i1 >> 2] | 0, 0) | 0) << 24 >> 24 == 37) { i21 = 20; break; } if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 12 >> 2] & 31](i12, 8192, HEAP32[i1 >> 2] | 0) | 0) { i21 = 28; break; } i4 = i2 + 12 | 0; i3 = HEAP32[i4 >> 2] | 0; i5 = i2 + 16 | 0; if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAP32[i3 >> 2] | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, i3) | 0; if ((i7 | 0) == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, HEAP32[i1 >> 2] | 0) | 0)) { i21 = 56; break; } HEAP32[i20 >> 2] = 4; i3 = 4; } L33 : do if ((i21 | 0) == 20) { i21 = 0; i6 = i1 + 4 | 0; if ((i6 | 0) == (i15 | 0)) { i21 = 21; break L1; } i4 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 52 >> 2] & 31](i12, HEAP32[i6 >> 2] | 0, 0) | 0; switch (i4 << 24 >> 24) { case 48: case 69: { i1 = i1 + 8 | 0; if ((i1 | 0) == (i15 | 0)) { i21 = 26; break L1; } i5 = i4; i2 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 52 >> 2] & 31](i12, HEAP32[i1 >> 2] | 0, 0) | 0; i1 = i6; break; } default: { i5 = 0; i2 = i4; } } i8 = HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] | 0; HEAP32[i16 >> 2] = i7; HEAP32[i17 >> 2] = i3; HEAP32[i9 >> 2] = HEAP32[i16 >> 2]; HEAP32[i10 >> 2] = HEAP32[i17 >> 2]; i8 = FUNCTION_TABLE_iiiiiiiii[i8 & 15](i11, i9, i10, i13, i20, i14, i2, i5) | 0; HEAP32[i18 >> 2] = i8; i1 = i1 + 8 | 0; } else if ((i21 | 0) == 28) { while (1) { i21 = 0; i1 = i1 + 4 | 0; if ((i1 | 0) == (i15 | 0)) { i1 = i15; break; } if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 12 >> 2] & 31](i12, 8192, HEAP32[i1 >> 2] | 0) | 0) i21 = 28; else break; } i3 = i5; i6 = i5; while (1) { if (i2) { i4 = HEAP32[i2 + 12 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i4 = HEAP32[i4 >> 2] | 0; if ((i4 | 0) == -1) { HEAP32[i18 >> 2] = 0; i5 = 1; i2 = 0; } else i5 = 0; } else { i5 = 1; i2 = 0; } do if (i6) { i4 = HEAP32[i6 + 12 >> 2] | 0; if ((i4 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i4 = HEAP32[i4 >> 2] | 0; if ((i4 | 0) != -1) if (i5 ^ (i3 | 0) == 0) { i7 = i3; i6 = i3; break; } else break L33; else { HEAP32[i19 >> 2] = 0; i3 = 0; i21 = 43; break; } } else i21 = 43; while (0); if ((i21 | 0) == 43) { i21 = 0; if (i5) break L33; else { i7 = i3; i6 = 0; } } i4 = i2 + 12 | 0; i3 = HEAP32[i4 >> 2] | 0; i5 = i2 + 16 | 0; if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAP32[i3 >> 2] | 0; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 12 >> 2] & 31](i12, 8192, i3) | 0)) break L33; i3 = HEAP32[i4 >> 2] | 0; if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i3 = i7; continue; } else { HEAP32[i4 >> 2] = i3 + 4; i3 = i7; continue; } } } else if ((i21 | 0) == 56) { i21 = 0; i3 = HEAP32[i4 >> 2] | 0; if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; else HEAP32[i4 >> 2] = i3 + 4; i1 = i1 + 4 | 0; } while (0); i2 = HEAP32[i20 >> 2] | 0; } if ((i21 | 0) == 18) HEAP32[i20 >> 2] = 4; else if ((i21 | 0) == 21) HEAP32[i20 >> 2] = 4; else if ((i21 | 0) == 26) HEAP32[i20 >> 2] = 4; if (i2) { i1 = HEAP32[i2 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i18 >> 2] = 0; i2 = 0; i4 = 1; } else i4 = 0; } else { i2 = 0; i4 = 1; } i1 = HEAP32[i19 >> 2] | 0; do if (i1) { i3 = HEAP32[i1 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i3 >> 2] | 0; if ((i1 | 0) != -1) if (i4) break; else { i21 = 76; break; } else { HEAP32[i19 >> 2] = 0; i21 = 74; break; } } else i21 = 74; while (0); if ((i21 | 0) == 74 ? i4 : 0) i21 = 76; if ((i21 | 0) == 76) HEAP32[i20 >> 2] = HEAP32[i20 >> 2] | 2; STACKTOP = i22; return i2 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_120parse_function_paramINS0_2DbEEEPKcS4_S4_RT_(i1, i4, i9) { i1 = i1 | 0; i4 = i4 | 0; i9 = i9 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i10 = i13 + 64 | 0; i3 = i13 + 60 | 0; i11 = i13 + 24 | 0; i8 = i13 + 48 | 0; i12 = i13 + 12 | 0; i7 = i13; L1 : do if ((i4 - i1 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == 102 : 0) { switch (HEAP8[i1 + 1 >> 0] | 0) { case 112: { i2 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i1 + 2 | 0, i4, i3) | 0; i5 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i2, i4) | 0; if ((i5 | 0) != (i4 | 0) ? (HEAP8[i5 >> 0] | 0) == 95 : 0) { HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; HEAP32[i12 + 8 >> 2] = 0; i4 = i5 - i2 | 0; if (i4 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i12); if (i4 >>> 0 < 11) { HEAP8[i12 + 11 >> 0] = i4; i3 = i12; } else { i7 = i4 + 16 & -16; i3 = _malloc(i7) | 0; HEAP32[i12 >> 2] = i3; HEAP32[i12 + 8 >> 2] = i7 | -2147483648; HEAP32[i12 + 4 >> 2] = i4; } i1 = i2; i2 = i3; while (1) { if ((i1 | 0) == (i5 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } HEAP8[i3 + i4 >> 0] = 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i12, 0, 43889) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i11, i8); i1 = i9 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i7 = HEAP32[i9 + 8 >> 2] | 0; i4 = i7; do if (i2 >>> 0 >= i7 >>> 0) { i3 = HEAP32[i9 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i9); else { i6 = (i4 - i3 | 0) / 24 | 0; i7 = i6 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i10, i6 >>> 0 < 89478485 ? (i7 >>> 0 < i2 >>> 0 ? i2 : i7) : 178956970, i1, i9 + 12 | 0); i7 = i10 + 8 | 0; i6 = HEAP32[i7 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i6, i11); HEAP32[i7 >> 2] = i6 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i9, i10); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i10); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); i1 = i5 + 1 | 0; } break L1; } case 76: break; default: break L1; } i2 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1 + 2 | 0, i4) | 0; if ((((i2 | 0) != (i4 | 0) ? (HEAP8[i2 >> 0] | 0) == 112 : 0) ? (i5 = __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i2 + 1 | 0, i4, i3) | 0, i6 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i5, i4) | 0, (i6 | 0) != (i4 | 0)) : 0) ? (HEAP8[i6 >> 0] | 0) == 95 : 0) { HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; HEAP32[i12 + 8 >> 2] = 0; i4 = i6 - i5 | 0; if (i4 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i12); if (i4 >>> 0 < 11) { HEAP8[i12 + 11 >> 0] = i4; i3 = i12; } else { i8 = i4 + 16 & -16; i3 = _malloc(i8) | 0; HEAP32[i12 >> 2] = i3; HEAP32[i12 + 8 >> 2] = i8 | -2147483648; HEAP32[i12 + 4 >> 2] = i4; } i1 = i5; i2 = i3; while (1) { if ((i1 | 0) == (i6 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } HEAP8[i3 + i4 >> 0] = 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i12, 0, 43889) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i11, i7); i1 = i9 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i8 = HEAP32[i9 + 8 >> 2] | 0; i4 = i8; do if (i2 >>> 0 >= i8 >>> 0) { i3 = HEAP32[i9 >> 2] | 0; i1 = (i2 - i3 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i9); else { i5 = (i4 - i3 | 0) / 24 | 0; i8 = i5 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i10, i5 >>> 0 < 89478485 ? (i8 >>> 0 < i2 >>> 0 ? i2 : i8) : 178956970, i1, i9 + 12 | 0); i8 = i10 + 8 | 0; i5 = HEAP32[i8 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i5, i11); HEAP32[i8 >> 2] = i5 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i9, i10); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i10); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); i1 = i6 + 1 | 0; } } while (0); STACKTOP = i13; return i1 | 0; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i10, i19, i20, i13, i21, i14, i1, i15) { i10 = i10 | 0; i19 = i19 | 0; i20 = i20 | 0; i13 = i13 | 0; i21 = i21 | 0; i14 = i14 | 0; i1 = i1 | 0; i15 = i15 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i16 = 0, i17 = 0, i18 = 0, i22 = 0, i23 = 0; i23 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i23 + 12 | 0; i8 = i23 + 8 | 0; i17 = i23 + 4 | 0; i18 = i23; i12 = __ZNKSt3__28ios_base6getlocEv(i13) | 0; HEAP32[i9 >> 2] = i12; i11 = __ZNKSt3__26locale9use_facetERNS0_2idE(i9, 47476) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i12) | 0; HEAP32[i21 >> 2] = 0; i12 = i11 + 8 | 0; i2 = i1; i1 = 0; L1 : while (1) { i7 = (i2 | 0) != (i15 | 0); i3 = i1; while (1) { i1 = HEAP32[i19 >> 2] | 0; if (!(i7 & (i3 | 0) == 0)) break L1; i3 = i1; if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i19 >> 2] = 0; i1 = 0; i3 = 0; } } else i1 = 0; i6 = (i1 | 0) == 0; i5 = HEAP32[i20 >> 2] | 0; i4 = i5; do if (i5) { if ((HEAP32[i5 + 12 >> 2] | 0) == (HEAP32[i5 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) == -1 : 0) { HEAP32[i20 >> 2] = 0; i4 = 0; i22 = 13; break; } if (!i6) { i22 = 14; break L1; } } else i22 = 13; while (0); if ((i22 | 0) == 13) { i22 = 0; if (i6) { i22 = 14; break L1; } else i5 = 0; } if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] & 31](i11, HEAP8[i2 >> 0] | 0, 0) | 0) << 24 >> 24 == 37) { i22 = 16; break; } i3 = HEAP8[i2 >> 0] | 0; if (i3 << 24 >> 24 > -1 ? (i16 = HEAP32[i12 >> 2] | 0, HEAP16[i16 + (i3 << 24 >> 24 << 1) >> 1] & 8192) : 0) { i22 = 25; break; } i4 = i1 + 12 | 0; i3 = HEAP32[i4 >> 2] | 0; i5 = i1 + 16 | 0; if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i3 = HEAPU8[i3 >> 0] | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 12 >> 2] & 31](i11, i3 & 255) | 0; if (i6 << 24 >> 24 == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 12 >> 2] & 31](i11, HEAP8[i2 >> 0] | 0) | 0) << 24 >> 24) { i22 = 52; break; } HEAP32[i21 >> 2] = 4; i3 = 4; } L29 : do if ((i22 | 0) == 16) { i22 = 0; i7 = i2 + 1 | 0; if ((i7 | 0) == (i15 | 0)) { i22 = 17; break L1; } i5 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] & 31](i11, HEAP8[i7 >> 0] | 0, 0) | 0; switch (i5 << 24 >> 24) { case 48: case 69: { i2 = i2 + 2 | 0; if ((i2 | 0) == (i15 | 0)) { i22 = 22; break L1; } i6 = i5; i1 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] & 31](i11, HEAP8[i2 >> 0] | 0, 0) | 0; i2 = i7; break; } default: { i6 = 0; i1 = i5; } } i7 = HEAP32[(HEAP32[i10 >> 2] | 0) + 36 >> 2] | 0; HEAP32[i17 >> 2] = i3; HEAP32[i18 >> 2] = i4; HEAP32[i8 >> 2] = HEAP32[i17 >> 2]; HEAP32[i9 >> 2] = HEAP32[i18 >> 2]; i1 = FUNCTION_TABLE_iiiiiiiii[i7 & 15](i10, i8, i9, i13, i21, i14, i1, i6) | 0; HEAP32[i19 >> 2] = i1; i1 = i2 + 2 | 0; } else if ((i22 | 0) == 25) { while (1) { i22 = 0; i2 = i2 + 1 | 0; if ((i2 | 0) == (i15 | 0)) { i2 = i15; break; } i3 = HEAP8[i2 >> 0] | 0; if (i3 << 24 >> 24 <= -1) break; if (!(HEAP16[i16 + (i3 << 24 >> 24 << 1) >> 1] & 8192)) break; else i22 = 25; } i3 = i5; while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i19 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; do if (i5) { if ((HEAP32[i5 + 12 >> 2] | 0) != (HEAP32[i5 + 16 >> 2] | 0)) if (i4) { i7 = i3; break; } else { i1 = i2; break L29; } if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) != -1) if (i4 ^ (i3 | 0) == 0) { i7 = i3; i5 = i3; break; } else { i1 = i2; break L29; } else { HEAP32[i20 >> 2] = 0; i3 = 0; i22 = 38; break; } } else i22 = 38; while (0); if ((i22 | 0) == 38) { i22 = 0; if (i4) { i1 = i2; break L29; } else { i7 = i3; i5 = 0; } } i4 = i1 + 12 | 0; i3 = HEAP32[i4 >> 2] | 0; i6 = i1 + 16 | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i3 = HEAPU8[i3 >> 0] | 0; if ((i3 & 255) << 24 >> 24 <= -1) { i1 = i2; break L29; } if (!(HEAP16[(HEAP32[i12 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 8192)) { i1 = i2; break L29; } i3 = HEAP32[i4 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; i3 = i7; continue; } else { HEAP32[i4 >> 2] = i3 + 1; i3 = i7; continue; } } } else if ((i22 | 0) == 52) { i22 = 0; i3 = HEAP32[i4 >> 2] | 0; if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; else HEAP32[i4 >> 2] = i3 + 1; i1 = i2 + 1 | 0; } while (0); i2 = i1; i1 = HEAP32[i21 >> 2] | 0; } if ((i22 | 0) == 14) HEAP32[i21 >> 2] = 4; else if ((i22 | 0) == 17) HEAP32[i21 >> 2] = 4; else if ((i22 | 0) == 22) HEAP32[i21 >> 2] = 4; if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i19 >> 2] = 0; i1 = 0; } } else i1 = 0; i2 = (i1 | 0) == 0; i3 = HEAP32[i20 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i20 >> 2] = 0; i22 = 67; break; } if (!i2) i22 = 68; } else i22 = 67; while (0); if ((i22 | 0) == 67 ? i2 : 0) i22 = 68; if ((i22 | 0) == 68) HEAP32[i21 >> 2] = HEAP32[i21 >> 2] | 2; STACKTOP = i23; return i1 | 0; } function __ZN6cashew4InitC2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i4 + 4 | 0; i2 = i4; HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; i1 = HEAP32[11354] | 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 43697); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA2_KcbNS2_4TypeEEEEvDpOT_(45412, 43697, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 1; HEAP32[i2 >> 2] = 1; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 33899); HEAP8[i1 + 32 >> 0] = 1; HEAP32[i1 + 36 >> 2] = 1; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA8_KcbNS2_4TypeEEEEvDpOT_(45412, 33899, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 33907); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA6_KcbNS2_4TypeEEEEvDpOT_(45412, 33907, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 33913); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA4_KcbNS2_4TypeEEEEvDpOT_(45412, 33913, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 33917); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA10_KcbNS2_4TypeEEEEvDpOT_(45412, 33917, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 33927); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA10_KcbNS2_4TypeEEEEvDpOT_(45412, 33927, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 33937); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA6_KcbNS2_4TypeEEEEvDpOT_(45412, 33937, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 42503); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA2_KcbNS2_4TypeEEEEvDpOT_(45412, 42503, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 43704); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA2_KcbNS2_4TypeEEEEvDpOT_(45412, 43704, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 0; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 43769); HEAP8[i1 + 32 >> 0] = 0; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA2_KcbNS2_4TypeEEEEvDpOT_(45412, 43769, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 1; HEAP32[i2 >> 2] = 3; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 33943); HEAP8[i1 + 32 >> 0] = 1; HEAP32[i1 + 36 >> 2] = 3; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA4_KcbNS2_4TypeEEEEvDpOT_(45412, 33943, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 1; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 43630); HEAP8[i1 + 32 >> 0] = 1; HEAP32[i1 + 36 >> 2] = 0; i1 = (HEAP32[11354] | 0) + 40 | 0; HEAP32[11354] = i1; } else { __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA2_KcbNS2_4TypeEEEEvDpOT_(45412, 43630, i3, i2); i1 = HEAP32[11354] | 0; } HEAP8[i3 >> 0] = 1; HEAP32[i2 >> 2] = 0; if (i1 >>> 0 < (HEAP32[11355] | 0) >>> 0) { __ZN6cashew10IStringSetC2EPKc(i1, 43657); HEAP8[i1 + 32 >> 0] = 1; HEAP32[i1 + 36 >> 2] = 0; HEAP32[11354] = (HEAP32[11354] | 0) + 40; } else __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA2_KcbNS2_4TypeEEEEvDpOT_(45412, 43657, i3, i2); __ZNSt3__26vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE6resizeEj(45424, 4); i2 = 0; while (1) { i1 = HEAP32[11353] | 0; if (i2 >>> 0 >= (((HEAP32[11354] | 0) - i1 | 0) / 40 | 0) >>> 0) break; i1 = i1 + (i2 * 40 | 0) + 8 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) break; HEAP32[i3 >> 2] = HEAP32[i1 + 8 >> 2]; i5 = __ZNSt3__213unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS9_((HEAP32[11356] | 0) + ((HEAP32[(HEAP32[11353] | 0) + (i2 * 40 | 0) + 36 >> 2] | 0) * 20 | 0) | 0, i3) | 0; HEAP32[i5 >> 2] = i2; } i2 = i2 + 1 | 0; } STACKTOP = i4; return; } function __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i3, i4, i7, i16) { i3 = i3 | 0; i4 = i4 | 0; i7 = i7 | 0; i16 = i16 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0; i18 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i2 = i18 + 36 | 0; i1 = i18 + 32 | 0; i9 = i18 + 28 | 0; i10 = i18 + 24 | 0; i11 = i18 + 20 | 0; i12 = i18 + 16 | 0; i13 = i18 + 12 | 0; i14 = i18 + 8 | 0; i5 = i18 + 4 | 0; i6 = i18; i19 = __ZN6cashew3RefixEj(i3, 0) | 0; i19 = __ZN6cashew5Value10getCStringEv(HEAP32[i19 >> 2] | 0) | 0; L1 : do switch (HEAP8[i19 >> 0] | 0) { case 110: { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45112) | 0) { i15 = __ZN6cashew3RefixEj(i3, 1) | 0; i15 = __ZN6cashew5Value9getNumberEv(HEAP32[i15 >> 2] | 0) | 0; i15 = (__ZN4wasm9isIntegerEd(+HEAPF64[i15 >> 3]) | 0) & 1 ^ 1; break L1; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45056) | 0) { if (i4 | 0 ? (i8 = __ZN6cashew3RefixEj(i3, 1) | 0, __ZN6cashew7IStringC2EPKcb(i2, __ZN6cashew5Value10getCStringEv(HEAP32[i8 >> 2] | 0) | 0, 1), i8 = __ZN7AsmData7getTypeERKN6cashew7IStringE(i4, i2) | 0, (i8 | 0) != 8) : 0) { i15 = i8; break L1; } if (!i7) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 1) | 0, 45136) | 0) { i15 = 1; break L1; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 1) | 0, 45140) | 0) { i15 = 1; break L1; } i15 = __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 1) | 0, 45144) | 0; i15 = i15 ? 0 : 8; break L1; } i19 = (HEAP32[11375] | 0) == 0; i1 = __ZN6cashew3RefixEj(i3, 1) | 0; if (i19) { i15 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0; HEAP32[11375] = HEAP32[i15 >> 2]; i15 = 2; break L1; } if (__ZN6cashew3RefeqERKNS_7IStringE(i1, 45500) | 0) i15 = 2; else ___assert_fail(34183, 34209, 73, 34255); } else i17 = 40; break; } case 117: { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45160) | 0) { i19 = __ZN6cashew3RefixEj(i3, 1) | 0; i19 = __ZN6cashew5Value10getCStringEv(HEAP32[i19 >> 2] | 0) | 0; switch (HEAP8[i19 >> 0] | 0) { case 43: { i15 = 1; break L1; } case 45: { i15 = __ZN6cashew3RefixEj(i3, 2) | 0; HEAP32[i9 >> 2] = HEAP32[i15 >> 2]; HEAP32[i10 >> 2] = HEAP32[i16 >> 2]; HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; HEAP32[i2 >> 2] = HEAP32[i10 >> 2]; i15 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i4, i7, i2) | 0; break L1; } case 126: case 33: { i15 = 0; break L1; } default: { i17 = 40; break L1; } } } else i17 = 40; break; } case 99: { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45108) | 0)) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45068) | 0)) { i17 = 40; break L1; } i15 = __ZN6cashew3RefixEj(i3, 2) | 0; HEAP32[i11 >> 2] = HEAP32[i15 >> 2]; HEAP32[i12 >> 2] = HEAP32[i16 >> 2]; HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i2 >> 2] = HEAP32[i12 >> 2]; i15 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i4, i7, i2) | 0; break L1; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 0) | 0, 45056) | 0) { i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 1) | 0; i1 = __ZN6cashew5Value10getIStringEv(HEAP32[i1 >> 2] | 0) | 0; i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == (HEAP32[11292] | 0)) { i15 = 2; break L1; } if ((i1 | 0) == (HEAP32[i16 >> 2] | 0)) { i15 = 2; break L1; } if ((i1 | 0) == (HEAP32[11293] | 0) | (i1 | 0) == (HEAP32[11379] | 0)) { i15 = 3; break L1; } if ((i1 | 0) == (HEAP32[11294] | 0) | (i1 | 0) == (HEAP32[11380] | 0)) { i15 = 4; break L1; } if ((i1 | 0) == (HEAP32[11295] | 0) | (i1 | 0) == (HEAP32[11376] | 0)) { i15 = 5; break L1; } if ((i1 | 0) == (HEAP32[11296] | 0) | (i1 | 0) == (HEAP32[11377] | 0)) { i15 = 6; break L1; } if ((i1 | 0) == (HEAP32[11297] | 0) | (i1 | 0) == (HEAP32[11378] | 0)) { i15 = 7; break L1; } } i15 = 8; break; } case 98: { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45072) | 0) { i19 = __ZN6cashew3RefixEj(i3, 1) | 0; i19 = __ZN6cashew5Value10getCStringEv(HEAP32[i19 >> 2] | 0) | 0; switch (HEAP8[i19 >> 0] | 0) { case 33: case 61: case 62: case 60: case 94: case 38: case 124: { i15 = 0; break L1; } case 37: case 47: case 42: case 45: case 43: break; default: { i17 = 40; break L1; } } i15 = __ZN6cashew3RefixEj(i3, 2) | 0; HEAP32[i13 >> 2] = HEAP32[i15 >> 2]; HEAP32[i14 >> 2] = HEAP32[i16 >> 2]; HEAP32[i1 >> 2] = HEAP32[i13 >> 2]; HEAP32[i2 >> 2] = HEAP32[i14 >> 2]; i15 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i4, i7, i2) | 0; } else i17 = 40; break; } case 115: { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45100) | 0) { i15 = __ZN6cashew3RefixEj(i3, 2) | 0; HEAP32[i5 >> 2] = HEAP32[i15 >> 2]; HEAP32[i6 >> 2] = HEAP32[i16 >> 2]; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; i15 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i4, i7, i2) | 0; break L1; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45104) | 0) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 0) | 0, 45056) | 0) { i15 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 1) | 0; __Z9parseHeapPKc(i2, __ZN6cashew5Value10getCStringEv(HEAP32[i15 >> 2] | 0) | 0); i15 = HEAP32[i2 >> 2] | 0; i15 = (i15 & 255) << 24 >> 24 == 0 ? i15 >>> 16 & 255 : 8; break L1; } else ___assert_fail(34266, 34209, 123, 34255); else i17 = 40; break; } default: i17 = 40; } while (0); if ((i17 | 0) == 40) i15 = 8; STACKTOP = i18; return i15 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i9, i10) { i9 = i9 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, d3 = 0.0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i11; HEAP32[i7 >> 2] = i10; L1 : do if (!(__ZN6cashew11isIdentInitEc(HEAP8[i10 >> 0] | 0) | 0)) { i6 = HEAP8[i10 >> 0] | 0; L10 : do if ((i6 + -48 & 255) < 10) if (i6 << 24 >> 24 == 48) { switch (HEAP8[i10 + 1 >> 0] | 0) { case 88: case 120: break; default: { i8 = 20; break L10; } } i1 = i10 + 2 | 0; HEAP32[i7 >> 2] = i1; HEAPF64[i9 >> 3] = 0.0; d3 = 0.0; while (1) { i2 = HEAP8[i1 >> 0] | 0; do if ((i2 + -48 & 255) < 10) { d3 = d3 * 16.0; HEAPF64[i9 >> 3] = d3; d3 = d3 + +((HEAP8[i1 >> 0] | 0) + -48 | 0); HEAPF64[i9 >> 3] = d3; } else { if ((i2 + -97 & 255) < 6) { d3 = d3 * 16.0; HEAPF64[i9 >> 3] = d3; d3 = d3 + +((HEAP8[i1 >> 0] | 0) + -87 | 0); HEAPF64[i9 >> 3] = d3; break; } if ((i2 + -65 & 255) >= 6) break L10; d3 = d3 * 16.0; HEAPF64[i9 >> 3] = d3; d3 = d3 + +((HEAP8[i1 >> 0] | 0) + -55 | 0); HEAPF64[i9 >> 3] = d3; } while (0); i6 = i1 + 1 | 0; HEAP32[i7 >> 2] = i6; i1 = i6; } } else i8 = 20; else { if (i6 << 24 >> 24 == 46 ? ((HEAP8[i10 + 1 >> 0] | 0) + -48 & 255) < 10 : 0) { i8 = 20; break; } i2 = HEAP32[793] | 0; while (1) { i4 = HEAP8[i2 >> 0] | 0; if (!(i4 << 24 >> 24)) { i8 = 56; break; } if (i4 << 24 >> 24 == i6 << 24 >> 24) break; else i2 = i2 + 1 | 0; } if ((i8 | 0) == 56) { i2 = HEAP32[794] | 0; while (1) { i4 = HEAP8[i2 >> 0] | 0; if (!(i4 << 24 >> 24)) break; if (i4 << 24 >> 24 == i6 << 24 >> 24) { i8 = 59; break; } else i2 = i2 + 1 | 0; } if ((i8 | 0) == 59) { HEAP32[i9 + 12 >> 2] = 6; i1 = i10 + 1 | 0; i6 = HEAP8[i1 >> 0] | 0; HEAP8[i1 >> 0] = 0; __ZN6cashew7IString3setEPKcb(i9, i10, 0); HEAP8[i1 >> 0] = i6; HEAP32[i7 >> 2] = i1; i8 = 63; break L1; } switch (i6 << 24 >> 24) { case 39: case 34: { i8 = i10 + 1 | 0; i1 = _strchr(i8, i6 << 24 >> 24) | 0; HEAP8[i1 >> 0] = 0; __ZN6cashew7IString3setEPKcb(i9, i8, 1); i1 = i1 + 1 | 0; HEAP32[i7 >> 2] = i1; HEAP32[i9 + 12 >> 2] = 3; i8 = 63; break L1; } default: { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(28613, i10); _abort(); } } } do switch (i6 << 24 >> 24 | 0) { case 33: { i5 = (HEAP8[i10 + 1 >> 0] | 0) == 61 ? HEAP32[11310] | 0 : HEAP32[11303] | 0; HEAP32[i9 >> 2] = i5; break; } case 37: { i5 = HEAP32[11312] | 0; HEAP32[i9 >> 2] = i5; break; } case 38: { i5 = HEAP32[11301] | 0; HEAP32[i9 >> 2] = i5; break; } case 42: { i5 = HEAP32[11313] | 0; HEAP32[i9 >> 2] = i5; break; } case 43: { i5 = HEAP32[11298] | 0; HEAP32[i9 >> 2] = i5; break; } case 44: { i5 = HEAP32[11333] | 0; HEAP32[i9 >> 2] = i5; break; } case 45: { i5 = HEAP32[11299] | 0; HEAP32[i9 >> 2] = i5; break; } case 46: { i5 = HEAP32[11339] | 0; HEAP32[i9 >> 2] = i5; break; } case 47: { i5 = HEAP32[11311] | 0; HEAP32[i9 >> 2] = i5; break; } case 58: { i5 = HEAP32[11335] | 0; HEAP32[i9 >> 2] = i5; break; } case 60: { i5 = HEAP8[i10 + 1 >> 0] | 0; i5 = HEAP32[(i5 << 24 >> 24 == 60 ? 45260 : i5 << 24 >> 24 == 61 ? 45228 : 45220) >> 2] | 0; HEAP32[i9 >> 2] = i5; break; } case 61: { i5 = (HEAP8[i10 + 1 >> 0] | 0) == 61 ? HEAP32[11309] | 0 : HEAP32[11344] | 0; HEAP32[i9 >> 2] = i5; break; } case 62: { i2 = HEAP8[i10 + 1 >> 0] | 0; if (i2 << 24 >> 24 == 62) i2 = (HEAP8[i10 + 2 >> 0] | 0) == 62 ? 45264 : 45256; else i2 = i2 << 24 >> 24 == 61 ? 45224 : 45232; i5 = HEAP32[i2 >> 2] | 0; HEAP32[i9 >> 2] = i5; break; } case 63: { i5 = HEAP32[11334] | 0; HEAP32[i9 >> 2] = i5; break; } case 94: { i5 = HEAP32[11302] | 0; HEAP32[i9 >> 2] = i5; break; } case 124: { i5 = HEAP32[11300] | 0; HEAP32[i9 >> 2] = i5; break; } case 126: { i5 = HEAP32[11304] | 0; HEAP32[i9 >> 2] = i5; break; } default: _abort(); } while (0); i7 = _strlen(i5) | 0; i2 = i9 + 8 | 0; HEAP32[i2 >> 2] = i7; i7 = i10 + i7 | 0; i4 = HEAP8[i7 >> 0] | 0; HEAP8[i7 >> 0] = 0; if (!(_strcmp(HEAP32[i9 >> 2] | 0, i10) | 0)) { HEAP8[i10 + (HEAP32[i2 >> 2] | 0) >> 0] = i4; HEAP32[i9 + 12 >> 2] = 1; break L1; } else ___assert_fail(28585, 28546, 282, 28580); } while (0); if ((i8 | 0) == 20) { d3 = +_strtod(i10, i7); HEAPF64[i9 >> 3] = d3; i1 = HEAP32[i7 >> 2] | 0; } i2 = i10; while (1) { if ((i2 | 0) == (i1 | 0)) { i8 = 24; break; } if ((HEAP8[i2 >> 0] | 0) == 46) { i2 = 5; break; } else i2 = i2 + 1 | 0; } if ((i8 | 0) == 24) if (__ZN4wasm12isSInteger32Ed(d3) | 0) i2 = 4; else { i2 = __ZN4wasm12isUInteger32Ed(+HEAPF64[i9 >> 3]) | 0; i2 = i2 ? 4 : 5; } HEAP32[i9 + 12 >> 2] = i2; if (i1 >>> 0 > i10 >>> 0) i8 = 63; else ___assert_fail(28534, 28546, 256, 28580); } else { i1 = i10; do { i1 = i1 + 1 | 0; HEAP32[i7 >> 2] = i1; } while (__ZN6cashew11isIdentPartEc(HEAP8[i1 >> 0] | 0) | 0); i2 = HEAP8[i1 >> 0] | 0; if (!(i2 << 24 >> 24)) { __ZN6cashew7IString3setEPKcb(i9, i10, 1); i2 = i9; } else { HEAP8[i1 >> 0] = 0; __ZN6cashew7IString3setEPKcb(i9, i10, 0); i1 = HEAP32[i7 >> 2] | 0; HEAP8[i1 >> 0] = i2; i2 = i9; } i8 = (__ZNKSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(45380, i2) | 0) != 0; HEAP32[i9 + 12 >> 2] = i8 ? 0 : 2; i8 = 63; } while (0); if ((i8 | 0) == 63) HEAP32[i9 + 8 >> 2] = i1 - i10; STACKTOP = i11; return; } function __ZN4wasm22SExpressionWasmBuilder20preParseFunctionTypeERNS_7ElementE(i17, i11) { i17 = i17 | 0; i11 = i11 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i18 = 0, i19 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i10 = i19 + 40 | 0; i16 = i19 + 36 | 0; i1 = i19 + 32 | 0; i18 = i19 + 16 | 0; i12 = i19 + 28 | 0; i13 = i19 + 4 | 0; i14 = i19; i2 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i11, 0) | 0) | 0; if ((i2 | 0) != (HEAP32[11445] | 0)) { if ((i2 | 0) == (HEAP32[11436] | 0)) { HEAP32[i16 >> 2] = 0; HEAP32[i1 >> 2] = 0; i4 = __ZN4wasm22SExpressionWasmBuilder18parseFunctionNamesERNS_7ElementERNS_4NameES4_(i17, i11, i16, i1) | 0; i1 = HEAP32[i16 >> 2] | 0; if (!i1) { i1 = __ZN4wasm4Name7fromIntEj(HEAP32[i17 + 20 >> 2] | 0) | 0; HEAP32[i16 >> 2] = i1; } i2 = i17 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i17 + 16 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i17 + 8 | 0, i16); else { HEAP32[i3 >> 2] = i1; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; } i7 = i17 + 20 | 0; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 1; i7 = i17 + 32 | 0; i8 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7, i16) | 0; HEAP32[i8 >> 2] = 0; HEAP32[i18 >> 2] = 0; i8 = i18 + 4 | 0; HEAP32[i8 >> 2] = 0; HEAP32[i18 + 8 >> 2] = 0; i9 = i18 + 8 | 0; i1 = 0; L12 : while (1) { i6 = (__ZN4wasm7Element4listEv(i11) | 0) + 8 | 0; if (i4 >>> 0 >= (HEAP32[i6 >> 2] | 0) >>> 0) break; i6 = __ZN4wasm7ElementixEj(i11, i4) | 0; i2 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, 0) | 0) | 0; L15 : do if ((i2 | 0) != (HEAP32[11438] | 0)) { if ((i2 | 0) == (HEAP32[11445] | 0)) { i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, 1) | 0) | 0; i6 = HEAP32[i17 >> 2] | 0; HEAP32[i12 >> 2] = i1; HEAP32[i10 >> 2] = HEAP32[i12 >> 2]; if (!(__ZN4wasm6Module17checkFunctionTypeENS_4NameE(i6, i10) | 0)) { i15 = 15; break L12; } i5 = HEAP32[i17 >> 2] | 0; HEAP32[i14 >> 2] = i1; HEAP32[i10 >> 2] = HEAP32[i14 >> 2]; i1 = __ZN4wasm6Module15getFunctionTypeENS_4NameE(i5, i10) | 0; i5 = HEAP32[i1 + 4 >> 2] | 0; i6 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7, i16) | 0; HEAP32[i6 >> 2] = i5; break; } if ((i2 | 0) == (HEAP32[11437] | 0) ? (i5 = (__ZN4wasm7Element4listEv(i6) | 0) + 8 | 0, (HEAP32[i5 >> 2] | 0) >>> 0 > 1) : 0) { i5 = (__ZN4wasm7ElementixEj(i6, 1) | 0) + 24 | 0; if (!(HEAP8[i5 >> 0] | 0)) i2 = 1; else { i2 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i17, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, 2) | 0) | 0, 1, 0) | 0; HEAP32[i10 >> 2] = i2; i3 = HEAP32[i8 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) { HEAP32[i3 >> 2] = i2; HEAP32[i8 >> 2] = i3 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i18, i10); break; } while (1) { i5 = (__ZN4wasm7Element4listEv(i6) | 0) + 8 | 0; if (i2 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break L15; i3 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i17, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, i2) | 0) | 0, 1, 0) | 0; HEAP32[i10 >> 2] = i3; i5 = HEAP32[i8 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) { HEAP32[i5 >> 2] = i3; HEAP32[i8 >> 2] = i5 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i18, i10); i2 = i2 + 1 | 0; } } } else { i5 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i17, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i6, 1) | 0) | 0, 0, 0) | 0; i6 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7, i16) | 0; HEAP32[i6 >> 2] = i5; } while (0); i4 = i4 + 1 | 0; } if ((i15 | 0) == 15) { i19 = ___cxa_allocate_exception(20) | 0; HEAP32[i13 >> 2] = 0; HEAP32[i13 + 4 >> 2] = 0; HEAP32[i13 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i13, 17412, 16); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i19, i13); ___cxa_throw(i19 | 0, 8, 154); } do if (!i1) { i4 = __ZN4wasm11make_uniqueINS_12FunctionTypeEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() | 0; i2 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i7, i16) | 0; HEAP32[i4 + 4 >> 2] = HEAP32[i2 >> 2]; i2 = i4 + 8 | 0; __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE10deallocateEv(i2); HEAP32[i2 >> 2] = HEAP32[i18 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i8 >> 2]; HEAP32[i4 + 16 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = 0; HEAP32[i8 >> 2] = 0; HEAP32[i18 >> 2] = 0; i2 = HEAP32[i17 >> 2] | 0; i3 = HEAP32[i2 + 4 >> 2] | 0; i1 = 1; i2 = HEAP32[i2 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i16 = __ZN4wasm12FunctionType20structuralComparisonERS0_(HEAP32[i2 >> 2] | 0, i4) | 0; i1 = i1 & (i16 ^ 1); if (i16) break; else i2 = i2 + 4 | 0; } if (i1) { __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(HEAP32[i17 >> 2] | 0, i4); break; } if (i4 | 0) { __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i4 + 8 | 0); __ZdlPv(i4); } } while (0); __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i18); } } else __ZN4wasm22SExpressionWasmBuilder9parseTypeERNS_7ElementE(i17, i11); STACKTOP = i19; return; } function __ZN10__cxxabiv112_GLOBAL__N_123parse_binary_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i1, i2, i13, i4) { i1 = i1 | 0; i2 = i2 | 0; i13 = i13 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i14 = i16 + 84 | 0; i15 = i16 + 72 | 0; i9 = i16 + 60 | 0; i10 = i16 + 48 | 0; i11 = i16 + 36 | 0; i12 = i16 + 24 | 0; i6 = i16 + 12 | 0; i7 = i16; i3 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i2, i4) | 0; L1 : do if ((i3 | 0) != (i1 | 0)) { i8 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i3, i2, i4) | 0; i5 = i4 + 4 | 0; if ((i8 | 0) == (i3 | 0)) { i3 = HEAP32[i5 >> 2] | 0; i2 = i3 + -24 | 0; while (1) { if ((i3 | 0) == (i2 | 0)) break L1; i15 = i3 + -24 | 0; HEAP32[i5 >> 2] = i15; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i15); i3 = HEAP32[i5 >> 2] | 0; } } i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i4 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i14, i2 + -24 | 0); i1 = HEAP32[i5 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i4 = i3 + -24 | 0; HEAP32[i5 >> 2] = i4; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i4); i3 = HEAP32[i5 >> 2] | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i15, i1 + -48 | 0); i1 = HEAP32[i5 >> 2] | 0; i5 = i1 + -24 | 0; i2 = i5 + 11 | 0; if ((HEAP8[i2 >> 0] | 0) < 0) { HEAP8[HEAP32[i5 >> 2] >> 0] = 0; HEAP32[i1 + -20 >> 2] = 0; } else { HEAP8[i5 >> 0] = 0; HEAP8[i2 >> 0] = 0; } i3 = i13 + 11 | 0; i2 = HEAP8[i3 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i4 = i13 + 4 | 0; if (((i1 ? HEAP32[i4 >> 2] | 0 : i2 & 255) | 0) == 1 ? (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i1 ? HEAP32[i13 >> 2] | 0 : i13, 42517, 1) | 0) == 0 : 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i5, 40); __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i7, 42453, i15); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i7, 43747) | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i6 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = HEAP8[i3 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i6, i1 ? HEAP32[i13 >> 2] | 0 : i13, i1 ? HEAP32[i4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i12 >> 2] = HEAP32[i2 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i12, 42355) | 0; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = HEAP8[i14 + 11 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i11, i1 ? HEAP32[i14 >> 2] | 0 : i14, i1 ? HEAP32[i14 + 4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i10 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i10, 42358) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = HEAP8[i9 + 11 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i5, i2 ? HEAP32[i9 >> 2] | 0 : i9, i2 ? HEAP32[i9 + 4 >> 2] | 0 : i1 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i11); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); i12 = HEAP8[i3 >> 0] | 0; i1 = i12 << 24 >> 24 < 0; if (((i1 ? HEAP32[i4 >> 2] | 0 : i12 & 255) | 0) == 1 ? (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i1 ? HEAP32[i13 >> 2] | 0 : i13, 42517, 1) | 0) == 0 : 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i5, 41); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); i1 = i8; } } while (0); STACKTOP = i16; return i1 | 0; } function __ZN4wasm10PassRunner36addDefaultFunctionOptimizationPassesEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 192 | 0; i17 = i2 + 168 | 0; i16 = i2 + 156 | 0; i15 = i2 + 144 | 0; i14 = i2 + 132 | 0; i13 = i2 + 120 | 0; i12 = i2 + 108 | 0; i11 = i2 + 96 | 0; i10 = i2 + 84 | 0; i9 = i2 + 72 | 0; i8 = i2 + 60 | 0; i7 = i2 + 48 | 0; i6 = i2 + 36 | 0; i5 = i2 + 24 | 0; i4 = i2 + 12 | 0; i3 = i2; HEAP32[i17 >> 2] = 0; HEAP32[i17 + 4 >> 2] = 0; HEAP32[i17 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i17, 29817, 3); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i17); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17); HEAP32[i16 >> 2] = 0; HEAP32[i16 + 4 >> 2] = 0; HEAP32[i16 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i16, 30529, 17); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i16); HEAP32[i15 >> 2] = 0; HEAP32[i15 + 4 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i15, 30646, 19); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i15); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15); HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i14, 30174, 21); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i14); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i14); HEAP32[i13 >> 2] = 0; HEAP32[i13 + 4 >> 2] = 0; HEAP32[i13 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i13, 30922, 10); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i13); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i13); HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; HEAP32[i12 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i12, 30824, 15); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12); HEAP32[i11 >> 2] = 0; HEAP32[i11 + 4 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i11, 30883, 6); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i11); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i10, 30529, 17); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i10); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i9, 29697, 15); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9); HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i8, 30883, 6); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8); HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, 30776, 14); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); HEAP32[i6 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; HEAP32[i6 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i6, 30040, 12); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i6); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6); HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 30174, 21); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i5); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 30922, 10); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4); HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 30883, 6); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i3); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3); STACKTOP = i2; return; } function __ZN10__cxxabiv112_GLOBAL__N_121parse_integer_literalINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i1, i2, i13, i10) { i1 = i1 | 0; i2 = i2 | 0; i13 = i13 | 0; i10 = i10 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i9 = i15 + 52 | 0; i6 = i15 + 16 | 0; i7 = i15 + 40 | 0; i8 = i15; i14 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i1, i2) | 0; if (!((i14 | 0) == (i1 | 0) | (i14 | 0) == (i2 | 0)) ? (HEAP8[i14 >> 0] | 0) == 69 : 0) { i11 = i13 + 11 | 0; i5 = HEAP8[i11 >> 0] | 0; i12 = i13 + 4 | 0; do if ((i5 << 24 >> 24 < 0 ? HEAP32[i12 >> 2] | 0 : i5 & 255) >>> 0 > 3) { __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i8, 42453, i13); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i8, 42358) | 0; HEAP32[i7 >> 2] = HEAP32[i3 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i6, i7); i2 = i10 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; i4 = HEAP32[i10 + 8 >> 2] | 0; i5 = i4; do if (i3 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i10 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i10); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i9, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 178956970, i2, i10 + 12 | 0); i5 = i9 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i6); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i10, i9); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i9); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i3, i6); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8); } else { i4 = i10 + 4 | 0; i3 = HEAP32[i4 >> 2] | 0; i8 = HEAP32[i10 + 8 >> 2] | 0; i5 = i8; if (i3 >>> 0 < i8 >>> 0) { HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; HEAP32[i3 + 12 >> 2] = 0; HEAP32[i3 + 16 >> 2] = 0; HEAP32[i3 + 20 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = i3 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 24; break; } i4 = HEAP32[i10 >> 2] | 0; i2 = (i3 - i4 | 0) / 24 | 0; i3 = i2 + 1 | 0; if (i3 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i10); i5 = (i5 - i4 | 0) / 24 | 0; i4 = i5 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i9, i5 >>> 0 < 89478485 ? (i4 >>> 0 < i3 >>> 0 ? i3 : i4) : 178956970, i2, i10 + 12 | 0); i4 = i9 + 8 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; HEAP32[i5 + 12 >> 2] = 0; HEAP32[i5 + 16 >> 2] = 0; HEAP32[i5 + 20 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i5 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i3 = i5 + 12 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } HEAP32[i4 >> 2] = i5 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i10, i9); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i9); } while (0); i3 = i10 + 4 | 0; if ((HEAP8[i1 >> 0] | 0) == 110) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc((HEAP32[i3 >> 2] | 0) + -24 | 0, 45); i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendIPKcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorISC_EE5valueERS7_E4typeESC_SC_((HEAP32[i3 >> 2] | 0) + -24 | 0, i1, i14); i1 = HEAP8[i11 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; i1 = i2 ? HEAP32[i12 >> 2] | 0 : i1 & 255; if (i1 >>> 0 < 4) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj((HEAP32[i3 >> 2] | 0) + -24 | 0, i2 ? HEAP32[i13 >> 2] | 0 : i13, i1) | 0; i1 = i14 + 1 | 0; } STACKTOP = i15; return i1 | 0; } function __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEENK3__0clENS1_7IStringES2_NS_8WasmTypeE(i2, i7, i8, i1) { i2 = i2 | 0; i7 = i7 | 0; i8 = i8 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i12 = i16 + 24 | 0; i11 = i16 + 20 | 0; i10 = i16 + 16 | 0; i3 = i16 + 12 | 0; i13 = i16 + 8 | 0; i14 = i16 + 4 | 0; i15 = i16; i9 = HEAP32[i2 >> 2] | 0; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 0) | 0, 45352) | 0)) ___assert_fail(14217, 11743, 457, 42730); i5 = __ZN6cashew3RefixEj(i8, 1) | 0; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45352) | 0)) { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 0) | 0, 45056) | 0)) ___assert_fail(14393, 11743, 499, 42730); i2 = __ZN6cashew3RefixEj(i3, 1) | 0; i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0; i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == (HEAP32[11417] | 0)) { i3 = __ZN6cashew3RefixEj(i8, 2) | 0; i3 = __ZN6cashew5Value10getIStringEv(HEAP32[i3 >> 2] | 0) | 0; i3 = HEAP32[i3 >> 2] | 0; if ((i3 | 0) == (HEAP32[11317] | 0)) { i4 = i9 + 96 | 0; if (!(HEAP32[i4 >> 2] | 0)) { HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; i5 = i2; i6 = 47; break; } else ___assert_fail(14411, 11743, 504, 42730); } if ((i3 | 0) == (HEAP32[11288] | 0)) { i1 = i9 + 92 | 0; if (!(HEAP32[i1 >> 2] | 0)) { HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; break; } else ___assert_fail(14434, 11743, 508, 42730); } else { i5 = i2; i6 = 47; } } else { i5 = i2; i6 = 47; } } else { if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 0) | 0, 45056) | 0)) ___assert_fail(14236, 11743, 462, 42730); if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i3, 2) | 0, 45588) | 0) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 2) | 0, 45592) | 0) { i2 = i9 + 64 | 0; if (!(HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; break; } else ___assert_fail(14257, 11743, 465, 42730); } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 2) | 0, 45596) | 0) { i2 = i9 + 68 | 0; if (!(HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; break; } else ___assert_fail(14276, 11743, 469, 42730); } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 2) | 0, 45600) | 0) { i2 = i9 + 72 | 0; if (!(HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; break; } else ___assert_fail(14296, 11743, 473, 42730); } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 2) | 0, 45636) | 0) { i2 = i9 + 76 | 0; if (!(HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; break; } else ___assert_fail(14317, 11743, 477, 42730); } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 2) | 0, 45640) | 0) { i2 = i9 + 80 | 0; if (!(HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; break; } else ___assert_fail(14335, 11743, 481, 42730); } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 2) | 0, 45644) | 0) { i2 = i9 + 84 | 0; if (!(HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; break; } else ___assert_fail(14355, 11743, 485, 42730); } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i8, 2) | 0, 45648) | 0) { i2 = i9 + 88 | 0; if (!(HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; break; } else ___assert_fail(14374, 11743, 489, 42730); } } i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i3, 1) | 0, 1) | 0; i5 = __ZN6cashew5Value10getCStringEv(HEAP32[i5 >> 2] | 0) | 0; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; HEAP32[i12 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i12, i5, _strlen(i5) | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i12, 46); i5 = __ZN6cashew3RefixEj(i3, 2) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i12, __ZN6cashew5Value10getCStringEv(HEAP32[i5 >> 2] | 0) | 0) | 0; __ZN6cashew7IStringC2EPKcb(i11, (HEAP8[i12 + 11 >> 0] | 0) < 0 ? HEAP32[i12 >> 2] | 0 : i12, 0); i5 = HEAP32[i11 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12); i6 = 47; } while (0); do if ((i6 | 0) == 47) { i4 = __Znwj(16) | 0; i3 = i4 + 8 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i4 >> 2] = i3; HEAP32[i4 + 4 >> 2] = i5; i2 = __ZN6cashew3RefixEj(i8, 2) | 0; i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i4 + 8 >> 2] = i2; i8 = i2; if ((i5 | 0) == (HEAP32[11382] | 0) ? (i8 | 0) == (HEAP32[11383] | 0) | (i8 | 0) == (HEAP32[11384] | 0) : 0) i1 = 4; else if (!i1) { __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i9 >> 2] | 0, i4); break; } HEAP32[i13 >> 2] = i3; HEAP32[i14 >> 2] = i5; HEAP32[i15 >> 2] = i2; HEAP32[i10 >> 2] = HEAP32[i13 >> 2]; HEAP32[i11 >> 2] = HEAP32[i14 >> 2]; HEAP32[i12 >> 2] = HEAP32[i15 >> 2]; __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i9, i10, i1, 1, i11, i12); __ZdlPv(i4); } while (0); STACKTOP = i16; return; } function __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (!i3) ___assert_fail(31628, 35330, 71, 31633); do switch (HEAP32[i3 >> 2] | 0) { case 1: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE10visitBlockEPNS_5BlockE(i1, i2, i3); break; } case 2: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE7visitIfEPNS_2IfE(i1, i2, i3); break; } case 3: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE9visitLoopEPNS_4LoopE(i1, i2, i3); break; } case 4: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE10visitBreakEPNS_5BreakE(i1, i2, i3); break; } case 5: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11visitSwitchEPNS_6SwitchE(i1, i2, i3); break; } case 6: { __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner9visitCallEPNS_4CallE(i1, i2, i3); break; } case 7: { __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner15visitCallImportEPNS_10CallImportE(i1, i2, i3); break; } case 8: { __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner17visitCallIndirectEPNS_12CallIndirectE(i1, i2, i3); break; } case 9: { i3 = (HEAP32[HEAP32[i2 + 8 >> 2] >> 2] | 0) + (HEAP32[i3 + 8 >> 2] << 4) | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i3 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = 0; break; } case 10: { __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner13visitSetLocalEPNS_8SetLocalE(i1, i2, i3); break; } case 11: { i3 = (HEAP32[(HEAP32[i2 + 4 >> 2] | 0) + 4 >> 2] | 0) + (HEAP32[i3 + 8 >> 2] << 4) | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i3 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = 0; break; } case 12: { __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner14visitSetGlobalEPNS_9SetGlobalE(i1, i2, i3); break; } case 13: { __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner9visitLoadEPNS_4LoadE(i1, i2, i3); break; } case 14: { __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner10visitStoreEPNS_5StoreE(i1, i2, i3); break; } case 15: { i3 = i3 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i3 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = 0; break; } case 16: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE10visitUnaryEPNS_5UnaryE(i1, i2, i3); break; } case 17: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11visitBinaryEPNS_6BinaryE(i1, i2, i3); break; } case 18: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11visitSelectEPNS_6SelectE(i1, i2, i3); break; } case 19: { __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11visitReturnEPNS_6ReturnE(i1, i2, i3); break; } case 20: { __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner9visitHostEPNS_4HostE(i1, i2, i3); break; } case 21: { HEAP32[i1 >> 2] = 0; i3 = i1 + 8 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; break; } case 22: { FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 31639); HEAP32[i1 >> 2] = 0; i3 = i1 + 8 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; break; } default: {} } while (0); return; } function __ZN4wasm10PassRunner3runEv(i12) { i12 = i12 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0, d15 = 0.0; i14 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i13 = i14 + 16 | 0; i6 = i14 + 8 | 0; i7 = i14; if (!(HEAP8[i12 + 24 >> 0] | 0)) { HEAP32[i13 >> 2] = 0; i2 = i13 + 4 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i13 + 8 >> 2] = 0; HEAP32[i6 >> 2] = i13; HEAP32[i6 + 4 >> 2] = i12; i3 = HEAP32[i12 + 12 >> 2] | 0; i4 = i13 + 8 | 0; i1 = HEAP32[i12 + 8 >> 2] | 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; i11 = HEAP32[i1 >> 2] | 0; HEAP32[i7 >> 2] = i11; do if (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i11 >> 2] | 0) + 24 >> 2] & 127](i11) | 0) { i5 = HEAP32[i2 >> 2] | 0; if ((i5 | 0) == (HEAP32[i4 >> 2] | 0)) { __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i13, i7); break; } else { HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; break; } } else { __ZZN4wasm10PassRunner3runEvENK3__0clEv(i6); i11 = HEAP32[i7 >> 2] | 0; FUNCTION_TABLE_viii[HEAP32[(HEAP32[i11 >> 2] | 0) + 12 >> 2] & 7](i11, i12, HEAP32[i12 >> 2] | 0); } while (0); i1 = i1 + 4 | 0; } __ZZN4wasm10PassRunner3runEvENK3__0clEv(i6); __ZNSt3__213__vector_baseIPN4wasm4PassENS_9allocatorIS3_EEED2Ev(i13); } else { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 31202) | 0; i10 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i13 >> 2] = i10; i10 = __ZNKSt3__26locale9use_facetERNS0_2idE(i13, 47476) | 0; i10 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, 10) | 0; __ZNSt3__26localeD2Ev(i13); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i10) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; i9 = __ZNSt3__26chrono12steady_clock3nowEv() | 0; i10 = tempRet0; i4 = HEAP32[i12 + 8 >> 2] | 0; i11 = HEAP32[i12 + 12 >> 2] | 0; i8 = 0; i3 = i4; while (1) { if ((i3 | 0) == (i11 | 0)) break; i1 = HEAP32[i3 >> 2] | 0; i2 = HEAP8[i1 + 4 + 11 >> 0] | 0; if (i2 << 24 >> 24 < 0) i1 = HEAP32[i1 + 8 >> 2] | 0; else i1 = i2 & 255; i8 = i8 >>> 0 < i1 >>> 0 ? i1 : i8; i3 = i3 + 4 | 0; } i7 = i12 + 20 | 0; while (1) { if ((i4 | 0) == (i11 | 0)) break; i6 = HEAP32[i4 >> 2] | 0; HEAP32[i7 >> 2] = i6; i3 = i6 + 4 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 31269) | 0, i3) | 0, 31299) | 0; i3 = i3 + 11 | 0; i5 = i6 + 8 | 0; i2 = 0; while (1) { i1 = HEAP8[i3 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i5 >> 2] | 0; else i1 = i1 & 255; if (i2 >>> 0 >= (i8 - i1 | 0) >>> 0) break; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(46772, 32) | 0; i2 = i2 + 1 | 0; } i2 = __ZNSt3__26chrono12steady_clock3nowEv() | 0; i3 = tempRet0; L34 : do if (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 24 >> 2] & 127](i6) | 0) { i1 = HEAP32[i12 >> 2] | 0; i5 = HEAP32[i1 + 40 >> 2] | 0; i1 = HEAP32[i1 + 36 >> 2] | 0; while (1) { if ((i1 | 0) == (i5 | 0)) break L34; __ZN4wasm10PassRunner17runPassOnFunctionEPNS_4PassEPNS_8FunctionE(i12, i6, HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } } else FUNCTION_TABLE_viii[HEAP32[(HEAP32[i6 >> 2] | 0) + 12 >> 2] & 7](i6, i12, HEAP32[i12 >> 2] | 0); while (0); i6 = __ZNSt3__26chrono12steady_clock3nowEv() | 0; i6 = _i64Subtract(i6 | 0, tempRet0 | 0, i2 | 0, i3 | 0) | 0; i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEd(46772, (+(i6 >>> 0) + 4294967296.0 * +(tempRet0 | 0)) / 1.0e9) | 0, 31259) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i13 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i13, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i13); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; i4 = i4 + 4 | 0; } i12 = __ZNSt3__26chrono12steady_clock3nowEv() | 0; i12 = _i64Subtract(i12 | 0, tempRet0 | 0, i9 | 0, i10 | 0) | 0; d15 = (+(i12 >>> 0) + 4294967296.0 * +(tempRet0 | 0)) / 1.0e9; i12 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEd(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 31233) | 0, d15) | 0, 31259) | 0; i11 = __ZNKSt3__28ios_base6getlocEv(i12 + (HEAP32[(HEAP32[i12 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i13 >> 2] = i11; i11 = __ZNKSt3__26locale9use_facetERNS0_2idE(i13, 47476) | 0; i11 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 28 >> 2] & 31](i11, 10) | 0; __ZNSt3__26localeD2Ev(i13); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i12, i11) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i12) | 0; } STACKTOP = i14; return; } function __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i4, i8) { i1 = i1 | 0; i4 = i4 | 0; i8 = i8 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i9 = i12 + 48 | 0; i10 = i12 + 36 | 0; i11 = i12; i6 = i12 + 24 | 0; L1 : do if (((i1 | 0) != (i4 | 0) ? (i2 = (HEAP8[i1 >> 0] | 0) + -48 | 0, i2 >>> 0 < 10) : 0) ? (i3 = i1 + 1 | 0, (i3 | 0) != (i4 | 0)) : 0) { i7 = i2; while (1) { i2 = (HEAP8[i3 >> 0] | 0) + -48 | 0; if (i2 >>> 0 >= 10) break; i3 = i3 + 1 | 0; if ((i3 | 0) == (i4 | 0)) break L1; i7 = i2 + (i7 * 10 | 0) | 0; } if ((i4 - i3 | 0) >>> 0 >= i7 >>> 0) { HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i10, i3, i7); HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; i5 = HEAP8[i10 + 11 >> 0] | 0; i1 = i5 << 24 >> 24 < 0; i5 = i1 ? HEAP32[i10 + 4 >> 2] | 0 : i5 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i9, i1 ? HEAP32[i10 >> 2] | 0 : i10, i5 >>> 0 < 10 ? i5 : 10); i5 = HEAP8[i9 + 11 >> 0] | 0; i1 = i5 << 24 >> 24 < 0; if (((i1 ? HEAP32[i9 + 4 >> 2] | 0 : i5 & 255) | 0) == 10) i1 = (__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i1 ? HEAP32[i9 >> 2] | 0 : i9, 43467, 10) | 0) == 0; else i1 = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9); if (i1) { i1 = _malloc(32) | 0; HEAP32[i11 >> 2] = i1; HEAP32[i11 + 8 >> 2] = -2147483616; HEAP32[i11 + 4 >> 2] = 21; i2 = i1; i4 = 43478; i5 = i2 + 21 | 0; do { HEAP8[i2 >> 0] = HEAP8[i4 >> 0] | 0; i2 = i2 + 1 | 0; i4 = i4 + 1 | 0; } while ((i2 | 0) < (i5 | 0)); HEAP8[i1 + 21 >> 0] = 0; i2 = i11 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = i8 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i6 = HEAP32[i8 + 8 >> 2] | 0; i5 = i6; do if (i2 >>> 0 >= i6 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i1 = (i2 - i4 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i5 = (i5 - i4 | 0) / 24 | 0; i6 = i5 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i9, i5 >>> 0 < 89478485 ? (i6 >>> 0 < i2 >>> 0 ? i2 : i6) : 178956970, i1, i8 + 12 | 0); i6 = i9 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i5, i11); HEAP32[i6 >> 2] = i5 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i9); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i9); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11); } else { HEAP32[i6 >> 2] = HEAP32[i10 >> 2]; HEAP32[i6 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i6 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i11, i6); i1 = i8 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i4 = HEAP32[i8 + 8 >> 2] | 0; i5 = i4; do if (i2 >>> 0 >= i4 >>> 0) { i4 = HEAP32[i8 >> 2] | 0; i1 = (i2 - i4 | 0) / 24 | 0; i2 = i1 + 1 | 0; if (i2 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i4 = (i5 - i4 | 0) / 24 | 0; i5 = i4 << 1; __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i9, i4 >>> 0 < 89478485 ? (i5 >>> 0 < i2 >>> 0 ? i2 : i5) : 178956970, i1, i8 + 12 | 0); i5 = i9 + 8 | 0; i4 = HEAP32[i5 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i4, i11); HEAP32[i5 >> 2] = i4 + 24; __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i8, i9); __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i9); break; } } else { __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i11); HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 24; } while (0); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i11); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i6); } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i10); i1 = i3 + i7 | 0; } } while (0); STACKTOP = i12; return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseSwitchERPcPKc(i23, i27, i1) { i23 = i23 | 0; i27 = i27 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i24 = 0, i25 = 0, i26 = 0; i26 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i10 = i26 + 92 | 0; i9 = i26 + 88 | 0; i24 = i26 + 84 | 0; i17 = i26 + 32 | 0; i18 = i26 + 16 | 0; i19 = i26; i20 = i26 + 80 | 0; i21 = i26 + 76 | 0; i22 = i26 + 72 | 0; i11 = i26 + 68 | 0; i12 = i26 + 64 | 0; i13 = i26 + 60 | 0; i14 = i26 + 56 | 0; i15 = i26 + 52 | 0; i16 = i26 + 48 | 0; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERPc(i23, i27) | 0; HEAP32[i24 >> 2] = i1; HEAP32[i10 >> 2] = HEAP32[i24 >> 2]; i24 = __ZN6cashew12ValueBuilder10makeSwitchENS_3RefE(i10) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27); i1 = HEAP32[i27 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 123) ___assert_fail(28776, 28546, 536, 28988); HEAP32[i27 >> 2] = i1 + 1; i3 = i17 + 12 | 0; i4 = i17 + 8 | 0; i5 = i18 + 12 | 0; i6 = i18 + 8 | 0; i7 = i19 + 12 | 0; i8 = i19 + 8 | 0; L4 : while (1) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27); i1 = HEAP32[i27 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) == 125) { i25 = 28; break; } __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i17, i1); do if (!(HEAP32[i3 >> 2] | 0)) { i1 = HEAP32[i17 >> 2] | 0; if ((i1 | 0) != (HEAP32[11336] | 0)) { if ((i1 | 0) != (HEAP32[11337] | 0)) { i25 = 23; break; } HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i4 >> 2] | 0); HEAP32[i12 >> 2] = i24; HEAP32[i10 >> 2] = HEAP32[i12 >> 2]; __ZN6cashew12ValueBuilder21appendDefaultToSwitchENS_3RefE(i10); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27); i1 = HEAP32[i27 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 58) { i25 = 21; break L4; } HEAP32[i27 >> 2] = i1 + 1; break; } HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i4 >> 2] | 0); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i18, HEAP32[i27 >> 2] | 0); i1 = HEAP32[i5 >> 2] | 0; if ((i1 | 1 | 0) == 5) { i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i23, i18) | 0; HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i6 >> 2] | 0); } else { if ((i1 | 0) != 1) { i25 = 10; break L4; } if ((HEAP32[i18 >> 2] | 0) != (HEAP32[11299] | 0)) { i25 = 12; break L4; } HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i6 >> 2] | 0); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i19, HEAP32[i27 >> 2] | 0); if ((HEAP32[i7 >> 2] | 1 | 0) != 5) { i25 = 14; break L4; } HEAP32[i20 >> 2] = HEAP32[11299]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i23, i19) | 0; HEAP32[i21 >> 2] = i1; HEAP32[i9 >> 2] = HEAP32[i20 >> 2]; HEAP32[i10 >> 2] = HEAP32[i21 >> 2]; i1 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i9, i10) | 0; HEAP32[i27 >> 2] = (HEAP32[i27 >> 2] | 0) + (HEAP32[i8 >> 2] | 0); } HEAP32[i22 >> 2] = i24; HEAP32[i11 >> 2] = i1; HEAP32[i9 >> 2] = HEAP32[i22 >> 2]; HEAP32[i10 >> 2] = HEAP32[i11 >> 2]; __ZN6cashew12ValueBuilder18appendCaseToSwitchENS_3RefES1_(i9, i10); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27); i1 = HEAP32[i27 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 58) { i25 = 17; break L4; } HEAP32[i27 >> 2] = i1 + 1; } else i25 = 23; while (0); if ((i25 | 0) == 23) { i25 = 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27); i2 = (HEAP8[HEAP32[i27 >> 2] >> 0] | 0) == 123; if (i2) i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBlockERPc(i23, i27) | 0; else { HEAP32[i13 >> 2] = HEAP32[11336]; HEAP32[i14 >> 2] = HEAP32[11337]; HEAP32[i9 >> 2] = HEAP32[i13 >> 2]; HEAP32[i10 >> 2] = HEAP32[i14 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i23, i27, 28808, i9, i10) | 0; } HEAP32[i15 >> 2] = i24; HEAP32[i16 >> 2] = i1; HEAP32[i9 >> 2] = HEAP32[i15 >> 2]; HEAP32[i10 >> 2] = HEAP32[i16 >> 2]; __ZN6cashew12ValueBuilder18appendCodeToSwitchENS_3RefES1_b(i9, i10, i2); } } if ((i25 | 0) == 10) ___assert_fail(29e3, 28546, 553, 28988); else if ((i25 | 0) == 12) ___assert_fail(29023, 28546, 554, 28988); else if ((i25 | 0) == 14) ___assert_fail(29042, 28546, 558, 28988); else if ((i25 | 0) == 17) ___assert_fail(29060, 28546, 564, 28988); else if ((i25 | 0) == 21) ___assert_fail(29060, 28546, 571, 28988); else if ((i25 | 0) == 28) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i27); i1 = HEAP32[i27 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) == 125) { HEAP32[i27 >> 2] = i1 + 1; STACKTOP = i26; return i24 | 0; } else ___assert_fail(28811, 28546, 584, 28988); } return 0; } function __ZNSt3__211__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i30, i31, i32, i33, i1, i23, i24, i25, i26, i27, i12, i13, i14, i29, i15) { i30 = i30 | 0; i31 = i31 | 0; i32 = i32 | 0; i33 = i33 | 0; i1 = i1 | 0; i23 = i23 | 0; i24 = i24 | 0; i25 = i25 | 0; i26 = i26 | 0; i27 = i27 | 0; i12 = i12 | 0; i13 = i13 | 0; i14 = i14 | 0; i29 = i29 | 0; i15 = i15 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i28 = 0, i34 = 0; HEAP32[i32 >> 2] = i30; i16 = i29 + 8 + 3 | 0; i28 = i29 + 4 | 0; i17 = i14 + 8 + 3 | 0; i18 = i14 + 4 | 0; i19 = (i33 & 512 | 0) == 0; i20 = (i15 | 0) > 0; i21 = i13 + 11 | 0; i22 = i13 + 4 | 0; i11 = 0; while (1) { if ((i11 | 0) == 4) break; L4 : do switch (HEAP8[i26 + i11 >> 0] | 0) { case 0: { HEAP32[i31 >> 2] = HEAP32[i32 >> 2]; break; } case 1: { HEAP32[i31 >> 2] = HEAP32[i32 >> 2]; i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i24 >> 2] | 0) + 44 >> 2] & 31](i24, 32) | 0; i10 = HEAP32[i32 >> 2] | 0; HEAP32[i32 >> 2] = i10 + 4; HEAP32[i10 >> 2] = i9; break; } case 3: { i10 = HEAP8[i16 >> 0] | 0; i2 = i10 << 24 >> 24 < 0; if ((i2 ? HEAP32[i28 >> 2] | 0 : i10 & 255) | 0) { i9 = HEAP32[(i2 ? HEAP32[i29 >> 2] | 0 : i29) >> 2] | 0; i10 = HEAP32[i32 >> 2] | 0; HEAP32[i32 >> 2] = i10 + 4; HEAP32[i10 >> 2] = i9; } break; } case 2: { i6 = HEAP8[i17 >> 0] | 0; i2 = i6 << 24 >> 24 < 0; i6 = i2 ? HEAP32[i18 >> 2] | 0 : i6 & 255; if (!(i19 | (i6 | 0) == 0)) { i5 = i2 ? HEAP32[i14 >> 2] | 0 : i14; i3 = i5 + (i6 << 2) | 0; i4 = HEAP32[i32 >> 2] | 0; i2 = i4; while (1) { if ((i5 | 0) == (i3 | 0)) break; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; i2 = i2 + 4 | 0; i5 = i5 + 4 | 0; } HEAP32[i32 >> 2] = i4 + (i6 << 2); } break; } case 4: { i3 = HEAP32[i32 >> 2] | 0; i1 = i25 ? i1 + 4 | 0 : i1; i2 = i1; while (1) { if (i2 >>> 0 >= i23 >>> 0) break; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i24 >> 2] | 0) + 12 >> 2] & 31](i24, 2048, HEAP32[i2 >> 2] | 0) | 0)) break; i2 = i2 + 4 | 0; } if (i20) { i5 = i15; while (1) { i4 = (i5 | 0) > 0; if (!(i2 >>> 0 > i1 >>> 0 & i4)) break; i10 = i2 + -4 | 0; i8 = HEAP32[i10 >> 2] | 0; i9 = HEAP32[i32 >> 2] | 0; HEAP32[i32 >> 2] = i9 + 4; HEAP32[i9 >> 2] = i8; i5 = i5 + -1 | 0; i2 = i10; } if (i4) i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i24 >> 2] | 0) + 44 >> 2] & 31](i24, 48) | 0; else i7 = 0; i6 = HEAP32[i32 >> 2] | 0; while (1) { i4 = i6 + 4 | 0; if ((i5 | 0) <= 0) break; HEAP32[i6 >> 2] = i7; i5 = i5 + -1 | 0; i6 = i4; } HEAP32[i32 >> 2] = i4; HEAP32[i6 >> 2] = i27; } if ((i2 | 0) == (i1 | 0)) { i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i24 >> 2] | 0) + 44 >> 2] & 31](i24, 48) | 0; i10 = HEAP32[i32 >> 2] | 0; i2 = i10 + 4 | 0; HEAP32[i32 >> 2] = i2; HEAP32[i10 >> 2] = i9; } else { i10 = HEAP8[i21 >> 0] | 0; i9 = i10 << 24 >> 24 < 0; i10 = i9 ? HEAP32[i22 >> 2] | 0 : i10 & 255; if (!i10) { i6 = -1; i4 = 0; i7 = 0; } else { i6 = HEAP8[(i9 ? HEAP32[i13 >> 2] | 0 : i13) >> 0] | 0; i4 = 0; i7 = 0; } while (1) { if ((i2 | 0) == (i1 | 0)) break; i5 = HEAP32[i32 >> 2] | 0; if ((i7 | 0) == (i6 | 0)) { i8 = i5 + 4 | 0; HEAP32[i32 >> 2] = i8; HEAP32[i5 >> 2] = i12; i4 = i4 + 1 | 0; if (i4 >>> 0 < i10 >>> 0) { i6 = HEAP8[(i9 ? HEAP32[i13 >> 2] | 0 : i13) + i4 >> 0] | 0; i6 = i6 << 24 >> 24 == 127 ? -1 : i6 << 24 >> 24; i7 = 0; i5 = i8; } else { i6 = i7; i7 = 0; i5 = i8; } } i8 = i2 + -4 | 0; i34 = HEAP32[i8 >> 2] | 0; HEAP32[i32 >> 2] = i5 + 4; HEAP32[i5 >> 2] = i34; i7 = i7 + 1 | 0; i2 = i8; } i2 = HEAP32[i32 >> 2] | 0; } if ((i3 | 0) != (i2 | 0)) while (1) { i2 = i2 + -4 | 0; if (i3 >>> 0 >= i2 >>> 0) break L4; i34 = HEAP32[i3 >> 2] | 0; HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = i34; i3 = i3 + 4 | 0; } break; } default: {} } while (0); i11 = i11 + 1 | 0; } i1 = HEAP8[i16 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; i1 = i2 ? HEAP32[i28 >> 2] | 0 : i1 & 255; if (i1 >>> 0 > 1) { i2 = i2 ? HEAP32[i29 >> 2] | 0 : i29; i5 = i2 + 4 | 0; i2 = i2 + (i1 << 2) | 0; i3 = HEAP32[i32 >> 2] | 0; i4 = i2 - i5 | 0; i1 = i3; while (1) { if ((i5 | 0) == (i2 | 0)) break; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i1 = i1 + 4 | 0; i5 = i5 + 4 | 0; } HEAP32[i32 >> 2] = i3 + (i4 >>> 2 << 2); } switch ((i33 & 176) << 24 >> 24) { case 32: { HEAP32[i31 >> 2] = HEAP32[i32 >> 2]; break; } case 16: break; default: HEAP32[i31 >> 2] = i30; } return; } function __ZN4wasm22SExpressionWasmBuilder11parseImportERNS_7ElementE(i12, i11) { i12 = i12 | 0; i11 = i11 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i13 = 0, i14 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i10 = i15 + 56 | 0; i2 = i15 + 44 | 0; i4 = i15 + 40 | 0; i5 = i15 + 28 | 0; i6 = i15 + 24 | 0; i3 = i15 + 12 | 0; i13 = i15; i14 = __ZN4wasm11make_uniqueINS_6ImportEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() | 0; i9 = (__ZN4wasm7Element4listEv(i11) | 0) + 8 | 0; if ((HEAP32[i9 >> 2] | 0) >>> 0 > 3 ? (i9 = __ZN4wasm7ElementixEj(i11, 3) | 0, (HEAP8[i9 >> 0] | 0) == 0) : 0) { i9 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i11, 1) | 0) | 0; HEAP32[i14 >> 2] = i9; i9 = 2; i1 = i12 + 24 | 0; } else { i1 = i12 + 24 | 0; i9 = __ZN4wasm4Name7fromIntEj(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i14 >> 2] = i9; i9 = 1; } HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 1; i1 = i9 + 1 | 0; i8 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i11, i9) | 0) | 0; HEAP32[i14 + 4 >> 2] = i8; i8 = __ZN4wasm7ElementixEj(i11, i1) | 0; if (HEAP8[i8 >> 0] | 0) { i15 = ___cxa_allocate_exception(20) | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 17511, 18); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i15, i2); ___cxa_throw(i15 | 0, 8, 154); } i2 = i9 + 2 | 0; i8 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i11, i1) | 0) | 0; HEAP32[i14 + 8 >> 2] = i8; i8 = __ZN4wasm11make_uniqueINS_12FunctionTypeEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() | 0; i7 = (__ZN4wasm7Element4listEv(i11) | 0) + 8 | 0; do if ((HEAP32[i7 >> 2] | 0) >>> 0 > i2 >>> 0) { i7 = __ZN4wasm7ElementixEj(i11, i2) | 0; i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, 0) | 0) | 0; L12 : do if ((i1 | 0) != (HEAP32[11437] | 0)) { if ((i1 | 0) == (HEAP32[11438] | 0)) { i10 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i12, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, 1) | 0) | 0, 0, 0) | 0; HEAP32[i8 + 4 >> 2] = i10; break; } if ((i1 | 0) != (HEAP32[11445] | 0)) { i15 = ___cxa_allocate_exception(20) | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 17559, 18); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i15, i3); ___cxa_throw(i15 | 0, 8, 154); } i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, 1) | 0) | 0; i7 = HEAP32[i12 >> 2] | 0; HEAP32[i4 >> 2] = i1; HEAP32[i10 >> 2] = HEAP32[i4 >> 2]; if (!(__ZN4wasm6Module17checkFunctionTypeENS_4NameE(i7, i10) | 0)) { i15 = ___cxa_allocate_exception(20) | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 17530, 28); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i15, i5); ___cxa_throw(i15 | 0, 8, 154); } else { i7 = HEAP32[i12 >> 2] | 0; HEAP32[i6 >> 2] = i1; HEAP32[i10 >> 2] = HEAP32[i6 >> 2]; __ZN4wasm12FunctionTypeaSERKS0_(i8, __ZN4wasm6Module15getFunctionTypeENS_4NameE(i7, i10) | 0) | 0; break; } } else { i2 = i8 + 8 | 0; i3 = i8 + 12 | 0; i4 = i8 + 16 | 0; i1 = 1; while (1) { i6 = (__ZN4wasm7Element4listEv(i7) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i6 >> 2] | 0) >>> 0) break L12; i5 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i12, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i1) | 0) | 0, 0, 0) | 0; HEAP32[i10 >> 2] = i5; i6 = HEAP32[i3 >> 2] | 0; if (i6 >>> 0 < (HEAP32[i4 >> 2] | 0) >>> 0) { HEAP32[i6 >> 2] = i5; HEAP32[i3 >> 2] = i6 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i2, i10); i1 = i1 + 1 | 0; } } while (0); i10 = (__ZN4wasm7Element4listEv(i11) | 0) + 8 | 0; i1 = i9 + 3 | 0; if ((HEAP32[i10 >> 2] | 0) >>> 0 > i1 >>> 0) { i1 = __ZN4wasm7ElementixEj(i11, i1) | 0; i11 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i1, 0) | 0) | 0; if ((i11 | 0) == (HEAP32[11438] | 0)) { i11 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i12, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i1, 1) | 0) | 0, 0, 0) | 0; HEAP32[i8 + 4 >> 2] = i11; break; } else ___assert_fail(17578, 17152, 1381, 17605); } } while (0); __ZN4wasm6getSigEPKNS_12FunctionTypeE(i13, i8); i11 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i13, HEAP32[i12 >> 2] | 0) | 0; HEAP32[i14 + 12 >> 2] = i11; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i13); __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i12 >> 2] | 0, i14); if (i8 | 0) { __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i8 + 8 | 0); __ZdlPv(i8); } STACKTOP = i15; return; } function __ZNSt3__211__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i28, i29, i30, i31, i1, i21, i22, i23, i24, i25, i9, i10, i11, i27, i12) { i28 = i28 | 0; i29 = i29 | 0; i30 = i30 | 0; i31 = i31 | 0; i1 = i1 | 0; i21 = i21 | 0; i22 = i22 | 0; i23 = i23 | 0; i24 = i24 | 0; i25 = i25 | 0; i9 = i9 | 0; i10 = i10 | 0; i11 = i11 | 0; i27 = i27 | 0; i12 = i12 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i26 = 0, i32 = 0, i33 = 0; HEAP32[i30 >> 2] = i28; i13 = i27 + 11 | 0; i26 = i27 + 4 | 0; i14 = i11 + 11 | 0; i15 = i11 + 4 | 0; i16 = (i31 & 512 | 0) == 0; i17 = i22 + 8 | 0; i18 = (i12 | 0) > 0; i19 = i10 + 11 | 0; i20 = i10 + 4 | 0; i8 = 0; while (1) { if ((i8 | 0) == 4) break; L4 : do switch (HEAP8[i24 + i8 >> 0] | 0) { case 0: { HEAP32[i29 >> 2] = HEAP32[i30 >> 2]; break; } case 1: { HEAP32[i29 >> 2] = HEAP32[i30 >> 2]; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i22 >> 2] | 0) + 28 >> 2] & 31](i22, 32) | 0; i7 = HEAP32[i30 >> 2] | 0; HEAP32[i30 >> 2] = i7 + 1; HEAP8[i7 >> 0] = i6; break; } case 3: { i7 = HEAP8[i13 >> 0] | 0; i2 = i7 << 24 >> 24 < 0; if ((i2 ? HEAP32[i26 >> 2] | 0 : i7 & 255) | 0) { i6 = HEAP8[(i2 ? HEAP32[i27 >> 2] | 0 : i27) >> 0] | 0; i7 = HEAP32[i30 >> 2] | 0; HEAP32[i30 >> 2] = i7 + 1; HEAP8[i7 >> 0] = i6; } break; } case 2: { i3 = HEAP8[i14 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i3 = i2 ? HEAP32[i15 >> 2] | 0 : i3 & 255; if (!(i16 | (i3 | 0) == 0)) { i7 = i2 ? HEAP32[i11 >> 2] | 0 : i11; i4 = i7 + i3 | 0; i2 = HEAP32[i30 >> 2] | 0; i3 = i7; while (1) { if ((i3 | 0) == (i4 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i3 >> 0] | 0; i2 = i2 + 1 | 0; i3 = i3 + 1 | 0; } HEAP32[i30 >> 2] = i2; } break; } case 4: { i3 = HEAP32[i30 >> 2] | 0; i1 = i23 ? i1 + 1 | 0 : i1; i4 = i1; while (1) { if (i4 >>> 0 >= i21 >>> 0) break; i2 = HEAP8[i4 >> 0] | 0; if (i2 << 24 >> 24 <= -1) break; if (!(HEAP16[(HEAP32[i17 >> 2] | 0) + (i2 << 24 >> 24 << 1) >> 1] & 2048)) break; i4 = i4 + 1 | 0; } if (i18) { i5 = i12; while (1) { i2 = (i5 | 0) > 0; if (!(i4 >>> 0 > i1 >>> 0 & i2)) break; i7 = i4 + -1 | 0; i2 = HEAP8[i7 >> 0] | 0; i6 = HEAP32[i30 >> 2] | 0; HEAP32[i30 >> 2] = i6 + 1; HEAP8[i6 >> 0] = i2; i5 = i5 + -1 | 0; i4 = i7; } if (i2) i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i22 >> 2] | 0) + 28 >> 2] & 31](i22, 48) | 0; else i6 = 0; i2 = i5; while (1) { i5 = HEAP32[i30 >> 2] | 0; HEAP32[i30 >> 2] = i5 + 1; if ((i2 | 0) <= 0) break; HEAP8[i5 >> 0] = i6; i2 = i2 + -1 | 0; } HEAP8[i5 >> 0] = i25; } L35 : do if ((i4 | 0) == (i1 | 0)) { i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i22 >> 2] | 0) + 28 >> 2] & 31](i22, 48) | 0; i7 = HEAP32[i30 >> 2] | 0; HEAP32[i30 >> 2] = i7 + 1; HEAP8[i7 >> 0] = i6; } else { i7 = HEAP8[i19 >> 0] | 0; i2 = i7 << 24 >> 24 < 0; if (!((i2 ? HEAP32[i20 >> 2] | 0 : i7 & 255) | 0)) { i6 = -1; i5 = 0; i7 = 0; } else { i6 = HEAP8[(i2 ? HEAP32[i10 >> 2] | 0 : i10) >> 0] | 0; i5 = 0; i7 = 0; } while (1) { if ((i4 | 0) == (i1 | 0)) break L35; if ((i7 | 0) == (i6 | 0)) { i6 = HEAP32[i30 >> 2] | 0; HEAP32[i30 >> 2] = i6 + 1; HEAP8[i6 >> 0] = i9; i5 = i5 + 1 | 0; i6 = HEAP8[i19 >> 0] | 0; i2 = i6 << 24 >> 24 < 0; if (i5 >>> 0 < (i2 ? HEAP32[i20 >> 2] | 0 : i6 & 255) >>> 0) { i6 = HEAP8[(i2 ? HEAP32[i10 >> 2] | 0 : i10) + i5 >> 0] | 0; i6 = i6 << 24 >> 24 == 127 ? -1 : i6 << 24 >> 24; i2 = 0; } else { i6 = i7; i2 = 0; } } else i2 = i7; i32 = i4 + -1 | 0; i33 = HEAP8[i32 >> 0] | 0; i7 = HEAP32[i30 >> 2] | 0; HEAP32[i30 >> 2] = i7 + 1; HEAP8[i7 >> 0] = i33; i7 = i2 + 1 | 0; i4 = i32; } } while (0); i2 = HEAP32[i30 >> 2] | 0; if ((i3 | 0) != (i2 | 0)) while (1) { i2 = i2 + -1 | 0; if (i3 >>> 0 >= i2 >>> 0) break L4; i33 = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0; HEAP8[i2 >> 0] = i33; i3 = i3 + 1 | 0; } break; } default: {} } while (0); i8 = i8 + 1 | 0; } i1 = HEAP8[i13 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; i1 = i2 ? HEAP32[i26 >> 2] | 0 : i1 & 255; if (i1 >>> 0 > 1) { i33 = i2 ? HEAP32[i27 >> 2] | 0 : i27; i3 = i33 + i1 | 0; i2 = HEAP32[i30 >> 2] | 0; i1 = i33; while (1) { i1 = i1 + 1 | 0; if ((i1 | 0) == (i3 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i2 = i2 + 1 | 0; } HEAP32[i30 >> 2] = i2; } switch ((i31 & 176) << 24 >> 24) { case 32: { HEAP32[i29 >> 2] = HEAP32[i30 >> 2]; break; } case 16: break; default: HEAP32[i29 >> 2] = i28; } return; } function __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i1, i10, i11, i12) { i1 = i1 | 0; i10 = i10 | 0; i11 = i11 | 0; i12 = i12 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i7 = i13 + 24 | 0; i8 = i13 + 12 | 0; i9 = i13; L1 : do if (i1 >>> 0 < i10 >>> 0) { L3 : do if ((HEAP8[i1 >> 0] | 0) != 95) { if ((__ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i10, i11) | 0) != (i10 | 0)) { HEAP32[i12 >> 2] = -2; break L1; } } else { i4 = i10; if ((i4 - i1 | 0) <= 3) { HEAP32[i12 >> 2] = -2; break L1; } switch (HEAP8[i1 + 1 >> 0] | 0) { case 90: { i6 = i1 + 2 | 0; i5 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i6, i10, i11) | 0; i1 = (i5 | 0) == (i10 | 0); if ((!((i5 | 0) == (i6 | 0) | i1) ? (HEAP8[i5 >> 0] | 0) == 46 : 0) ? (i2 = HEAP32[i11 + 4 >> 2] | 0, (HEAP32[i11 >> 2] | 0) != (i2 | 0)) : 0) { i6 = i2 + -24 | 0; HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; i4 = i4 - i5 | 0; if (i4 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i9); if (i4 >>> 0 < 11) { HEAP8[i9 + 11 >> 0] = i4; i3 = i9; } else { i2 = i4 + 16 & -16; i3 = _malloc(i2) | 0; HEAP32[i9 >> 2] = i3; HEAP32[i9 + 8 >> 2] = i2 | -2147483648; HEAP32[i9 + 4 >> 2] = i4; } i1 = i5; i2 = i3; while (1) { if ((i1 | 0) == (i10 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } HEAP8[i3 + i4 >> 0] = 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i9, 0, 42355) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i8, 42358) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i10 = HEAP8[i7 + 11 >> 0] | 0; i5 = i10 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i6, i5 ? HEAP32[i7 >> 2] | 0 : i7, i5 ? HEAP32[i7 + 4 >> 2] | 0 : i10 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9); break L3; } if (i1) break L3; HEAP32[i12 >> 2] = -2; break L1; } case 95: { if ((HEAP8[i1 + 2 >> 0] | 0) == 95 ? (HEAP8[i1 + 3 >> 0] | 0) == 90 : 0) { i9 = i1 + 4 | 0; i3 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i9, i10, i11) | 0; if ((i3 | 0) == (i9 | 0) | (i3 | 0) == (i10 | 0)) { HEAP32[i12 >> 2] = -2; break L1; } L41 : do if ((i4 - i3 | 0) > 12) { i2 = 0; i1 = i3; while (1) { if ((i2 | 0) >= 13) break; if ((HEAP8[i1 >> 0] | 0) != (HEAP8[42360 + i2 >> 0] | 0)) { i1 = i3; break L41; } i2 = i2 + 1 | 0; i1 = i1 + 1 | 0; } L47 : do if ((i1 | 0) == (i10 | 0)) i1 = i10; else { if ((HEAP8[i1 >> 0] | 0) == 95) { i2 = i1 + 1 | 0; if ((i2 | 0) == (i10 | 0)) { i1 = i3; break L41; } if (((HEAP8[i2 >> 0] | 0) + -48 | 0) >>> 0 >= 10) { i1 = i3; break L41; } i1 = i1 + 2 | 0; } while (1) { if ((i1 | 0) == (i10 | 0)) { i1 = i10; break L47; } if (((HEAP8[i1 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break L47; i1 = i1 + 1 | 0; } } while (0); i2 = HEAP32[i11 + 4 >> 2] | 0; if ((HEAP32[i11 >> 2] | 0) != (i2 | 0)) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i2 + -24 | 0, 0, 42374) | 0; else i1 = i3; } else i1 = i3; while (0); if ((i1 | 0) == (i10 | 0)) break L3; HEAP32[i12 >> 2] = -2; break L1; } break; } default: {} } HEAP32[i12 >> 2] = -2; break L1; } while (0); if ((HEAP32[i12 >> 2] | 0) == 0 ? (HEAP32[i11 >> 2] | 0) == (HEAP32[i11 + 4 >> 2] | 0) : 0) HEAP32[i12 >> 2] = -2; } else HEAP32[i12 >> 2] = -2; while (0); STACKTOP = i13; return; } function __ZNSt3__213__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_(i1, i11) { i1 = i1 | 0; i11 = i11 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0; i2 = HEAP32[i11 >> 2] | 0; do if (i2) if (HEAP32[i11 + 4 >> 2] | 0) { i3 = __ZNSt3__211__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i11) | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i4 = i3; i5 = 6; break; } else { i4 = i3; i5 = 8; break; } } else { i4 = i11; i3 = i11; i5 = 8; break; } else { i4 = i11; i3 = i11; i5 = 6; } while (0); if ((i5 | 0) == 6) { i2 = HEAP32[i4 + 4 >> 2] | 0; if (!i2) { i9 = i4 + 8 | 0; i10 = 0; i2 = 0; i8 = i3; } else i5 = 8; } if ((i5 | 0) == 8) { i9 = i4 + 8 | 0; HEAP32[i2 + 8 >> 2] = HEAP32[i9 >> 2]; i10 = 1; i8 = i3; } i3 = HEAP32[i9 >> 2] | 0; i5 = HEAP32[i3 >> 2] | 0; if ((i5 | 0) == (i4 | 0)) { HEAP32[i3 >> 2] = i2; if ((i4 | 0) == (i1 | 0)) { i1 = i2; i5 = 0; } else i5 = HEAP32[i3 + 4 >> 2] | 0; } else HEAP32[i3 + 4 >> 2] = i2; i6 = i4 + 12 | 0; i7 = (HEAP8[i6 >> 0] | 0) != 0; if ((i4 | 0) != (i11 | 0)) { i12 = i11 + 8 | 0; i3 = HEAP32[i12 >> 2] | 0; HEAP32[i9 >> 2] = i3; if ((HEAP32[HEAP32[i12 >> 2] >> 2] | 0) == (i11 | 0)) HEAP32[i3 >> 2] = i4; else HEAP32[i3 + 4 >> 2] = i4; i3 = HEAP32[i11 >> 2] | 0; HEAP32[i8 >> 2] = i3; HEAP32[i3 + 8 >> 2] = i4; i3 = HEAP32[i11 + 4 >> 2] | 0; HEAP32[i4 + 4 >> 2] = i3; if (i3 | 0) HEAP32[i3 + 8 >> 2] = i4; HEAP8[i6 >> 0] = HEAP8[i11 + 12 >> 0] | 0; i1 = (i1 | 0) == (i11 | 0) ? i4 : i1; } do if (i7 & (i1 | 0) != 0) { if (i10) { HEAP8[i2 + 12 >> 0] = 1; break; } while (1) { i2 = HEAP32[i5 + 8 >> 2] | 0; i3 = i5 + 12 | 0; i4 = (HEAP8[i3 >> 0] | 0) != 0; if ((HEAP32[i2 >> 2] | 0) == (i5 | 0)) { if (i4) i2 = i5; else { HEAP8[i3 >> 0] = 1; HEAP8[i2 + 12 >> 0] = 0; __ZNSt3__219__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2); i12 = HEAP32[i5 + 4 >> 2] | 0; i2 = HEAP32[i12 >> 2] | 0; i1 = (i1 | 0) == (i12 | 0) ? i5 : i1; } i4 = HEAP32[i2 >> 2] | 0; i3 = (i4 | 0) == 0; if (!i3 ? (HEAP8[i4 + 12 >> 0] | 0) == 0 : 0) { i5 = 49; break; } i12 = HEAP32[i2 + 4 >> 2] | 0; if (i12 | 0 ? (HEAP8[i12 + 12 >> 0] | 0) == 0 : 0) { i5 = 48; break; } HEAP8[i2 + 12 >> 0] = 0; i2 = HEAP32[i2 + 8 >> 2] | 0; i3 = i2 + 12 | 0; if ((i2 | 0) == (i1 | 0) | (HEAP8[i3 >> 0] | 0) == 0) { i5 = 45; break; } i12 = HEAP32[i2 + 8 >> 2] | 0; i2 = (HEAP32[i12 >> 2] | 0) == (i2 | 0) ? i12 + 4 | 0 : i12; } else { if (i4) i2 = i5; else { HEAP8[i3 >> 0] = 1; HEAP8[i2 + 12 >> 0] = 0; __ZNSt3__218__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2); i12 = HEAP32[i5 >> 2] | 0; i2 = HEAP32[i12 + 4 >> 2] | 0; i1 = (i1 | 0) == (i12 | 0) ? i5 : i1; } i4 = HEAP32[i2 >> 2] | 0; if (i4 | 0 ? (HEAP8[i4 + 12 >> 0] | 0) == 0 : 0) { i5 = 34; break; } i3 = HEAP32[i2 + 4 >> 2] | 0; if (i3 | 0 ? (HEAP8[i3 + 12 >> 0] | 0) == 0 : 0) { i1 = i3; i5 = 35; break; } HEAP8[i2 + 12 >> 0] = 0; i2 = HEAP32[i2 + 8 >> 2] | 0; if ((i2 | 0) == (i1 | 0)) { i5 = 32; break; } if (!(HEAP8[i2 + 12 >> 0] | 0)) { i1 = i2; i5 = 32; break; } i12 = HEAP32[i2 + 8 >> 2] | 0; i2 = (HEAP32[i12 >> 2] | 0) == (i2 | 0) ? i12 + 4 | 0 : i12; } i5 = HEAP32[i2 >> 2] | 0; } if ((i5 | 0) == 32) { HEAP8[i1 + 12 >> 0] = 1; break; } else if ((i5 | 0) == 34) { i1 = HEAP32[i2 + 4 >> 2] | 0; if (!i1) i5 = 36; else i5 = 35; } else if ((i5 | 0) == 45) { HEAP8[i3 >> 0] = 1; break; } else if ((i5 | 0) == 48) if (i3) i5 = 50; else i5 = 49; if ((i5 | 0) == 35) if (!(HEAP8[i1 + 12 >> 0] | 0)) i5 = 37; else i5 = 36; else if ((i5 | 0) == 49) if (!(HEAP8[i4 + 12 >> 0] | 0)) { i1 = i4; i5 = 51; } else i5 = 50; if ((i5 | 0) == 36) { HEAP8[i4 + 12 >> 0] = 1; HEAP8[i2 + 12 >> 0] = 0; __ZNSt3__219__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2); i1 = HEAP32[i2 + 8 >> 2] | 0; i2 = i1; i1 = HEAP32[i1 + 4 >> 2] | 0; i5 = 37; } else if ((i5 | 0) == 50) { HEAP8[(HEAP32[i2 + 4 >> 2] | 0) + 12 >> 0] = 1; HEAP8[i2 + 12 >> 0] = 0; __ZNSt3__218__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2); i1 = HEAP32[i2 + 8 >> 2] | 0; i2 = i1; i1 = HEAP32[i1 >> 2] | 0; i5 = 51; } if ((i5 | 0) == 37) { i12 = HEAP32[i2 + 8 >> 2] | 0; i11 = i12 + 12 | 0; HEAP8[i2 + 12 >> 0] = HEAP8[i11 >> 0] | 0; HEAP8[i11 >> 0] = 1; HEAP8[i1 + 12 >> 0] = 1; __ZNSt3__218__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i12); break; } else if ((i5 | 0) == 51) { i12 = HEAP32[i2 + 8 >> 2] | 0; i11 = i12 + 12 | 0; HEAP8[i2 + 12 >> 0] = HEAP8[i11 >> 0] | 0; HEAP8[i11 >> 0] = 1; HEAP8[i1 + 12 >> 0] = 1; __ZNSt3__219__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i12); break; } } while (0); return; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIfEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i24, i25, i2, i26, i20) { i1 = i1 | 0; i24 = i24 | 0; i25 = i25 | 0; i2 = i2 | 0; i26 = i26 | 0; i20 = i20 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i21 = 0, i22 = 0, i23 = 0, i27 = 0, d28 = 0.0; i23 = STACKTOP; STACKTOP = STACKTOP + 352 | 0; i11 = i23 + 208 | 0; i12 = i23 + 200 | 0; i13 = i23 + 196 | 0; i22 = i23 + 184 | 0; i21 = i23 + 172 | 0; i14 = i23 + 168 | 0; i15 = i23 + 8 | 0; i16 = i23 + 4 | 0; i17 = i23; i18 = i23 + 337 | 0; i10 = i23 + 336 | 0; __ZNSt3__29__num_getIwE19__stage2_float_prepERNS_8ios_baseEPwRwS5_(i22, i2, i11, i12, i13); HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i21 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i21 + 11 | 0; i9 = i21 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i1; HEAP32[i16 >> 2] = i15; HEAP32[i17 >> 2] = 0; HEAP8[i18 >> 0] = 1; HEAP8[i10 >> 0] = 69; i7 = i21 + 4 | 0; i3 = HEAP32[i24 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i24 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i25 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i25 >> 2] = 0; i27 = 19; break; } } else i27 = 19; while (0); if ((i27 | 0) == 19) { i27 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i14 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw(i2, i18, i10, i1, i14, HEAP32[i12 >> 2] | 0, HEAP32[i13 >> 2] | 0, i22, i15, i16, i17, i11) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i13 = HEAP8[i22 + 11 >> 0] | 0; if (!((HEAP8[i18 >> 0] | 0) == 0 ? 1 : ((i13 << 24 >> 24 < 0 ? HEAP32[i22 + 4 >> 2] | 0 : i13 & 255) | 0) == 0) ? (i19 = HEAP32[i16 >> 2] | 0, (i19 - i15 | 0) < 160) : 0) { i18 = HEAP32[i17 >> 2] | 0; HEAP32[i16 >> 2] = i19 + 4; HEAP32[i19 >> 2] = i18; } d28 = +__ZNSt3__215__num_get_floatIfEET_PKcS3_Rj(i1, HEAP32[i14 >> 2] | 0, i26); HEAPF32[i20 >> 2] = d28; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i22, i15, HEAP32[i16 >> 2] | 0, i26); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i24 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i27 = 49; break; } else { HEAP32[i25 >> 2] = 0; i27 = 47; break; } } else i27 = 47; while (0); if ((i27 | 0) == 47 ? i2 : 0) i27 = 49; if ((i27 | 0) == 49) HEAP32[i26 >> 2] = HEAP32[i26 >> 2] | 2; i27 = HEAP32[i24 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i21); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i22); STACKTOP = i23; return i27 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIeEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i24, i25, i2, i26, i20) { i1 = i1 | 0; i24 = i24 | 0; i25 = i25 | 0; i2 = i2 | 0; i26 = i26 | 0; i20 = i20 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i21 = 0, i22 = 0, i23 = 0, i27 = 0, d28 = 0.0; i23 = STACKTOP; STACKTOP = STACKTOP + 352 | 0; i11 = i23 + 208 | 0; i12 = i23 + 200 | 0; i13 = i23 + 196 | 0; i22 = i23 + 184 | 0; i21 = i23 + 172 | 0; i14 = i23 + 168 | 0; i15 = i23 + 8 | 0; i16 = i23 + 4 | 0; i17 = i23; i18 = i23 + 337 | 0; i10 = i23 + 336 | 0; __ZNSt3__29__num_getIwE19__stage2_float_prepERNS_8ios_baseEPwRwS5_(i22, i2, i11, i12, i13); HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i21 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i21 + 11 | 0; i9 = i21 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i1; HEAP32[i16 >> 2] = i15; HEAP32[i17 >> 2] = 0; HEAP8[i18 >> 0] = 1; HEAP8[i10 >> 0] = 69; i7 = i21 + 4 | 0; i3 = HEAP32[i24 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i24 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i25 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i25 >> 2] = 0; i27 = 19; break; } } else i27 = 19; while (0); if ((i27 | 0) == 19) { i27 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i14 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw(i2, i18, i10, i1, i14, HEAP32[i12 >> 2] | 0, HEAP32[i13 >> 2] | 0, i22, i15, i16, i17, i11) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i13 = HEAP8[i22 + 11 >> 0] | 0; if (!((HEAP8[i18 >> 0] | 0) == 0 ? 1 : ((i13 << 24 >> 24 < 0 ? HEAP32[i22 + 4 >> 2] | 0 : i13 & 255) | 0) == 0) ? (i19 = HEAP32[i16 >> 2] | 0, (i19 - i15 | 0) < 160) : 0) { i18 = HEAP32[i17 >> 2] | 0; HEAP32[i16 >> 2] = i19 + 4; HEAP32[i19 >> 2] = i18; } d28 = +__ZNSt3__215__num_get_floatIeEET_PKcS3_Rj(i1, HEAP32[i14 >> 2] | 0, i26); HEAPF64[i20 >> 3] = d28; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i22, i15, HEAP32[i16 >> 2] | 0, i26); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i24 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i27 = 49; break; } else { HEAP32[i25 >> 2] = 0; i27 = 47; break; } } else i27 = 47; while (0); if ((i27 | 0) == 47 ? i2 : 0) i27 = 49; if ((i27 | 0) == 49) HEAP32[i26 >> 2] = HEAP32[i26 >> 2] | 2; i27 = HEAP32[i24 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i21); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i22); STACKTOP = i23; return i27 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIdEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i24, i25, i2, i26, i20) { i1 = i1 | 0; i24 = i24 | 0; i25 = i25 | 0; i2 = i2 | 0; i26 = i26 | 0; i20 = i20 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i21 = 0, i22 = 0, i23 = 0, i27 = 0, d28 = 0.0; i23 = STACKTOP; STACKTOP = STACKTOP + 352 | 0; i11 = i23 + 208 | 0; i12 = i23 + 200 | 0; i13 = i23 + 196 | 0; i22 = i23 + 184 | 0; i21 = i23 + 172 | 0; i14 = i23 + 168 | 0; i15 = i23 + 8 | 0; i16 = i23 + 4 | 0; i17 = i23; i18 = i23 + 337 | 0; i10 = i23 + 336 | 0; __ZNSt3__29__num_getIwE19__stage2_float_prepERNS_8ios_baseEPwRwS5_(i22, i2, i11, i12, i13); HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i21 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i21 + 11 | 0; i9 = i21 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i1; HEAP32[i16 >> 2] = i15; HEAP32[i17 >> 2] = 0; HEAP8[i18 >> 0] = 1; HEAP8[i10 >> 0] = 69; i7 = i21 + 4 | 0; i3 = HEAP32[i24 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i24 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i25 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i25 >> 2] = 0; i27 = 19; break; } } else i27 = 19; while (0); if ((i27 | 0) == 19) { i27 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i14 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw(i2, i18, i10, i1, i14, HEAP32[i12 >> 2] | 0, HEAP32[i13 >> 2] | 0, i22, i15, i16, i17, i11) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i13 = HEAP8[i22 + 11 >> 0] | 0; if (!((HEAP8[i18 >> 0] | 0) == 0 ? 1 : ((i13 << 24 >> 24 < 0 ? HEAP32[i22 + 4 >> 2] | 0 : i13 & 255) | 0) == 0) ? (i19 = HEAP32[i16 >> 2] | 0, (i19 - i15 | 0) < 160) : 0) { i18 = HEAP32[i17 >> 2] | 0; HEAP32[i16 >> 2] = i19 + 4; HEAP32[i19 >> 2] = i18; } d28 = +__ZNSt3__215__num_get_floatIdEET_PKcS3_Rj(i1, HEAP32[i14 >> 2] | 0, i26); HEAPF64[i20 >> 3] = d28; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i22, i15, HEAP32[i16 >> 2] | 0, i26); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i24 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i27 = 49; break; } else { HEAP32[i25 >> 2] = 0; i27 = 47; break; } } else i27 = 47; while (0); if ((i27 | 0) == 47 ? i2 : 0) i27 = 49; if ((i27 | 0) == 49) HEAP32[i26 >> 2] = HEAP32[i26 >> 2] | 2; i27 = HEAP32[i24 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i21); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i22); STACKTOP = i23; return i27 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv(i1, i20, i21, i2, i22, i16) { i1 = i1 | 0; i20 = i20 | 0; i21 = i21 | 0; i2 = i2 | 0; i22 = i22 | 0; i16 = i16 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0, i23 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 320 | 0; i15 = i19; i13 = i19 + 208 | 0; i17 = i19 + 192 | 0; i18 = i19 + 180 | 0; i14 = i19 + 176 | 0; i10 = i19 + 16 | 0; i11 = i19 + 8 | 0; i12 = i19 + 4 | 0; HEAP32[i17 >> 2] = 0; HEAP32[i17 + 4 >> 2] = 0; HEAP32[i17 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i17 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i18 >> 2] = i1; i9 = __ZNKSt3__26locale9use_facetERNS0_2idE(i18, 47508) | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i9 >> 2] | 0) + 48 >> 2] & 7](i9, 38819, 38845, i13) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i1) | 0; HEAP32[i18 >> 2] = 0; HEAP32[i18 + 4 >> 2] = 0; HEAP32[i18 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i18 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i9 = i18 + 11 | 0; i8 = i18 + 8 | 0; if ((HEAP8[i9 >> 0] | 0) < 0) i1 = (HEAP32[i8 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0); i1 = (HEAP8[i9 >> 0] | 0) < 0 ? HEAP32[i18 >> 2] | 0 : i18; HEAP32[i14 >> 2] = i1; HEAP32[i11 >> 2] = i10; HEAP32[i12 >> 2] = 0; i7 = i18 + 4 | 0; i3 = HEAP32[i20 >> 2] | 0; L12 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i20 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i21 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L12; else { HEAP32[i21 >> 2] = 0; i23 = 22; break; } } else i23 = 22; while (0); if ((i23 | 0) == 22) { i23 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i9 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i14 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i2 << 1, 0); if ((HEAP8[i9 >> 0] | 0) < 0) i1 = (HEAP32[i8 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0); i1 = (HEAP8[i9 >> 0] | 0) < 0 ? HEAP32[i18 >> 2] | 0 : i18; HEAP32[i14 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i2, 16, i1, i14, i12, 0, i17, i10, i11, i13) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, (HEAP32[i14 >> 2] | 0) - i1 | 0, 0); i13 = (HEAP8[i9 >> 0] | 0) < 0 ? HEAP32[i18 >> 2] | 0 : i18; i14 = __ZNSt3__26__clocEv() | 0; HEAP32[i15 >> 2] = i16; if ((__ZNSt3__217__libcpp_sscanf_lEPKcP15__locale_structS1_z(i13, i14, 38852, i15) | 0) != 1) HEAP32[i22 >> 2] = 4; if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i20 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i23 = 51; break; } else { HEAP32[i21 >> 2] = 0; i23 = 49; break; } } else i23 = 49; while (0); if ((i23 | 0) == 49 ? i2 : 0) i23 = 51; if ((i23 | 0) == 51) HEAP32[i22 >> 2] = HEAP32[i22 >> 2] | 2; i23 = HEAP32[i20 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i18); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17); STACKTOP = i19; return i23 | 0; } function __ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i15, i16, i1, i18, i13, i19, i14) { i15 = i15 | 0; i16 = i16 | 0; i1 = i1 | 0; i18 = i18 | 0; i13 = i13 | 0; i19 = i19 | 0; i14 = i14 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i17 = 0, i20 = 0, i21 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 112 | 0; i2 = i21; i4 = (i18 - i1 | 0) / 12 | 0; if (i4 >>> 0 > 100) { i3 = _malloc(i4) | 0; if (!i3) { i2 = 0; i17 = 0; } else { i2 = i3; i17 = i3; } } else i17 = 0; i3 = 0; i6 = i1; i7 = i2; while (1) { if ((i6 | 0) == (i18 | 0)) break; i5 = HEAP8[i6 + 8 + 3 >> 0] | 0; if (i5 << 24 >> 24 < 0) i5 = HEAP32[i6 + 4 >> 2] | 0; else i5 = i5 & 255; if (!i5) { HEAP8[i7 >> 0] = 2; i3 = i3 + 1 | 0; i4 = i4 + -1 | 0; } else HEAP8[i7 >> 0] = 1; i6 = i6 + 12 | 0; i7 = i7 + 1 | 0; } i12 = 0; i10 = i3; L17 : while (1) { i3 = HEAP32[i15 >> 2] | 0; do if (i3) { i5 = HEAP32[i3 + 12 >> 2] | 0; if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == -1) { HEAP32[i15 >> 2] = 0; i7 = 1; break; } else { i7 = (HEAP32[i15 >> 2] | 0) == 0; break; } } else i7 = 1; while (0); i5 = HEAP32[i16 >> 2] | 0; if (i5) { i3 = HEAP32[i5 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i3 = HEAP32[i3 >> 2] | 0; if ((i3 | 0) == -1) { HEAP32[i16 >> 2] = 0; i5 = 0; i3 = 1; } else i3 = 0; } else { i5 = 0; i3 = 1; } i6 = HEAP32[i15 >> 2] | 0; if (!((i4 | 0) != 0 & (i7 ^ i3))) break; i3 = HEAP32[i6 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i3 = HEAP32[i3 >> 2] | 0; if (!i14) i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i13 >> 2] | 0) + 28 >> 2] & 31](i13, i3) | 0; i11 = i12 + 1 | 0; i8 = i1; i7 = 0; i9 = i2; while (1) { if ((i8 | 0) == (i18 | 0)) break; do if ((HEAP8[i9 >> 0] | 0) == 1) { i6 = i8 + 8 + 3 | 0; if ((HEAP8[i6 >> 0] | 0) < 0) i5 = HEAP32[i8 >> 2] | 0; else i5 = i8; i5 = HEAP32[i5 + (i12 << 2) >> 2] | 0; if (!i14) i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i13 >> 2] | 0) + 28 >> 2] & 31](i13, i5) | 0; if ((i3 | 0) != (i5 | 0)) { HEAP8[i9 >> 0] = 0; i5 = i7; i6 = i10; i4 = i4 + -1 | 0; break; } i5 = HEAP8[i6 >> 0] | 0; if (i5 << 24 >> 24 < 0) i5 = HEAP32[i8 + 4 >> 2] | 0; else i5 = i5 & 255; if ((i5 | 0) == (i11 | 0)) { HEAP8[i9 >> 0] = 2; i5 = 1; i6 = i10 + 1 | 0; i4 = i4 + -1 | 0; } else { i5 = 1; i6 = i10; } } else { i5 = i7; i6 = i10; } while (0); i8 = i8 + 12 | 0; i7 = i5; i9 = i9 + 1 | 0; i10 = i6; } if (!i7) { i12 = i11; continue; } i3 = HEAP32[i15 >> 2] | 0; i5 = i3 + 12 | 0; i6 = HEAP32[i5 >> 2] | 0; if ((i6 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0; else HEAP32[i5 >> 2] = i6 + 4; if ((i10 + i4 | 0) >>> 0 > 1) { i6 = i1; i7 = i2; i3 = i10; } else { i12 = i11; continue; } while (1) { if ((i6 | 0) == (i18 | 0)) { i12 = i11; i10 = i3; continue L17; } if ((HEAP8[i7 >> 0] | 0) == 2) { i5 = HEAP8[i6 + 8 + 3 >> 0] | 0; if (i5 << 24 >> 24 < 0) i5 = HEAP32[i6 + 4 >> 2] | 0; else i5 = i5 & 255; if ((i5 | 0) != (i11 | 0)) { HEAP8[i7 >> 0] = 0; i3 = i3 + -1 | 0; } } i6 = i6 + 12 | 0; i7 = i7 + 1 | 0; } } do if (i6) { i3 = HEAP32[i6 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i3 = HEAP32[i3 >> 2] | 0; if ((i3 | 0) == -1) { HEAP32[i15 >> 2] = 0; i4 = 1; break; } else { i4 = (HEAP32[i15 >> 2] | 0) == 0; break; } } else i4 = 1; while (0); do if (i5) { i3 = HEAP32[i5 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i3 = HEAP32[i3 >> 2] | 0; if ((i3 | 0) != -1) if (i4) break; else { i20 = 77; break; } else { HEAP32[i16 >> 2] = 0; i20 = 41; break; } } else i20 = 41; while (0); if ((i20 | 0) == 41) if (i4) i20 = 77; if ((i20 | 0) == 77) HEAP32[i19 >> 2] = HEAP32[i19 >> 2] | 2; while (1) { if ((i1 | 0) == (i18 | 0)) { i20 = 81; break; } if ((HEAP8[i2 >> 0] | 0) == 2) break; i1 = i1 + 12 | 0; i2 = i2 + 1 | 0; } if ((i20 | 0) == 81) { HEAP32[i19 >> 2] = HEAP32[i19 >> 2] | 4; i1 = i18; } _free(i17); STACKTOP = i21; return i1 | 0; } function _try_realloc_chunk(i14, i11) { i14 = i14 | 0; i11 = i11 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0; i12 = i14 + 4 | 0; i13 = HEAP32[i12 >> 2] | 0; i1 = i13 & -8; i8 = i14 + i1 | 0; i6 = HEAP32[11487] | 0; i2 = i13 & 3; if (!((i2 | 0) != 1 & i14 >>> 0 >= i6 >>> 0 & i14 >>> 0 < i8 >>> 0)) _abort(); i3 = HEAP32[i8 + 4 >> 2] | 0; if (!(i3 & 1)) _abort(); if (!i2) { if (i11 >>> 0 < 256) { i14 = 0; return i14 | 0; } if (i1 >>> 0 >= (i11 + 4 | 0) >>> 0 ? (i1 - i11 | 0) >>> 0 <= HEAP32[11603] << 1 >>> 0 : 0) return i14 | 0; i14 = 0; return i14 | 0; } if (i1 >>> 0 >= i11 >>> 0) { i1 = i1 - i11 | 0; if (i1 >>> 0 <= 15) return i14 | 0; i10 = i14 + i11 | 0; HEAP32[i12 >> 2] = i13 & 1 | i11 | 2; HEAP32[i10 + 4 >> 2] = i1 | 3; i13 = i10 + i1 + 4 | 0; HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 1; _dispose_chunk(i10, i1); return i14 | 0; } if ((i8 | 0) == (HEAP32[11489] | 0)) { i1 = (HEAP32[11486] | 0) + i1 | 0; if (i1 >>> 0 <= i11 >>> 0) { i14 = 0; return i14 | 0; } i10 = i1 - i11 | 0; i9 = i14 + i11 | 0; HEAP32[i12 >> 2] = i13 & 1 | i11 | 2; HEAP32[i9 + 4 >> 2] = i10 | 1; HEAP32[11489] = i9; HEAP32[11486] = i10; return i14 | 0; } if ((i8 | 0) == (HEAP32[11488] | 0)) { i2 = (HEAP32[11485] | 0) + i1 | 0; if (i2 >>> 0 < i11 >>> 0) { i14 = 0; return i14 | 0; } i1 = i2 - i11 | 0; if (i1 >>> 0 > 15) { i2 = i14 + i11 | 0; i10 = i2 + i1 | 0; HEAP32[i12 >> 2] = i13 & 1 | i11 | 2; HEAP32[i2 + 4 >> 2] = i1 | 1; HEAP32[i10 >> 2] = i1; i13 = i10 + 4 | 0; HEAP32[i13 >> 2] = HEAP32[i13 >> 2] & -2; } else { HEAP32[i12 >> 2] = i13 & 1 | i2 | 2; i2 = i14 + i2 + 4 | 0; HEAP32[i2 >> 2] = HEAP32[i2 >> 2] | 1; i2 = 0; i1 = 0; } HEAP32[11485] = i1; HEAP32[11488] = i2; return i14 | 0; } if (i3 & 2 | 0) { i14 = 0; return i14 | 0; } i9 = (i3 & -8) + i1 | 0; if (i9 >>> 0 < i11 >>> 0) { i14 = 0; return i14 | 0; } i10 = i9 - i11 | 0; i4 = i3 >>> 3; do if (i3 >>> 0 >= 256) { i5 = HEAP32[i8 + 24 >> 2] | 0; i3 = HEAP32[i8 + 12 >> 2] | 0; do if ((i3 | 0) == (i8 | 0)) { i3 = i8 + 16 | 0; i2 = i3 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = HEAP32[i3 >> 2] | 0; if (!i1) { i7 = 0; break; } else i2 = i3; } while (1) { i3 = i1 + 20 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 | 0) { i1 = i4; i2 = i3; continue; } i3 = i1 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; if (!i4) break; else { i1 = i4; i2 = i3; } } if (i2 >>> 0 < i6 >>> 0) _abort(); else { HEAP32[i2 >> 2] = 0; i7 = i1; break; } } else { i4 = HEAP32[i8 + 8 >> 2] | 0; if (i4 >>> 0 < i6 >>> 0) _abort(); i1 = i4 + 12 | 0; if ((HEAP32[i1 >> 2] | 0) != (i8 | 0)) _abort(); i2 = i3 + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == (i8 | 0)) { HEAP32[i1 >> 2] = i3; HEAP32[i2 >> 2] = i4; i7 = i3; break; } else _abort(); } while (0); if (i5 | 0) { i1 = HEAP32[i8 + 28 >> 2] | 0; i2 = 46236 + (i1 << 2) | 0; if ((i8 | 0) == (HEAP32[i2 >> 2] | 0)) { HEAP32[i2 >> 2] = i7; if (!i7) { HEAP32[11484] = HEAP32[11484] & ~(1 << i1); break; } } else { if (i5 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); i1 = i5 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) == (i8 | 0)) HEAP32[i1 >> 2] = i7; else HEAP32[i5 + 20 >> 2] = i7; if (!i7) break; } i3 = HEAP32[11487] | 0; if (i7 >>> 0 < i3 >>> 0) _abort(); HEAP32[i7 + 24 >> 2] = i5; i1 = i8 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; do if (i2 | 0) if (i2 >>> 0 < i3 >>> 0) _abort(); else { HEAP32[i7 + 16 >> 2] = i2; HEAP32[i2 + 24 >> 2] = i7; break; } while (0); i1 = HEAP32[i1 + 4 >> 2] | 0; if (i1 | 0) if (i1 >>> 0 < (HEAP32[11487] | 0) >>> 0) _abort(); else { HEAP32[i7 + 20 >> 2] = i1; HEAP32[i1 + 24 >> 2] = i7; break; } } } else { i2 = HEAP32[i8 + 8 >> 2] | 0; i3 = HEAP32[i8 + 12 >> 2] | 0; i1 = 45972 + (i4 << 1 << 2) | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 >>> 0 < i6 >>> 0) _abort(); if ((HEAP32[i2 + 12 >> 2] | 0) != (i8 | 0)) _abort(); } if ((i3 | 0) == (i2 | 0)) { HEAP32[11483] = HEAP32[11483] & ~(1 << i4); break; } if ((i3 | 0) != (i1 | 0)) { if (i3 >>> 0 < i6 >>> 0) _abort(); i1 = i3 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == (i8 | 0)) i5 = i1; else _abort(); } else i5 = i3 + 8 | 0; HEAP32[i2 + 12 >> 2] = i3; HEAP32[i5 >> 2] = i2; } while (0); if (i10 >>> 0 < 16) { HEAP32[i12 >> 2] = i9 | i13 & 1 | 2; i13 = i14 + i9 + 4 | 0; HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 1; return i14 | 0; } else { i9 = i14 + i11 | 0; HEAP32[i12 >> 2] = i13 & 1 | i11 | 2; HEAP32[i9 + 4 >> 2] = i10 | 3; i13 = i9 + i10 + 4 | 0; HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 1; _dispose_chunk(i9, i10); return i14 | 0; } return 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedIyEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 304 | 0; i10 = i21 + 200 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i3 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i22 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i23 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 19; break; } } else i25 = 19; while (0); if ((i25 | 0) == 19) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i12 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i2, i16, i1, i12, i15, HEAP32[i11 >> 2] | 0, i19, i13, i14, i10) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__227__num_get_unsigned_integralIyEET_PKcS3_Rji(i1, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; HEAP32[i18 + 4 >> 2] = tempRet0; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i22 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i25 = 49; break; } else { HEAP32[i23 >> 2] = 0; i25 = 47; break; } } else i25 = 47; while (0); if ((i25 | 0) == 47 ? i2 : 0) i25 = 49; if ((i25 | 0) == 49) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__do_get_signedIxEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 304 | 0; i10 = i21 + 200 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i3 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i22 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i23 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 19; break; } } else i25 = 19; while (0); if ((i25 | 0) == 19) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i12 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i2, i16, i1, i12, i15, HEAP32[i11 >> 2] | 0, i19, i13, i14, i10) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__225__num_get_signed_integralIxEET_PKcS3_Rji(i1, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; HEAP32[i18 + 4 >> 2] = tempRet0; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i22 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i25 = 49; break; } else { HEAP32[i23 >> 2] = 0; i25 = 47; break; } } else i25 = 47; while (0); if ((i25 | 0) == 47 ? i2 : 0) i25 = 49; if ((i25 | 0) == 49) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedItEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 304 | 0; i10 = i21 + 200 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i3 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i22 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i23 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 19; break; } } else i25 = 19; while (0); if ((i25 | 0) == 19) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i12 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i2, i16, i1, i12, i15, HEAP32[i11 >> 2] | 0, i19, i13, i14, i10) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__227__num_get_unsigned_integralItEET_PKcS3_Rji(i1, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP16[i18 >> 1] = i17; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i22 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i25 = 49; break; } else { HEAP32[i23 >> 2] = 0; i25 = 47; break; } } else i25 = 47; while (0); if ((i25 | 0) == 47 ? i2 : 0) i25 = 49; if ((i25 | 0) == 49) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedImEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 304 | 0; i10 = i21 + 200 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i3 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i22 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i23 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 19; break; } } else i25 = 19; while (0); if ((i25 | 0) == 19) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i12 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i2, i16, i1, i12, i15, HEAP32[i11 >> 2] | 0, i19, i13, i14, i10) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__227__num_get_unsigned_integralImEET_PKcS3_Rji(i1, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i22 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i25 = 49; break; } else { HEAP32[i23 >> 2] = 0; i25 = 47; break; } } else i25 = 47; while (0); if ((i25 | 0) == 47 ? i2 : 0) i25 = 49; if ((i25 | 0) == 49) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedIjEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 304 | 0; i10 = i21 + 200 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i3 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i22 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i23 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 19; break; } } else i25 = 19; while (0); if ((i25 | 0) == 19) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i12 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i2, i16, i1, i12, i15, HEAP32[i11 >> 2] | 0, i19, i13, i14, i10) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__227__num_get_unsigned_integralIjEET_PKcS3_Rji(i1, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i22 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i25 = 49; break; } else { HEAP32[i23 >> 2] = 0; i25 = 47; break; } } else i25 = 47; while (0); if ((i25 | 0) == 47 ? i2 : 0) i25 = 49; if ((i25 | 0) == 49) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__do_get_signedIlEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 304 | 0; i10 = i21 + 200 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i3 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i22 >> 2] = 0; i6 = 0; i4 = 1; } else { i6 = i3; i4 = 0; } } else { i6 = 0; i4 = 1; } i3 = HEAP32[i23 >> 2] | 0; do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 19; break; } } else i25 = 19; while (0); if ((i25 | 0) == 19) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i2 = HEAP8[i8 >> 0] | 0; i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i2 & 255; if ((HEAP32[i12 >> 2] | 0) == (i1 + i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i1 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i1 + i2; } i4 = i6 + 12 | 0; i2 = HEAP32[i4 >> 2] | 0; i5 = i6 + 16 | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (__ZNSt3__29__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i2, i16, i1, i12, i15, HEAP32[i11 >> 2] | 0, i19, i13, i14, i10) | 0) break; i2 = HEAP32[i4 >> 2] | 0; if ((i2 | 0) == (HEAP32[i5 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] & 127](i6) | 0; i3 = i6; continue; } else { HEAP32[i4 >> 2] = i2 + 4; i3 = i6; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__225__num_get_signed_integralIlEET_PKcS3_Rji(i1, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i6) { i1 = HEAP32[i6 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i22 >> 2] = 0; i2 = 1; } else i2 = 0; } else i2 = 1; do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i25 = 49; break; } else { HEAP32[i23 >> 2] = 0; i25 = 47; break; } } else i25 = 47; while (0); if ((i25 | 0) == 47 ? i2 : 0) i25 = 49; if ((i25 | 0) == 49) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNSt3__29__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i13, i14, i15, i16, i17, i18, i1) { i13 = i13 | 0; i14 = i14 | 0; i15 = i15 | 0; i16 = i16 | 0; i17 = i17 | 0; i18 = i18 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0; i22 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i19 = i22; i20 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47508) | 0; i11 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47516) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i11 >> 2] | 0) + 20 >> 2] & 255](i19, i11); HEAP32[i18 >> 2] = i16; i1 = HEAP8[i13 >> 0] | 0; switch (i1 << 24 >> 24) { case 43: case 45: { i12 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i20 >> 2] | 0) + 44 >> 2] & 31](i20, i1) | 0; i1 = HEAP32[i18 >> 2] | 0; HEAP32[i18 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i12; i1 = i13 + 1 | 0; break; } default: i1 = i13; } i12 = i15; L4 : do if ((i12 - i1 | 0) > 1 ? (HEAP8[i1 >> 0] | 0) == 48 : 0) { i2 = i1 + 1 | 0; switch (HEAP8[i2 >> 0] | 0) { case 88: case 120: break; default: { i2 = i1; i21 = 10; break L4; } } i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i20 >> 2] | 0) + 44 >> 2] & 31](i20, 48) | 0; i10 = HEAP32[i18 >> 2] | 0; HEAP32[i18 >> 2] = i10 + 4; HEAP32[i10 >> 2] = i9; i1 = i1 + 2 | 0; i10 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i20 >> 2] | 0) + 44 >> 2] & 31](i20, HEAP8[i2 >> 0] | 0) | 0; i2 = HEAP32[i18 >> 2] | 0; HEAP32[i18 >> 2] = i2 + 4; HEAP32[i2 >> 2] = i10; i2 = i1; while (1) { if (i2 >>> 0 >= i15 >>> 0) break L4; i10 = HEAP8[i2 >> 0] | 0; if (!(_isxdigit_l(i10, __ZNSt3__26__clocEv() | 0) | 0)) break L4; i2 = i2 + 1 | 0; } } else { i2 = i1; i21 = 10; } while (0); L12 : do if ((i21 | 0) == 10) while (1) { i21 = 0; if (i2 >>> 0 >= i15 >>> 0) break L12; i10 = HEAP8[i2 >> 0] | 0; if (!(_isdigit_l(i10, __ZNSt3__26__clocEv() | 0) | 0)) break L12; i2 = i2 + 1 | 0; i21 = 10; } while (0); i9 = i19 + 11 | 0; i8 = HEAP8[i9 >> 0] | 0; i10 = i19 + 4 | 0; L18 : do if ((i8 << 24 >> 24 < 0 ? HEAP32[i10 >> 2] | 0 : i8 & 255) | 0) { L21 : do if ((i1 | 0) != (i2 | 0)) { i3 = i2; i4 = i1; while (1) { i3 = i3 + -1 | 0; if (i4 >>> 0 >= i3 >>> 0) break L21; i8 = HEAP8[i4 >> 0] | 0; HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = i8; i4 = i4 + 1 | 0; } } while (0); i8 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i11 >> 2] | 0) + 16 >> 2] & 127](i11) | 0; i7 = i1; i3 = 0; i4 = 0; while (1) { if (i7 >>> 0 >= i2 >>> 0) break; i5 = HEAP8[i9 >> 0] | 0; i6 = i5 << 24 >> 24 < 0; i23 = HEAP8[(i6 ? HEAP32[i19 >> 2] | 0 : i19) + i3 >> 0] | 0; if (i23 << 24 >> 24 > 0 & (i4 | 0) == (i23 << 24 >> 24 | 0)) { i4 = HEAP32[i18 >> 2] | 0; HEAP32[i18 >> 2] = i4 + 4; HEAP32[i4 >> 2] = i8; i3 = (i3 >>> 0 < ((i6 ? HEAP32[i10 >> 2] | 0 : i5 & 255) + -1 | 0) >>> 0 & 1) + i3 | 0; i4 = 0; } i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i20 >> 2] | 0) + 44 >> 2] & 31](i20, HEAP8[i7 >> 0] | 0) | 0; i23 = HEAP32[i18 >> 2] | 0; HEAP32[i18 >> 2] = i23 + 4; HEAP32[i23 >> 2] = i6; i7 = i7 + 1 | 0; i4 = i4 + 1 | 0; } i1 = i16 + (i1 - i13 << 2) | 0; i4 = HEAP32[i18 >> 2] | 0; if ((i1 | 0) == (i4 | 0)) i3 = i20; else { i3 = i4; while (1) { i3 = i3 + -4 | 0; if (i1 >>> 0 >= i3 >>> 0) { i3 = i20; i1 = i4; break L18; } i23 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i3 >> 2] = i23; i1 = i1 + 4 | 0; } } } else { FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i20 >> 2] | 0) + 48 >> 2] & 7](i20, i1, i2, HEAP32[i18 >> 2] | 0) | 0; i1 = (HEAP32[i18 >> 2] | 0) + (i2 - i1 << 2) | 0; HEAP32[i18 >> 2] = i1; i3 = i20; } while (0); while (1) { if (i2 >>> 0 >= i15 >>> 0) break; i1 = HEAP8[i2 >> 0] | 0; if (i1 << 24 >> 24 == 46) { i21 = 29; break; } i10 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 44 >> 2] & 31](i20, i1) | 0; i23 = HEAP32[i18 >> 2] | 0; i1 = i23 + 4 | 0; HEAP32[i18 >> 2] = i1; HEAP32[i23 >> 2] = i10; i2 = i2 + 1 | 0; } if ((i21 | 0) == 29) { i21 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i11 >> 2] | 0) + 12 >> 2] & 127](i11) | 0; i23 = HEAP32[i18 >> 2] | 0; i1 = i23 + 4 | 0; HEAP32[i18 >> 2] = i1; HEAP32[i23 >> 2] = i21; i2 = i2 + 1 | 0; } FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i20 >> 2] | 0) + 48 >> 2] & 7](i20, i2, i15, i1) | 0; i23 = (HEAP32[i18 >> 2] | 0) + (i12 - i2 << 2) | 0; HEAP32[i18 >> 2] = i23; HEAP32[i17 >> 2] = (i14 | 0) == (i15 | 0) ? i23 : i16 + (i14 - i13 << 2) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i22; return; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIfEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i24, i25, i2, i26, i20) { i1 = i1 | 0; i24 = i24 | 0; i25 = i25 | 0; i2 = i2 | 0; i26 = i26 | 0; i20 = i20 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i21 = 0, i22 = 0, i23 = 0, i27 = 0, d28 = 0.0; i23 = STACKTOP; STACKTOP = STACKTOP + 240 | 0; i11 = i23 + 200 | 0; i12 = i23 + 199 | 0; i13 = i23 + 198 | 0; i22 = i23 + 184 | 0; i21 = i23 + 172 | 0; i14 = i23 + 168 | 0; i15 = i23 + 8 | 0; i16 = i23 + 4 | 0; i17 = i23; i18 = i23 + 197 | 0; i10 = i23 + 196 | 0; __ZNSt3__29__num_getIcE19__stage2_float_prepERNS_8ios_baseEPcRcS5_(i22, i2, i11, i12, i13); HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i21 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i21 + 11 | 0; i9 = i21 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i2; HEAP32[i16 >> 2] = i15; HEAP32[i17 >> 2] = 0; HEAP8[i18 >> 0] = 1; HEAP8[i10 >> 0] = 69; i7 = i21 + 4 | 0; i1 = HEAP32[i24 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i24 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i25 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i25 >> 2] = 0; i27 = 16; break; } } else i27 = 16; while (0); if ((i27 | 0) == 16) { i27 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjS4_(i4 & 255, i18, i10, i2, i14, HEAP8[i12 >> 0] | 0, HEAP8[i13 >> 0] | 0, i22, i15, i16, i17, i11) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i13 = HEAP8[i22 + 11 >> 0] | 0; if (!((HEAP8[i18 >> 0] | 0) == 0 ? 1 : ((i13 << 24 >> 24 < 0 ? HEAP32[i22 + 4 >> 2] | 0 : i13 & 255) | 0) == 0) ? (i19 = HEAP32[i16 >> 2] | 0, (i19 - i15 | 0) < 160) : 0) { i18 = HEAP32[i17 >> 2] | 0; HEAP32[i16 >> 2] = i19 + 4; HEAP32[i19 >> 2] = i18; } d28 = +__ZNSt3__215__num_get_floatIfEET_PKcS3_Rj(i2, HEAP32[i14 >> 2] | 0, i26); HEAPF32[i20 >> 2] = d28; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i22, i15, HEAP32[i16 >> 2] | 0, i26); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i24 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i25 >> 2] = 0; i27 = 41; break; } if (!i1) i27 = 42; } else i27 = 41; while (0); if ((i27 | 0) == 41 ? i1 : 0) i27 = 42; if ((i27 | 0) == 42) HEAP32[i26 >> 2] = HEAP32[i26 >> 2] | 2; i27 = HEAP32[i24 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i21); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i22); STACKTOP = i23; return i27 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIeEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i24, i25, i2, i26, i20) { i1 = i1 | 0; i24 = i24 | 0; i25 = i25 | 0; i2 = i2 | 0; i26 = i26 | 0; i20 = i20 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i21 = 0, i22 = 0, i23 = 0, i27 = 0, d28 = 0.0; i23 = STACKTOP; STACKTOP = STACKTOP + 240 | 0; i11 = i23 + 200 | 0; i12 = i23 + 199 | 0; i13 = i23 + 198 | 0; i22 = i23 + 184 | 0; i21 = i23 + 172 | 0; i14 = i23 + 168 | 0; i15 = i23 + 8 | 0; i16 = i23 + 4 | 0; i17 = i23; i18 = i23 + 197 | 0; i10 = i23 + 196 | 0; __ZNSt3__29__num_getIcE19__stage2_float_prepERNS_8ios_baseEPcRcS5_(i22, i2, i11, i12, i13); HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i21 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i21 + 11 | 0; i9 = i21 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i2; HEAP32[i16 >> 2] = i15; HEAP32[i17 >> 2] = 0; HEAP8[i18 >> 0] = 1; HEAP8[i10 >> 0] = 69; i7 = i21 + 4 | 0; i1 = HEAP32[i24 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i24 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i25 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i25 >> 2] = 0; i27 = 16; break; } } else i27 = 16; while (0); if ((i27 | 0) == 16) { i27 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjS4_(i4 & 255, i18, i10, i2, i14, HEAP8[i12 >> 0] | 0, HEAP8[i13 >> 0] | 0, i22, i15, i16, i17, i11) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i13 = HEAP8[i22 + 11 >> 0] | 0; if (!((HEAP8[i18 >> 0] | 0) == 0 ? 1 : ((i13 << 24 >> 24 < 0 ? HEAP32[i22 + 4 >> 2] | 0 : i13 & 255) | 0) == 0) ? (i19 = HEAP32[i16 >> 2] | 0, (i19 - i15 | 0) < 160) : 0) { i18 = HEAP32[i17 >> 2] | 0; HEAP32[i16 >> 2] = i19 + 4; HEAP32[i19 >> 2] = i18; } d28 = +__ZNSt3__215__num_get_floatIeEET_PKcS3_Rj(i2, HEAP32[i14 >> 2] | 0, i26); HEAPF64[i20 >> 3] = d28; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i22, i15, HEAP32[i16 >> 2] | 0, i26); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i24 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i25 >> 2] = 0; i27 = 41; break; } if (!i1) i27 = 42; } else i27 = 41; while (0); if ((i27 | 0) == 41 ? i1 : 0) i27 = 42; if ((i27 | 0) == 42) HEAP32[i26 >> 2] = HEAP32[i26 >> 2] | 2; i27 = HEAP32[i24 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i21); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i22); STACKTOP = i23; return i27 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIdEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i24, i25, i2, i26, i20) { i1 = i1 | 0; i24 = i24 | 0; i25 = i25 | 0; i2 = i2 | 0; i26 = i26 | 0; i20 = i20 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i21 = 0, i22 = 0, i23 = 0, i27 = 0, d28 = 0.0; i23 = STACKTOP; STACKTOP = STACKTOP + 240 | 0; i11 = i23 + 200 | 0; i12 = i23 + 199 | 0; i13 = i23 + 198 | 0; i22 = i23 + 184 | 0; i21 = i23 + 172 | 0; i14 = i23 + 168 | 0; i15 = i23 + 8 | 0; i16 = i23 + 4 | 0; i17 = i23; i18 = i23 + 197 | 0; i10 = i23 + 196 | 0; __ZNSt3__29__num_getIcE19__stage2_float_prepERNS_8ios_baseEPcRcS5_(i22, i2, i11, i12, i13); HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i21 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i21 + 11 | 0; i9 = i21 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i2; HEAP32[i16 >> 2] = i15; HEAP32[i17 >> 2] = 0; HEAP8[i18 >> 0] = 1; HEAP8[i10 >> 0] = 69; i7 = i21 + 4 | 0; i1 = HEAP32[i24 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i24 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i25 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i25 >> 2] = 0; i27 = 16; break; } } else i27 = 16; while (0); if ((i27 | 0) == 16) { i27 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i21, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i21 >> 2] | 0 : i21; HEAP32[i14 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjS4_(i4 & 255, i18, i10, i2, i14, HEAP8[i12 >> 0] | 0, HEAP8[i13 >> 0] | 0, i22, i15, i16, i17, i11) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i13 = HEAP8[i22 + 11 >> 0] | 0; if (!((HEAP8[i18 >> 0] | 0) == 0 ? 1 : ((i13 << 24 >> 24 < 0 ? HEAP32[i22 + 4 >> 2] | 0 : i13 & 255) | 0) == 0) ? (i19 = HEAP32[i16 >> 2] | 0, (i19 - i15 | 0) < 160) : 0) { i18 = HEAP32[i17 >> 2] | 0; HEAP32[i16 >> 2] = i19 + 4; HEAP32[i19 >> 2] = i18; } d28 = +__ZNSt3__215__num_get_floatIdEET_PKcS3_Rj(i2, HEAP32[i14 >> 2] | 0, i26); HEAPF64[i20 >> 3] = d28; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i22, i15, HEAP32[i16 >> 2] | 0, i26); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i24 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i25 >> 2] = 0; i27 = 41; break; } if (!i1) i27 = 42; } else i27 = 41; while (0); if ((i27 | 0) == 41 ? i1 : 0) i27 = 42; if ((i27 | 0) == 42) HEAP32[i26 >> 2] = HEAP32[i26 >> 2] | 2; i27 = HEAP32[i24 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i21); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i22); STACKTOP = i23; return i27 | 0; } function __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i13, i14, i15, i11, i8) { i13 = i13 | 0; i14 = i14 | 0; i15 = i15 | 0; i11 = i11 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i12 = 0; i1 = HEAP32[i13 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i13 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i13 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); i2 = HEAP32[i14 >> 2] | 0; do if (i2) { i1 = HEAP32[i2 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i3) { i12 = 17; break; } else { i12 = 16; break; } else { HEAP32[i14 >> 2] = 0; i12 = 14; break; } } else i12 = 14; while (0); if ((i12 | 0) == 14) if (i3) i12 = 16; else { i2 = 0; i12 = 17; } L22 : do if ((i12 | 0) == 16) { HEAP32[i15 >> 2] = HEAP32[i15 >> 2] | 6; i1 = 0; } else if ((i12 | 0) == 17) { i1 = HEAP32[i13 >> 2] | 0; i3 = HEAP32[i1 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i3 >> 2] | 0; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 12 >> 2] & 31](i11, 2048, i1) | 0)) { HEAP32[i15 >> 2] = HEAP32[i15 >> 2] | 4; i1 = 0; break; } i1 = (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 52 >> 2] & 31](i11, i1, 0) | 0) << 24 >> 24; i3 = HEAP32[i13 >> 2] | 0; i4 = i3 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0; i6 = i2; i4 = i2; } else { HEAP32[i4 >> 2] = i5 + 4; i6 = i2; i4 = i2; } while (1) { i1 = i1 + -48 | 0; i10 = i8 + -1 | 0; i2 = HEAP32[i13 >> 2] | 0; do if (i2) { i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAP32[i3 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i13 >> 2] = 0; i5 = 1; break; } else { i5 = (HEAP32[i13 >> 2] | 0) == 0; break; } } else i5 = 1; while (0); do if (i4) { i2 = HEAP32[i4 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i14 >> 2] = 0; i9 = 0; i7 = 0; i2 = 1; break; } else { i9 = i6; i7 = i6; i2 = (i6 | 0) == 0; break; } } else { i9 = i6; i7 = 0; i2 = 1; } while (0); i3 = HEAP32[i13 >> 2] | 0; if (!((i8 | 0) > 1 & (i5 ^ i2))) break; i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 12 >> 2] & 31](i11, 2048, i2) | 0)) break L22; i1 = ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 52 >> 2] & 31](i11, i2, 0) | 0) << 24 >> 24) + (i1 * 10 | 0) | 0; i2 = HEAP32[i13 >> 2] | 0; i3 = i2 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; i8 = i10; i6 = i9; i4 = i7; continue; } else { HEAP32[i3 >> 2] = i4 + 4; i8 = i10; i6 = i9; i4 = i7; continue; } } do if (i3) { i2 = HEAP32[i3 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) == -1) { HEAP32[i13 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i13 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); do if (i9) { i2 = HEAP32[i9 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i9 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i9 >> 2] | 0) + 36 >> 2] & 127](i9) | 0; else i2 = HEAP32[i2 >> 2] | 0; if ((i2 | 0) != -1) if (i3) break L22; else break; else { HEAP32[i14 >> 2] = 0; i12 = 60; break; } } else i12 = 60; while (0); if ((i12 | 0) == 60 ? !i3 : 0) break; HEAP32[i15 >> 2] = HEAP32[i15 >> 2] | 2; } while (0); return i1 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv(i1, i20, i21, i2, i22, i16) { i1 = i1 | 0; i20 = i20 | 0; i21 = i21 | 0; i2 = i2 | 0; i22 = i22 | 0; i16 = i16 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0, i18 = 0, i19 = 0, i23 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 240 | 0; i15 = i19; i13 = i19 + 204 | 0; i17 = i19 + 192 | 0; i18 = i19 + 180 | 0; i14 = i19 + 176 | 0; i10 = i19 + 16 | 0; i11 = i19 + 8 | 0; i12 = i19 + 4 | 0; HEAP32[i17 >> 2] = 0; HEAP32[i17 + 4 >> 2] = 0; HEAP32[i17 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i17 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i18 >> 2] = i1; i9 = __ZNKSt3__26locale9use_facetERNS0_2idE(i18, 47476) | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i9 >> 2] | 0) + 32 >> 2] & 7](i9, 38819, 38845, i13) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i1) | 0; HEAP32[i18 >> 2] = 0; HEAP32[i18 + 4 >> 2] = 0; HEAP32[i18 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i18 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i9 = i18 + 11 | 0; i8 = i18 + 8 | 0; if ((HEAP8[i9 >> 0] | 0) < 0) i1 = (HEAP32[i8 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i1, 0); i2 = (HEAP8[i9 >> 0] | 0) < 0 ? HEAP32[i18 >> 2] | 0 : i18; HEAP32[i14 >> 2] = i2; HEAP32[i11 >> 2] = i10; HEAP32[i12 >> 2] = 0; i7 = i18 + 4 | 0; i1 = HEAP32[i20 >> 2] | 0; L12 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i20 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i21 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L12; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L12; else { HEAP32[i21 >> 2] = 0; i23 = 19; break; } } else i23 = 19; while (0); if ((i23 | 0) == 19) { i23 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i9 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i14 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i4 << 1, 0); if ((HEAP8[i9 >> 0] | 0) < 0) i2 = (HEAP32[i8 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, i2, 0); i2 = (HEAP8[i9 >> 0] | 0) < 0 ? HEAP32[i18 >> 2] | 0 : i18; HEAP32[i14 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i4 & 255, 16, i2, i14, i12, 0, i17, i10, i11, i13) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i18, (HEAP32[i14 >> 2] | 0) - i2 | 0, 0); i13 = (HEAP8[i9 >> 0] | 0) < 0 ? HEAP32[i18 >> 2] | 0 : i18; i14 = __ZNSt3__26__clocEv() | 0; HEAP32[i15 >> 2] = i16; if ((__ZNSt3__217__libcpp_sscanf_lEPKcP15__locale_structS1_z(i13, i14, 38852, i15) | 0) != 1) HEAP32[i22 >> 2] = 4; if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i20 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i21 >> 2] = 0; i23 = 43; break; } if (!i1) i23 = 44; } else i23 = 43; while (0); if ((i23 | 0) == 43 ? i1 : 0) i23 = 44; if ((i23 | 0) == 44) HEAP32[i22 >> 2] = HEAP32[i22 >> 2] | 2; i23 = HEAP32[i20 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i18); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17); STACKTOP = i19; return i23 | 0; } function __ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i13, i16, i1, i18, i14, i19, i15) { i13 = i13 | 0; i16 = i16 | 0; i1 = i1 | 0; i18 = i18 | 0; i14 = i14 | 0; i19 = i19 | 0; i15 = i15 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i17 = 0, i20 = 0, i21 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 112 | 0; i2 = i21; i4 = (i18 - i1 | 0) / 12 | 0; if (i4 >>> 0 > 100) { i3 = _malloc(i4) | 0; if (!i3) { i2 = 0; i17 = 0; } else { i2 = i3; i17 = i3; } } else i17 = 0; i6 = i1; i7 = i2; i3 = 0; while (1) { if ((i6 | 0) == (i18 | 0)) break; i5 = HEAP8[i6 + 11 >> 0] | 0; if (i5 << 24 >> 24 < 0) i5 = HEAP32[i6 + 4 >> 2] | 0; else i5 = i5 & 255; if (!i5) { HEAP8[i7 >> 0] = 2; i4 = i4 + -1 | 0; i3 = i3 + 1 | 0; } else HEAP8[i7 >> 0] = 1; i6 = i6 + 12 | 0; i7 = i7 + 1 | 0; } i12 = 0; i8 = i3; L17 : while (1) { i3 = HEAP32[i13 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1) { HEAP32[i13 >> 2] = 0; i3 = 0; break; } else { i3 = HEAP32[i13 >> 2] | 0; break; } } else i3 = 0; while (0); i5 = (i3 | 0) == 0; i3 = HEAP32[i16 >> 2] | 0; if (i3) if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i16 >> 2] = 0; i6 = 0; } else i6 = i3; else i6 = 0; i7 = (i6 | 0) == 0; i3 = HEAP32[i13 >> 2] | 0; if (!((i4 | 0) != 0 & (i5 ^ i7))) break; i5 = HEAP32[i3 + 12 >> 2] | 0; if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i3 = HEAPU8[i5 >> 0] | 0; i3 = i3 & 255; if (!i15) i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i14 >> 2] | 0) + 12 >> 2] & 31](i14, i3) | 0; i11 = i12 + 1 | 0; i9 = i1; i7 = 0; i10 = i2; while (1) { if ((i9 | 0) == (i18 | 0)) break; do if ((HEAP8[i10 >> 0] | 0) == 1) { i6 = i9 + 11 | 0; if ((HEAP8[i6 >> 0] | 0) < 0) i5 = HEAP32[i9 >> 2] | 0; else i5 = i9; i5 = HEAP8[i5 + i12 >> 0] | 0; if (!i15) i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i14 >> 2] | 0) + 12 >> 2] & 31](i14, i5) | 0; if (i3 << 24 >> 24 != i5 << 24 >> 24) { HEAP8[i10 >> 0] = 0; i5 = i7; i6 = i8; i4 = i4 + -1 | 0; break; } i5 = HEAP8[i6 >> 0] | 0; if (i5 << 24 >> 24 < 0) i5 = HEAP32[i9 + 4 >> 2] | 0; else i5 = i5 & 255; if ((i5 | 0) == (i11 | 0)) { HEAP8[i10 >> 0] = 2; i5 = 1; i6 = i8 + 1 | 0; i4 = i4 + -1 | 0; } else { i5 = 1; i6 = i8; } } else { i5 = i7; i6 = i8; } while (0); i9 = i9 + 12 | 0; i7 = i5; i10 = i10 + 1 | 0; i8 = i6; } if (!i7) { i12 = i11; continue; } i3 = HEAP32[i13 >> 2] | 0; i5 = i3 + 12 | 0; i6 = HEAP32[i5 >> 2] | 0; if ((i6 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0; else HEAP32[i5 >> 2] = i6 + 1; if ((i8 + i4 | 0) >>> 0 > 1) { i6 = i1; i7 = i2; i3 = i8; } else { i12 = i11; continue; } while (1) { if ((i6 | 0) == (i18 | 0)) { i12 = i11; i8 = i3; continue L17; } if ((HEAP8[i7 >> 0] | 0) == 2) { i5 = HEAP8[i6 + 11 >> 0] | 0; if (i5 << 24 >> 24 < 0) i5 = HEAP32[i6 + 4 >> 2] | 0; else i5 = i5 & 255; if ((i5 | 0) != (i11 | 0)) { HEAP8[i7 >> 0] = 0; i3 = i3 + -1 | 0; } } i6 = i6 + 12 | 0; i7 = i7 + 1 | 0; } } do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1) { HEAP32[i13 >> 2] = 0; i3 = 0; break; } else { i3 = HEAP32[i13 >> 2] | 0; break; } } else i3 = 0; while (0); i3 = (i3 | 0) == 0; do if (!i7) { if ((HEAP32[i6 + 12 >> 2] | 0) == (HEAP32[i6 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i6 >> 2] | 0) + 36 >> 2] & 127](i6) | 0) == -1 : 0) { HEAP32[i16 >> 2] = 0; i20 = 34; break; } if (!i3) i20 = 69; } else i20 = 34; while (0); if ((i20 | 0) == 34) if (i3) i20 = 69; if ((i20 | 0) == 69) HEAP32[i19 >> 2] = HEAP32[i19 >> 2] | 2; while (1) { if ((i1 | 0) == (i18 | 0)) { i20 = 73; break; } if ((HEAP8[i2 >> 0] | 0) == 2) break; i1 = i1 + 12 | 0; i2 = i2 + 1 | 0; } if ((i20 | 0) == 73) { HEAP32[i19 >> 2] = HEAP32[i19 >> 2] | 4; i1 = i18; } _free(i17); STACKTOP = i21; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_19base_nameINSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEEEET_RS9_(i4, i8) { i4 = i4 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0; i5 = i8 + 11 | 0; i3 = HEAP8[i5 >> 0] | 0; i2 = i3 << 24 >> 24 < 0; i7 = i8 + 4 | 0; i1 = HEAP32[i7 >> 2] | 0; L1 : do switch ((i2 ? i1 : i3 & 255) | 0) { case 0: { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i4, i8); break; } case 11: if (!(__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i8 >> 2] | 0 : i8, 42585, 11) | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i8, 43189, 70); HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i4, 43260, 12); break L1; } else { i3 = HEAP8[i5 >> 0] | 0; i1 = HEAP32[i7 >> 2] | 0; i6 = 6; break L1; } default: i6 = 6; } while (0); L7 : do if ((i6 | 0) == 6) { i2 = i3 << 24 >> 24 < 0; do if (((i2 ? i1 : i3 & 255) | 0) == 12) if (!(__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i8 >> 2] | 0 : i8, 42597, 12) | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i8, 43273, 49); HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i4, 43323, 13); break L7; } else { i3 = HEAP8[i5 >> 0] | 0; i1 = HEAP32[i7 >> 2] | 0; break; } while (0); i2 = i3 << 24 >> 24 < 0; do if (((i2 ? i1 : i3 & 255) | 0) == 12) if (!(__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i8 >> 2] | 0 : i8, 42610, 12) | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i8, 43337, 49); HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i4, 43387, 13); break L7; } else { i3 = HEAP8[i5 >> 0] | 0; i1 = HEAP32[i7 >> 2] | 0; break; } while (0); i2 = i3 << 24 >> 24 < 0; do if (((i2 ? i1 : i3 & 255) | 0) == 13) if (!(__ZNSt3__211char_traitsIcE7compareEPKcS3_j(i2 ? HEAP32[i8 >> 2] | 0 : i8, 42623, 13) | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i8, 43401, 50); HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i4, 43452, 14); break L7; } else { i2 = i8; i3 = HEAP8[i5 >> 0] | 0; i1 = HEAP32[i7 >> 2] | 0; break; } else i2 = i8; while (0); i7 = i3 << 24 >> 24 < 0; i5 = i7 ? HEAP32[i8 >> 2] | 0 : i2; i1 = i5 + (i7 ? i1 : i3 & 255) | 0; L28 : do if ((HEAP8[i1 + -1 >> 0] | 0) == 62) { i2 = 1; L29 : while (1) { L31 : while (1) { i3 = i1 + -1 | 0; if ((i3 | 0) == (i5 | 0)) break L29; i1 = i1 + -2 | 0; switch (HEAP8[i1 >> 0] | 0) { case 60: { i6 = 26; break L31; } case 62: { i6 = 27; break L31; } default: i1 = i3; } } if ((i6 | 0) == 26) { i2 = i2 + -1 | 0; if (!i2) break L28; else { i1 = i3; continue; } } else if ((i6 | 0) == 27) { i2 = i2 + 1 | 0; i1 = i3; continue; } } HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break L7; HEAP32[i4 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } } while (0); i3 = i1; while (1) { i2 = i3 + -1 | 0; if ((i2 | 0) == (i5 | 0)) { i2 = i5; break; } if ((HEAP8[i2 >> 0] | 0) == 58) { i2 = i3; break; } else i3 = i2; } HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; i5 = i1 - i2 | 0; if (i5 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i4); if (i5 >>> 0 < 11) HEAP8[i4 + 11 >> 0] = i5; else { i7 = i5 + 16 & -16; i8 = _malloc(i7) | 0; HEAP32[i4 >> 2] = i8; HEAP32[i4 + 8 >> 2] = i7 | -2147483648; HEAP32[i4 + 4 >> 2] = i5; i4 = i8; } i3 = i4; while (1) { if ((i2 | 0) == (i1 | 0)) break; HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0; i2 = i2 + 1 | 0; i3 = i3 + 1 | 0; } HEAP8[i4 + i5 >> 0] = 0; } while (0); return; } function __ZN4wasm16PrintSExpression13visitFunctionEPNS_8FunctionE(i12, i9) { i12 = i12 | 0; i9 = i9 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i8 = i14 + 16 | 0; i2 = i14 + 12 | 0; i1 = i14 + 8 | 0; i5 = i14 + 4 | 0; i10 = i14; HEAP32[i12 + 28 >> 2] = i9; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i12 >> 2] | 0, 31593, 1) | 0; HEAP32[i2 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; __ZN4wasm16PrintSExpression9printNameENS_4NameE(i12, i8) | 0; i2 = i9 + 32 | 0; if (HEAP32[i2 >> 2] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i12 >> 2] | 0, HEAP32[i12 + 12 >> 2] | 0) | 0, 31599) | 0; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 >> 2] = HEAP32[i1 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i7, i8) | 0, 41) | 0; } i6 = i9 + 8 | 0; i7 = i9 + 12 | 0; i2 = HEAP32[i7 >> 2] | 0; i1 = HEAP32[i6 >> 2] | 0; L4 : do if ((i2 | 0) != (i1 | 0)) { i4 = i12 + 12 | 0; i3 = 0; while (1) { if (i3 >>> 0 >= i2 - i1 >> 2 >>> 0) break L4; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i12 >> 2] | 0, HEAP32[i4 >> 2] | 0) | 0; i1 = __Z17printMinorOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i12 >> 2] | 0, 31606) | 0; i2 = __ZN4wasm16PrintSExpression14printableLocalEj(i12, i3) | 0; HEAP32[i5 >> 2] = i2; HEAP32[i8 >> 2] = HEAP32[i5 >> 2]; i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i1, i8) | 0, 32) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, __ZN4wasm13printWasmTypeENS_8WasmTypeE(__ZN4wasm8Function12getLocalTypeEj(i9, i3) | 0) | 0) | 0, 41) | 0; i3 = i3 + 1 | 0; i1 = HEAP32[i6 >> 2] | 0; i2 = HEAP32[i7 >> 2] | 0; } } while (0); i1 = i9 + 4 | 0; if (HEAP32[i1 >> 2] | 0) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i12 >> 2] | 0, HEAP32[i12 + 12 >> 2] | 0) | 0; i5 = __Z17printMinorOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i12 >> 2] | 0, 31613) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[i1 >> 2] | 0) | 0) | 0, 41) | 0; } __ZN4wasm16PrintSExpression9incIndentEv(i12); i2 = i12 + 4 | 0; i3 = i12 + 16 | 0; i1 = (HEAP32[i7 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) >> 2; while (1) { if (i1 >>> 0 >= (__ZN4wasm8Function12getNumLocalsEv(i9) | 0) >>> 0) break; __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i12 >> 2] | 0, HEAP32[i2 >> 2] | 0) | 0; i7 = __Z17printMinorOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i12 >> 2] | 0, 31621) | 0; i6 = __ZN4wasm16PrintSExpression14printableLocalEj(i12, i1) | 0; HEAP32[i10 >> 2] = i6; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i7, i8) | 0, 32) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i7, __ZN4wasm13printWasmTypeENS_8WasmTypeE(__ZN4wasm8Function12getLocalTypeEj(i9, i1) | 0) | 0) | 0, 41) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i12 >> 2] | 0, HEAP32[i3 >> 2] | 0) | 0; i1 = i1 + 1 | 0; } i1 = i9 + 36 | 0; L17 : do if (((HEAP8[i12 + 20 >> 0] | 0) == 0 ? (i11 = HEAP32[i1 >> 2] | 0, (HEAP32[i11 >> 2] | 0) == 1) : 0) ? (i11 = (__ZN4wasm10Expression4castINS_5BlockEEEPT_v(i11) | 0) + 8 | 0, (HEAP32[i11 >> 2] | 0) == 0) : 0) { i3 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; i2 = i3 + 12 | 0; i3 = HEAP32[i3 + 20 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i3 | 0)) break L17; i11 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i2, i1) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i12, HEAP32[i11 >> 2] | 0); i1 = i1 + 1 | 0; } } else i13 = 18; while (0); if ((i13 | 0) == 18) __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i12, HEAP32[i1 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i12); STACKTOP = i14; return; } function __ZN4wasm17WasmBinaryBuilder10visitBlockEPNS_5BlockE(i11, i1) { i11 = i11 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i12 = i16 + 16 | 0; i13 = i16 + 12 | 0; i15 = i16; HEAP32[i13 >> 2] = i1; i14 = i11 + 12 | 0; if (HEAP8[i14 >> 0] | 0) { i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19952) | 0; i10 = __ZNKSt3__28ios_base6getlocEv(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i12 >> 2] = i10; i10 = __ZNKSt3__26locale9use_facetERNS0_2idE(i12, 47476) | 0; i10 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, 10) | 0; __ZNSt3__26localeD2Ev(i12); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i1, i10) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) | 0; i1 = HEAP32[i13 >> 2] | 0; } HEAP32[i15 >> 2] = 0; i9 = i15 + 4 | 0; HEAP32[i9 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; i10 = i11 + 88 | 0; i3 = i11 + 92 | 0; i4 = i11 + 84 | 0; i5 = i15 + 8 | 0; i6 = i11 + 4 | 0; while (1) { i2 = __ZN4wasm17WasmBinaryBuilder12getNextLabelEv(i11) | 0; HEAP32[i1 + 8 >> 2] = i2; i1 = (HEAP32[i13 >> 2] | 0) + 8 | 0; i2 = HEAP32[i10 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i1); else { HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 4; } i1 = HEAP32[i9 >> 2] | 0; if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i15, i13); else { HEAP32[i1 >> 2] = HEAP32[i13 >> 2]; HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 4; } if ((__ZN4wasm17WasmBinaryBuilder7getInt8Ev(i11) | 0) << 24 >> 24 != 1) break; i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i6 >> 2] | 0) | 0; HEAP32[i13 >> 2] = i1; } __ZN4wasm17WasmBinaryBuilder9ungetInt8Ev(i11); i6 = i11 + 96 | 0; i7 = i11 + 100 | 0; i8 = i11 + 104 | 0; i3 = 0; L16 : while (1) { i5 = HEAP32[i9 >> 2] | 0; i2 = i5; if ((i5 | 0) == (HEAP32[i15 >> 2] | 0)) { i1 = 31; break; } i4 = HEAP32[i2 + -4 >> 2] | 0; HEAP32[i13 >> 2] = i4; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i5 = i1 + -1 | 0; HEAP32[i9 >> 2] = i2 + (i5 << 2); i1 = i5; } i1 = HEAP32[i7 >> 2] | 0; i5 = i1 - (HEAP32[i6 >> 2] | 0) >> 2; if (!i3) i3 = i4; else { HEAP32[i12 >> 2] = i3; if (i1 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = i3; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 4; } else __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i6, i12); i3 = HEAP32[i13 >> 2] | 0; } __ZN4wasm17WasmBinaryBuilder18processExpressionsEv(i11); i2 = (HEAP32[i7 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) >> 2; if (i2 >>> 0 < i5 >>> 0) { i1 = 23; break; } else i1 = i5; while (1) { if (i1 >>> 0 >= i2 >>> 0) break; if (HEAP8[i14 >> 0] | 0) { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 33275) | 0; i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i4, HEAP32[(HEAP32[i6 >> 2] | 0) + (i1 << 2) >> 2] | 0) | 0, 19991) | 0; i4 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i4, HEAP32[(HEAP32[i13 >> 2] | 0) + 20 >> 2] | 0) | 0; i17 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i12 >> 2] = i17; i17 = __ZNKSt3__26locale9use_facetERNS0_2idE(i12, 47476) | 0; i17 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i17 >> 2] | 0) + 28 >> 2] & 31](i17, 10) | 0; __ZNSt3__26localeD2Ev(i12); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i17) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; } __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_((HEAP32[i13 >> 2] | 0) + 12 | 0, HEAP32[(HEAP32[i6 >> 2] | 0) + (i1 << 2) >> 2] | 0); i1 = i1 + 1 | 0; } __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6resizeEj(i6, i5); __ZN4wasm5Block8finalizeEv(HEAP32[i13 >> 2] | 0); i2 = HEAP32[i10 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) continue L16; i17 = i1 + -1 | 0; HEAP32[i10 >> 2] = i2 + (i17 << 2); i1 = i17; } } if ((i1 | 0) == 23) ___assert_fail(19967, 18854, 1765, 19980); else if ((i1 | 0) == 31) { __ZNSt3__213__vector_baseIPN4wasm5BlockENS_9allocatorIS3_EEED2Ev(i15); STACKTOP = i16; return; } } function __ZNSt3__29__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i11, i12, i13, i14, i15, i16, i1) { i11 = i11 | 0; i12 = i12 | 0; i13 = i13 | 0; i14 = i14 | 0; i15 = i15 | 0; i16 = i16 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0; i20 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i17 = i20; i18 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i10 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47492) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] & 255](i17, i10); HEAP32[i16 >> 2] = i14; i1 = HEAP8[i11 >> 0] | 0; switch (i1 << 24 >> 24) { case 43: case 45: { i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i18 >> 2] | 0) + 28 >> 2] & 31](i18, i1) | 0; i2 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = i2 + 1; HEAP8[i2 >> 0] = i9; i2 = i11 + 1 | 0; break; } default: i2 = i11; } i9 = i13; L4 : do if ((i9 - i2 | 0) > 1 ? (HEAP8[i2 >> 0] | 0) == 48 : 0) { i1 = i2 + 1 | 0; switch (HEAP8[i1 >> 0] | 0) { case 88: case 120: break; default: { i1 = i2; i19 = 10; break L4; } } i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i18 >> 2] | 0) + 28 >> 2] & 31](i18, 48) | 0; i8 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = i8 + 1; HEAP8[i8 >> 0] = i7; i2 = i2 + 2 | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i18 >> 2] | 0) + 28 >> 2] & 31](i18, HEAP8[i1 >> 0] | 0) | 0; i1 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i8; i1 = i2; while (1) { if (i1 >>> 0 >= i13 >>> 0) break L4; i8 = HEAP8[i1 >> 0] | 0; if (!(_isxdigit_l(i8, __ZNSt3__26__clocEv() | 0) | 0)) break L4; i1 = i1 + 1 | 0; } } else { i1 = i2; i19 = 10; } while (0); L12 : do if ((i19 | 0) == 10) while (1) { i19 = 0; if (i1 >>> 0 >= i13 >>> 0) break L12; i8 = HEAP8[i1 >> 0] | 0; if (!(_isdigit_l(i8, __ZNSt3__26__clocEv() | 0) | 0)) break L12; i1 = i1 + 1 | 0; i19 = 10; } while (0); i7 = i17 + 11 | 0; i6 = HEAP8[i7 >> 0] | 0; i8 = i17 + 4 | 0; L18 : do if ((i6 << 24 >> 24 < 0 ? HEAP32[i8 >> 2] | 0 : i6 & 255) | 0) { L21 : do if ((i2 | 0) != (i1 | 0)) { i3 = i1; i4 = i2; while (1) { i3 = i3 + -1 | 0; if (i4 >>> 0 >= i3 >>> 0) break L21; i6 = HEAP8[i4 >> 0] | 0; HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = i6; i4 = i4 + 1 | 0; } } while (0); i6 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i10 >> 2] | 0) + 16 >> 2] & 127](i10) | 0; i5 = i2; i4 = 0; i3 = 0; while (1) { if (i5 >>> 0 >= i1 >>> 0) break; i21 = HEAP8[((HEAP8[i7 >> 0] | 0) < 0 ? HEAP32[i17 >> 2] | 0 : i17) + i3 >> 0] | 0; if (i21 << 24 >> 24 > 0 & (i4 | 0) == (i21 << 24 >> 24 | 0)) { i4 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i6; i4 = HEAP8[i7 >> 0] | 0; i3 = (i3 >>> 0 < ((i4 << 24 >> 24 < 0 ? HEAP32[i8 >> 2] | 0 : i4 & 255) + -1 | 0) >>> 0 & 1) + i3 | 0; i4 = 0; } i22 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i18 >> 2] | 0) + 28 >> 2] & 31](i18, HEAP8[i5 >> 0] | 0) | 0; i21 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = i21 + 1; HEAP8[i21 >> 0] = i22; i5 = i5 + 1 | 0; i4 = i4 + 1 | 0; } i3 = i14 + (i2 - i11) | 0; i2 = HEAP32[i16 >> 2] | 0; if ((i3 | 0) == (i2 | 0)) i3 = i18; else while (1) { i2 = i2 + -1 | 0; if (i3 >>> 0 >= i2 >>> 0) { i3 = i18; break L18; } i22 = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = HEAP8[i2 >> 0] | 0; HEAP8[i2 >> 0] = i22; i3 = i3 + 1 | 0; } } else { FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i18 >> 2] | 0) + 32 >> 2] & 7](i18, i2, i1, HEAP32[i16 >> 2] | 0) | 0; HEAP32[i16 >> 2] = (HEAP32[i16 >> 2] | 0) + (i1 - i2); i3 = i18; } while (0); while (1) { if (i1 >>> 0 >= i13 >>> 0) break; i2 = HEAP8[i1 >> 0] | 0; if (i2 << 24 >> 24 == 46) { i19 = 29; break; } i21 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i18, i2) | 0; i22 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = i22 + 1; HEAP8[i22 >> 0] = i21; i1 = i1 + 1 | 0; } if ((i19 | 0) == 29) { i21 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i10 >> 2] | 0) + 12 >> 2] & 127](i10) | 0; i22 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = i22 + 1; HEAP8[i22 >> 0] = i21; i1 = i1 + 1 | 0; } FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i18 >> 2] | 0) + 32 >> 2] & 7](i18, i1, i13, HEAP32[i16 >> 2] | 0) | 0; i22 = (HEAP32[i16 >> 2] | 0) + (i9 - i1) | 0; HEAP32[i16 >> 2] = i22; HEAP32[i15 >> 2] = (i12 | 0) == (i13 | 0) ? i22 : i14 + (i12 - i11) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17); STACKTOP = i20; return; } function __ZNSt3__26locale5__impC2Ej(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0; HEAP32[i4 + 4 >> 2] = i1 + -1; HEAP32[i4 >> 2] = 10304; i1 = i4 + 8 | 0; __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEEC2Ej(i1, 28); i2 = i4 + 144 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 38855, 1); i1 = HEAP32[i1 >> 2] | 0; i2 = i4 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; while (1) { if ((i3 | 0) == (i1 | 0)) break; i5 = i3 + -4 | 0; HEAP32[i2 >> 2] = i5; i3 = i5; } HEAP32[11119] = 0; HEAP32[11118] = 7968; __ZNSt3__26locale5__imp7installINS_7collateIcEEEEvPT_(i4, 44472); HEAP32[11121] = 0; HEAP32[11120] = 8e3; __ZNSt3__26locale5__imp7installINS_7collateIwEEEEvPT_(i4, 44480); __ZNSt3__25ctypeIcEC2EPKtbj(44488, 0, 0, 1); __ZNSt3__26locale5__imp7installINS_5ctypeIcEEEEvPT_(i4, 44488); HEAP32[11127] = 0; HEAP32[11126] = 10520; __ZNSt3__26locale5__imp7installINS_5ctypeIwEEEEvPT_(i4, 44504); HEAP32[11129] = 0; HEAP32[11128] = 10588; __ZNSt3__26locale5__imp7installINS_7codecvtIcc11__mbstate_tEEEEvPT_(i4, 44512); HEAP32[11131] = 0; HEAP32[11130] = 10256; i5 = __ZNSt3__26__clocEv() | 0; HEAP32[11132] = i5; __ZNSt3__26locale5__imp7installINS_7codecvtIwc11__mbstate_tEEEEvPT_(i4, 44520); HEAP32[11135] = 0; HEAP32[11134] = 10636; __ZNSt3__26locale5__imp7installINS_7codecvtIDsc11__mbstate_tEEEEvPT_(i4, 44536); HEAP32[11137] = 0; HEAP32[11136] = 10684; __ZNSt3__26locale5__imp7installINS_7codecvtIDic11__mbstate_tEEEEvPT_(i4, 44544); __ZNSt3__28numpunctIcEC2Ej(44552, 1); __ZNSt3__26locale5__imp7installINS_8numpunctIcEEEEvPT_(i4, 44552); __ZNSt3__28numpunctIwEC2Ej(44576, 1); __ZNSt3__26locale5__imp7installINS_8numpunctIwEEEEvPT_(i4, 44576); HEAP32[11153] = 0; HEAP32[11152] = 8032; __ZNSt3__26locale5__imp7installINS_7num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 44608); HEAP32[11155] = 0; HEAP32[11154] = 8096; __ZNSt3__26locale5__imp7installINS_7num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 44616); HEAP32[11157] = 0; HEAP32[11156] = 8160; __ZNSt3__26locale5__imp7installINS_7num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 44624); HEAP32[11159] = 0; HEAP32[11158] = 8212; __ZNSt3__26locale5__imp7installINS_7num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 44632); HEAP32[11161] = 0; HEAP32[11160] = 9760; __ZNSt3__26locale5__imp7installINS_10moneypunctIcLb0EEEEEvPT_(i4, 44640); HEAP32[11163] = 0; HEAP32[11162] = 9816; __ZNSt3__26locale5__imp7installINS_10moneypunctIcLb1EEEEEvPT_(i4, 44648); HEAP32[11165] = 0; HEAP32[11164] = 9872; __ZNSt3__26locale5__imp7installINS_10moneypunctIwLb0EEEEEvPT_(i4, 44656); HEAP32[11167] = 0; HEAP32[11166] = 9928; __ZNSt3__26locale5__imp7installINS_10moneypunctIwLb1EEEEEvPT_(i4, 44664); HEAP32[11169] = 0; HEAP32[11168] = 9984; __ZNSt3__26locale5__imp7installINS_9money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 44672); HEAP32[11171] = 0; HEAP32[11170] = 10012; __ZNSt3__26locale5__imp7installINS_9money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 44680); HEAP32[11173] = 0; HEAP32[11172] = 10040; __ZNSt3__26locale5__imp7installINS_9money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 44688); HEAP32[11175] = 0; HEAP32[11174] = 10068; __ZNSt3__26locale5__imp7installINS_9money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 44696); HEAP32[11177] = 0; HEAP32[11176] = 8264; HEAP32[11178] = 8312; __ZNSt3__26locale5__imp7installINS_8time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 44704); HEAP32[11181] = 0; HEAP32[11180] = 8348; HEAP32[11182] = 8396; __ZNSt3__26locale5__imp7installINS_8time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 44720); HEAP32[11185] = 0; HEAP32[11184] = 10500; i5 = __ZNSt3__26__clocEv() | 0; HEAP32[11186] = i5; HEAP32[11184] = 9712; __ZNSt3__26locale5__imp7installINS_8time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i4, 44736); HEAP32[11189] = 0; HEAP32[11188] = 10500; i5 = __ZNSt3__26__clocEv() | 0; HEAP32[11190] = i5; HEAP32[11188] = 9736; __ZNSt3__26locale5__imp7installINS_8time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i4, 44752); HEAP32[11193] = 0; HEAP32[11192] = 10096; __ZNSt3__26locale5__imp7installINS_8messagesIcEEEEvPT_(i4, 44768); HEAP32[11195] = 0; HEAP32[11194] = 10128; __ZNSt3__26locale5__imp7installINS_8messagesIwEEEEvPT_(i4, 44776); return; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedIyEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i10 = i21 + 198 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i1 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i23 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 16; break; } } else i25 = 16; while (0); if ((i25 | 0) == 16) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i12 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i4 & 255, i16, i2, i12, i15, HEAP8[i11 >> 0] | 0, i19, i13, i14, i10) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__227__num_get_unsigned_integralIyEET_PKcS3_Rji(i2, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; HEAP32[i18 + 4 >> 2] = tempRet0; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i23 >> 2] = 0; i25 = 41; break; } if (!i1) i25 = 42; } else i25 = 41; while (0); if ((i25 | 0) == 41 ? i1 : 0) i25 = 42; if ((i25 | 0) == 42) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZN4wasm13WasmValidator10visitUnaryEPNS_5UnaryE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i1 = i3 + 12 | 0; __ZN4wasm13WasmValidator15shouldBeUnequalIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0, 0, i3, 15677) | 0; i4 = i3 + 8 | 0; if ((HEAP32[i4 >> 2] & -2 | 0) == 20) __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, HEAP32[i3 + 4 >> 2] | 0, 1, i3, 15724) | 0; i1 = HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0; L4 : do if ((i1 | 0) != 5) do switch (HEAP32[i4 >> 2] | 0) { case 19: case 17: case 15: case 13: case 11: case 9: case 7: case 5: case 3: case 1: case 18: case 16: case 14: case 12: case 10: case 8: case 6: case 4: case 2: case 0: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, HEAP32[i3 + 4 >> 2] | 0, i3, 15744) | 0; break L4; } case 21: case 20: { __ZN4wasm13WasmValidator12shouldBeTrueIPNS_5UnaryEEEbbT_PKc(i2, (i1 + -1 | 0) >>> 0 < 2, i3, 15793) | 0; break L4; } case 22: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 1, i3, 15822) | 0; break L4; } case 23: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 1, i3, 15822) | 0; break L4; } case 24: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 2, i3, 15850) | 0; break L4; } case 25: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 3, i3, 15876) | 0; break L4; } case 26: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 3, i3, 15876) | 0; break L4; } case 27: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 3, i3, 15876) | 0; break L4; } case 28: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 3, i3, 15876) | 0; break L4; } case 29: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 4, i3, 15876) | 0; break L4; } case 30: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 4, i3, 15876) | 0; break L4; } case 31: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 4, i3, 15876) | 0; break L4; } case 32: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 4, i3, 15876) | 0; break L4; } case 33: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 3, i3, 15903) | 0; break L4; } case 34: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 4, i3, 15940) | 0; break L4; } case 37: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 1, i3, 15977) | 0; break L4; } case 38: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 1, i3, 15977) | 0; break L4; } case 35: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 1, i3, 15977) | 0; break L4; } case 36: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 1, i3, 15977) | 0; break L4; } case 41: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 2, i3, 15977) | 0; break L4; } case 42: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 2, i3, 15977) | 0; break L4; } case 39: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 2, i3, 15977) | 0; break L4; } case 40: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 2, i3, 15977) | 0; break L4; } case 43: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 3, i3, 16006) | 0; break L4; } case 44: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 4, i3, 16035) | 0; break L4; } case 45: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 1, i3, 16063) | 0; break L4; } case 46: { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i2, i1, 2, i3, 16100) | 0; break L4; } default: _abort(); } while (0); while (0); return; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__do_get_signedIxEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i10 = i21 + 198 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i1 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i23 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 16; break; } } else i25 = 16; while (0); if ((i25 | 0) == 16) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i12 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i4 & 255, i16, i2, i12, i15, HEAP8[i11 >> 0] | 0, i19, i13, i14, i10) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__225__num_get_signed_integralIxEET_PKcS3_Rji(i2, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; HEAP32[i18 + 4 >> 2] = tempRet0; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i23 >> 2] = 0; i25 = 41; break; } if (!i1) i25 = 42; } else i25 = 41; while (0); if ((i25 | 0) == 41 ? i1 : 0) i25 = 42; if ((i25 | 0) == 42) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedItEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i10 = i21 + 198 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i1 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i23 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 16; break; } } else i25 = 16; while (0); if ((i25 | 0) == 16) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i12 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i4 & 255, i16, i2, i12, i15, HEAP8[i11 >> 0] | 0, i19, i13, i14, i10) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__227__num_get_unsigned_integralItEET_PKcS3_Rji(i2, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP16[i18 >> 1] = i17; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i23 >> 2] = 0; i25 = 41; break; } if (!i1) i25 = 42; } else i25 = 41; while (0); if ((i25 | 0) == 41 ? i1 : 0) i25 = 42; if ((i25 | 0) == 42) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedImEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i10 = i21 + 198 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i1 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i23 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 16; break; } } else i25 = 16; while (0); if ((i25 | 0) == 16) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i12 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i4 & 255, i16, i2, i12, i15, HEAP8[i11 >> 0] | 0, i19, i13, i14, i10) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__227__num_get_unsigned_integralImEET_PKcS3_Rji(i2, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i23 >> 2] = 0; i25 = 41; break; } if (!i1) i25 = 42; } else i25 = 41; while (0); if ((i25 | 0) == 41 ? i1 : 0) i25 = 42; if ((i25 | 0) == 42) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedIjEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i10 = i21 + 198 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i1 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i23 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 16; break; } } else i25 = 16; while (0); if ((i25 | 0) == 16) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i12 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i4 & 255, i16, i2, i12, i15, HEAP8[i11 >> 0] | 0, i19, i13, i14, i10) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__227__num_get_unsigned_integralIjEET_PKcS3_Rji(i2, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i23 >> 2] = 0; i25 = 41; break; } if (!i1) i25 = 42; } else i25 = 41; while (0); if ((i25 | 0) == 41 ? i1 : 0) i25 = 42; if ((i25 | 0) == 42) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__do_get_signedIlEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i22, i23, i2, i24, i18) { i1 = i1 | 0; i22 = i22 | 0; i23 = i23 | 0; i2 = i2 | 0; i24 = i24 | 0; i18 = i18 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0; i21 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i10 = i21 + 198 | 0; i11 = i21 + 196 | 0; i19 = i21 + 184 | 0; i20 = i21 + 172 | 0; i12 = i21 + 168 | 0; i13 = i21 + 8 | 0; i14 = i21 + 4 | 0; i15 = i21; i16 = __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i2) | 0; __ZNSt3__29__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i19, i2, i10, i11); HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i8 = i20 + 11 | 0; i9 = i20 + 8 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) i1 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i1, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2; HEAP32[i14 >> 2] = i13; HEAP32[i15 >> 2] = 0; i7 = i20 + 4 | 0; i1 = HEAP32[i22 >> 2] | 0; L8 : while (1) { if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i4 = (i1 | 0) == 0; i3 = HEAP32[i23 >> 2] | 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) != (HEAP32[i3 + 16 >> 2] | 0)) if (i4) break; else break L8; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) != -1) if (i4) break; else break L8; else { HEAP32[i23 >> 2] = 0; i25 = 16; break; } } else i25 = 16; while (0); if ((i25 | 0) == 16) { i25 = 0; if (i4) { i3 = 0; break; } else i3 = 0; } i4 = HEAP8[i8 >> 0] | 0; i4 = i4 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i4 & 255; if ((HEAP32[i12 >> 2] | 0) == (i2 + i4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i4 << 1, 0); if ((HEAP8[i8 >> 0] | 0) < 0) i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i20, i2, 0); i2 = (HEAP8[i8 >> 0] | 0) < 0 ? HEAP32[i20 >> 2] | 0 : i20; HEAP32[i12 >> 2] = i2 + i4; } i5 = i1 + 12 | 0; i4 = HEAP32[i5 >> 2] | 0; i6 = i1 + 16 | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i4 = HEAPU8[i4 >> 0] | 0; if (__ZNSt3__29__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i4 & 255, i16, i2, i12, i15, HEAP8[i11 >> 0] | 0, i19, i13, i14, i10) | 0) break; i3 = HEAP32[i5 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i5 >> 2] = i3 + 1; continue; } } i11 = HEAP8[i19 + 11 >> 0] | 0; if ((i11 << 24 >> 24 < 0 ? HEAP32[i19 + 4 >> 2] | 0 : i11 & 255) | 0 ? (i17 = HEAP32[i14 >> 2] | 0, (i17 - i13 | 0) < 160) : 0) { i15 = HEAP32[i15 >> 2] | 0; HEAP32[i14 >> 2] = i17 + 4; HEAP32[i17 >> 2] = i15; } i17 = __ZNSt3__225__num_get_signed_integralIlEET_PKcS3_Rji(i2, HEAP32[i12 >> 2] | 0, i24, i16) | 0; HEAP32[i18 >> 2] = i17; __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i19, i13, HEAP32[i14 >> 2] | 0, i24); if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i22 >> 2] = 0; i1 = 0; } } else i1 = 0; i1 = (i1 | 0) == 0; do if (i3) { if ((HEAP32[i3 + 12 >> 2] | 0) == (HEAP32[i3 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0) == -1 : 0) { HEAP32[i23 >> 2] = 0; i25 = 41; break; } if (!i1) i25 = 42; } else i25 = 41; while (0); if ((i25 | 0) == 41 ? i1 : 0) i25 = 42; if ((i25 | 0) == 42) HEAP32[i24 >> 2] = HEAP32[i24 >> 2] | 2; i25 = HEAP32[i22 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); STACKTOP = i21; return i25 | 0; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN13FunctionScopeC2EPNS_8FunctionES9_(i5, i9, i10) { i5 = i5 | 0; i9 = i9 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i13 + 8 | 0; i1 = i13 + 4 | 0; i11 = i13; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; HEAP32[i5 + 12 >> 2] = i9; i12 = i9 + 8 | 0; i7 = i9 + 12 | 0; i6 = i10 + 4 | 0; if (((HEAP32[i7 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) >> 2 | 0) != ((HEAP32[i6 >> 2] | 0) - (HEAP32[i10 >> 2] | 0) >> 4 | 0)) { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 25123) | 0; HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i1 >> 2]; i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i4, i8) | 0, 25134) | 0; i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i4, (HEAP32[i7 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) >> 2) | 0, 25145) | 0; i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i4, (HEAP32[i6 >> 2] | 0) - (HEAP32[i10 >> 2] | 0) >> 4) | 0, 25163) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i8 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i8); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; _abort(); } __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE6resizeEj(i5, __ZN4wasm8Function12getNumLocalsEv(i9) | 0); i4 = 0; while (1) { if (i4 >>> 0 >= (__ZN4wasm8Function12getNumLocalsEv(i9) | 0) >>> 0) { i1 = 5; break; } i14 = HEAP32[i10 >> 2] | 0; i3 = HEAP32[i12 >> 2] | 0; i1 = (HEAP32[i7 >> 2] | 0) - i3 >> 2 >>> 0 > i4 >>> 0; i2 = i14; if (i4 >>> 0 < (HEAP32[i6 >> 2] | 0) - i14 >> 4 >>> 0) { if (!i1) { i1 = 8; break; } i1 = i2 + (i4 << 4) | 0; if ((HEAP32[i3 + (i4 << 2) >> 2] | 0) != (HEAP32[i1 >> 2] | 0)) { i1 = 10; break; } i14 = (HEAP32[i5 >> 2] | 0) + (i4 << 4) | 0; HEAP32[i14 >> 2] = HEAP32[i1 >> 2]; HEAP32[i14 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i14 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i14 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; } else { if (i1) { i1 = 13; break; } i14 = __ZN4wasm8Function12getLocalTypeEj(i9, i4) | 0; HEAP32[(HEAP32[i5 >> 2] | 0) + (i4 << 4) >> 2] = i14; } i4 = i4 + 1 | 0; } if ((i1 | 0) == 5) { STACKTOP = i13; return; } else if ((i1 | 0) == 8) ___assert_fail(25175, 24695, 614, 25196); else if ((i1 | 0) == 10) { i14 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 25123) | 0; HEAP32[i11 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i11 >> 2]; i14 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i14, i8) | 0, 25210) | 0; i14 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i14, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[(HEAP32[i12 >> 2] | 0) + (i4 << 2) >> 2] | 0) | 0) | 0, 25226) | 0, i4) | 0, 25242) | 0; i14 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i14, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[(HEAP32[i10 >> 2] | 0) + (i4 << 4) >> 2] | 0) | 0) | 0, 43697) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i14 + (HEAP32[(HEAP32[i14 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i8 >> 2] = i13; i13 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47476) | 0; i13 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i13 >> 2] | 0) + 28 >> 2] & 31](i13, 10) | 0; __ZNSt3__26localeD2Ev(i8); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i14, i13) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i14) | 0; _abort(); } else if ((i1 | 0) == 13) ___assert_fail(25249, 24695, 624, 25196); } function __ZN6cashew9JSPrinter11numToStringEdb(d2, i1) { d2 = +d2; i1 = i1 | 0; var d3 = 0.0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0, i23 = 0, i24 = 0, i25 = 0; i25 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i19 = i25 + 80 | 0; i18 = i25 + 72 | 0; i17 = i25 + 64 | 0; i21 = i25 + 56 | 0; i20 = i25 + 48 | 0; i16 = i25 + 40 | 0; i15 = i25 + 32 | 0; i23 = i25 + 24 | 0; i12 = i25 + 16 | 0; i13 = i25 + 8 | 0; i14 = i25; i24 = d2 < 0.0; d2 = i24 ? -d2 : d2; i11 = +_fmod(d2, 1.0) == 0.0; HEAPF64[i23 >> 3] = nan; HEAPF64[i12 >> 3] = nan; i10 = !(d2 >= 0.0); i9 = i1 ^ 1; i8 = 0; L1 : while (1) { if ((i8 | 0) >= 2) { i22 = 3; break; } i5 = (i8 | 0) != 0; i7 = i5 ? HEAP32[697] | 0 : HEAP32[696] | 0; L4 : do if (i11) { if (i10) { i22 = 12; break L1; } if (!(__ZN4wasm12isUInteger64Ed(d2) | 0)) { HEAPF64[i18 >> 3] = d2; _snprintf(i7, 999, i5 ? 26317 : 26320, i18) | 0; HEAP32[i19 >> 2] = i13; _sscanf(i7, 26277, i19) | 0; break; } i1 = __ZN4wasm12toUInteger64Ed(d2) | 0; i6 = i5 & i9; i4 = i20; HEAP32[i4 >> 2] = i1; HEAP32[i4 + 4 >> 2] = tempRet0; _snprintf(i7, 999, i6 ? 26300 : 26307, i20) | 0; if (i6) { HEAP32[i21 >> 2] = i14; _sscanf(i7, 26312, i21) | 0; i6 = i14; HEAPF64[i13 >> 3] = +((HEAP32[i6 >> 2] | 0) >>> 0) + 4294967296.0 * +((HEAP32[i6 + 4 >> 2] | 0) >>> 0); break; } else { HEAP32[i17 >> 2] = i13; _sscanf(i7, 26277, i17) | 0; break; } } else { i4 = i5 ? 101 : 102; i1 = 0; while (1) { if ((i1 | 0) >= 19) break L4; HEAP8[51410] = 37; HEAP8[51411] = 46; if ((i1 | 0) < 10) { HEAP8[51412] = i1 + 48; HEAP8[51413] = i4; HEAP8[51414] = 0; } else { HEAP8[51412] = 49; HEAP8[51413] = i1 + 38; HEAP8[51414] = i4; HEAP8[51415] = 0; } HEAPF64[i15 >> 3] = d2; _snprintf(i7, 999, 51410, i15) | 0; HEAP32[i16 >> 2] = i13; _sscanf(i7, 26277, i16) | 0; if (+HEAPF64[i13 >> 3] == d2) break; else i1 = i1 + 1 | 0; } } while (0); d3 = +Math_abs(+(+HEAPF64[i13 >> 3] - d2)); HEAPF64[(i5 ? i12 : i23) >> 3] = d3; i4 = _strchr(i7, 46) | 0; L22 : do if (!i4) { if (!(i11 & i5)) { i5 = i7 + (_strlen(i7) | 0) + -1 | 0; i4 = i7; i6 = i5; while (1) { if ((HEAP8[i6 >> 0] | 0) == 48) { if (i6 >>> 0 <= i7 >>> 0) { i22 = 30; break; } } else { i1 = i6; if (!(i6 >>> 0 > i7 >>> 0 & (i1 - i4 | 0) > 24)) break; } i6 = i6 + -1 | 0; } if ((i22 | 0) == 30) { i22 = 0; i1 = i6; } i1 = i5 - i1 | 0; if ((i1 | 0) > 2) { HEAP8[i6 + 1 >> 0] = 101; if ((i1 | 0) < 10) { HEAP8[i6 + 2 >> 0] = i1 + 48; HEAP8[i6 + 3 >> 0] = 0; break; } if ((i1 | 0) < 100) { HEAP8[i6 + 2 >> 0] = ((i1 >>> 0) / 10 | 0) + 48; HEAP8[i6 + 3 >> 0] = (i1 >>> 0) % 10 | 0 | 48; HEAP8[i6 + 4 >> 0] = 0; break; } if ((i1 | 0) >= 1e3) { i22 = 38; break L1; } HEAP8[i6 + 2 >> 0] = ((i1 >>> 0) / 100 | 0) + 48; HEAP8[i6 + 3 >> 0] = (((i1 >>> 0) % 100 | 0) >>> 0) / 10 | 0 | 48; HEAP8[i6 + 4 >> 0] = (i1 >>> 0) % 10 | 0 | 48; HEAP8[i6 + 5 >> 0] = 0; } } } else { while (1) { i1 = i4 + 1 | 0; if (((HEAP8[i1 >> 0] | 0) + -48 & 255) < 10) i4 = i1; else break; } while (1) { if ((HEAP8[i4 >> 0] | 0) == 48) i1 = i4; else break; do { i5 = i1; i1 = i1 + 1 | 0; i6 = HEAP8[i1 >> 0] | 0; HEAP8[i5 >> 0] = i6; } while (i6 << 24 >> 24 != 0); i4 = i4 + -1 | 0; } L49 : while (1) { if ((HEAP8[i7 >> 0] | 0) == 48) i1 = i7; else break L22; while (1) { i4 = i1 + 1 | 0; i6 = HEAP8[i4 >> 0] | 0; HEAP8[i1 >> 0] = i6; if (!(i6 << 24 >> 24)) continue L49; else i1 = i4; } } } while (0); i8 = i8 + 1 | 0; } if ((i22 | 0) == 3) { d3 = +HEAPF64[i12 >> 3]; d2 = +HEAPF64[i23 >> 3]; if (d3 == d2) { i23 = HEAP32[697] | 0; i22 = _strlen(i23) | 0; i1 = HEAP32[696] | 0; i22 = i22 >>> 0 < (_strlen(i1) | 0) >>> 0; i1 = i22 ? i23 : i1; } else i1 = d3 < d2 ? HEAP32[697] | 0 : HEAP32[696] | 0; if (i24) { i1 = i1 + -1 | 0; HEAP8[i1 >> 0] = 45; } STACKTOP = i25; return i1 | 0; } else if ((i22 | 0) == 12) ___assert_fail(26281, 34046, 872, 26288); else if ((i22 | 0) == 38) ___assert_fail(26325, 34046, 935, 26288); return 0; } function _call_from_js(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, d4 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0; i18 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i12 = i18 + 16 | 0; i13 = i18 + 48 | 0; i2 = i18 + 56 | 0; i3 = i18 + 52 | 0; i14 = i18 + 36 | 0; i15 = i18; i16 = i18 + 32 | 0; if (HEAP8[49408] | 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46604, 13710) | 0, i1) | 0, 10) | 0; __ZN6cashew7IStringC2EPKcb(i13, i1, 1); i11 = HEAP32[HEAP32[11249] >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i13 >> 2]; HEAP32[i12 >> 2] = HEAP32[i2 >> 2]; i11 = (__ZN4wasm6Module9getExportENS_4NameE(i11, i12) | 0) + 4 | 0; i1 = HEAP32[HEAP32[11249] >> 2] | 0; HEAP32[i3 >> 2] = HEAP32[i11 >> 2]; HEAP32[i12 >> 2] = HEAP32[i3 >> 2]; i1 = __ZN4wasm6Module11getFunctionENS_4NameE(i1, i12) | 0; if (!i1) ___assert_fail(35005, 13724, 433, 13740); i10 = _emscripten_asm_const_i(10) | 0; i11 = i1 + 8 | 0; i3 = (HEAP32[i1 + 12 >> 2] | 0) - (HEAP32[i11 >> 2] | 0) >> 2; HEAP32[i14 >> 2] = 0; i5 = i14 + 4 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; i6 = i12 + 8 | 0; i7 = i14 + 8 | 0; i8 = i12 + 8 | 0; i9 = i12 + 8 | 0; i2 = 0; L7 : while (1) { if (i2 >>> 0 >= i3 >>> 0) break; switch (HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] | 0) { case 1: { if (i2 >>> 0 < i10 >>> 0) i1 = _emscripten_asm_const_ii(11, i2 | 0) | 0; else i1 = 0; HEAP32[i12 >> 2] = 1; HEAP32[i6 >> 2] = i1; i1 = HEAP32[i5 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = HEAP32[i12 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i12 + 12 >> 2]; HEAP32[i5 >> 2] = i1 + 16; } else __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i14, i12); break; } case 3: { if (i2 >>> 0 < i10 >>> 0) d4 = +_emscripten_asm_const_di(11, i2 | 0); else d4 = 0.0; HEAP32[i12 >> 2] = 3; HEAPF32[i8 >> 2] = d4; i1 = HEAP32[i5 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = HEAP32[i12 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i12 + 12 >> 2]; HEAP32[i5 >> 2] = i1 + 16; } else __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i14, i12); break; } case 4: { if (i2 >>> 0 < i10 >>> 0) d4 = +_emscripten_asm_const_di(11, i2 | 0); else d4 = 0.0; HEAP32[i12 >> 2] = 4; HEAPF64[i9 >> 3] = d4; i1 = HEAP32[i5 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = HEAP32[i12 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i12 + 12 >> 2]; HEAP32[i5 >> 2] = i1 + 16; } else __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i14, i12); break; } default: { i17 = 27; break L7; } } i2 = i2 + 1 | 0; } if ((i17 | 0) == 27) _abort(); i17 = HEAP32[11249] | 0; HEAP32[i16 >> 2] = HEAP32[i13 >> 2]; HEAP32[i12 >> 2] = HEAP32[i16 >> 2]; __ZN4wasm14ModuleInstance10callExportENS_4NameERNSt3__26vectorINS_7LiteralENS2_9allocatorIS4_EEEE(i15, i17, i12, i14); if (HEAP8[49408] | 0) { i17 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46604, 13834) | 0; HEAP32[i12 >> 2] = HEAP32[i15 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i15 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i15 + 8 >> 2]; HEAP32[i12 + 12 >> 2] = HEAP32[i15 + 12 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_7LiteralE(i17, i12) | 0, 10) | 0; } switch (HEAP32[i15 >> 2] | 0) { case 0: { _emscripten_asm_const_v(12); break; } case 1: { _emscripten_asm_const_ii(13, __ZNK4wasm7Literal6geti32Ev(i15) | 0) | 0; break; } case 3: { _emscripten_asm_const_id(13, +(+__ZNK4wasm7Literal6getf32Ev(i15))) | 0; break; } case 4: { _emscripten_asm_const_id(13, +(+__ZNK4wasm7Literal6getf64Ev(i15))) | 0; break; } default: _abort(); } __ZNSt3__213__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i14); STACKTOP = i18; return; } function __ZN4wasm15Asm2WasmBuilder24noteImportedFunctionCallEN6cashew3RefENS_8WasmTypeEP7AsmDataPNS_10CallImportE(i13, i6, i7, i14, i1) { i13 = i13 | 0; i6 = i6 | 0; i7 = i7 | 0; i14 = i14 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i8 = i19 + 32 | 0; i10 = i19 + 28 | 0; i4 = i19 + 24 | 0; i5 = i19 + 8 | 0; i11 = i19 + 20 | 0; i12 = i19 + 4 | 0; i9 = i19; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i6, 0) | 0, 45784) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i6, 1) | 0, 0) | 0, 45056) | 0 : 0) { i3 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i6, 1) | 0, 1) | 0; i3 = __ZN6cashew5Value10getIStringEv(HEAP32[i3 >> 2] | 0) | 0; i3 = HEAP32[i3 >> 2] | 0; HEAP32[i10 >> 2] = i3; i15 = __ZN4wasm11make_uniqueINS_12FunctionTypeEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() | 0; i1 = i15; HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i8, 27878, 5); i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i8, i3) | 0; HEAP32[i5 >> 2] = HEAP32[i3 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i3 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } __ZN6cashew7IStringC2EPKcb(i4, (HEAP8[i5 + 11 >> 0] | 0) < 0 ? HEAP32[i5 >> 2] | 0 : i5, 0); HEAP32[i15 >> 2] = HEAP32[i4 >> 2]; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8); i18 = i15 + 4 | 0; HEAP32[i18 >> 2] = i7; i2 = __ZN6cashew3RefixEj(i6, 2) | 0; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i11 >> 2] = i2; i16 = i15 + 8 | 0; i17 = i15 + 12 | 0; i5 = i15 + 16 | 0; i4 = 0; while (1) { if (i4 >>> 0 >= (__ZN6cashew5Value4sizeEv(i2) | 0) >>> 0) break; i2 = __ZN6cashew3RefixEj(i11, i4) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i2 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i13, i8, i14) | 0; HEAP32[i12 >> 2] = i2; i3 = HEAP32[i17 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) { HEAP32[i3 >> 2] = i2; HEAP32[i17 >> 2] = i3 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i16, i12); i4 = i4 + 1 | 0; i2 = HEAP32[i11 >> 2] | 0; } i2 = i13 + 108 | 0; i14 = (__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE4findIS3_EENS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEEiEERKT_(i2, i10) | 0) == (i13 + 112 | 0); i2 = __ZNSt3__23mapIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS5_EEEENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S8_EEEEEixERSD_(i2, i10) | 0; if (!i14) { i10 = HEAP32[i2 >> 2] | 0; if (!(__ZN4wasm12FunctionTypeeqERS0_(i15, i10) | 0)) { i7 = i10 + 8 | 0; i8 = i10 + 12 | 0; i9 = i10 + 16 | 0; i6 = 0; while (1) { i15 = HEAP32[i16 >> 2] | 0; i5 = i15; if (i6 >>> 0 >= (HEAP32[i17 >> 2] | 0) - i15 >> 2 >>> 0) break; i15 = HEAP32[i8 >> 2] | 0; i2 = HEAP32[i7 >> 2] | 0; i3 = i15; do if (i15 - i2 >> 2 >>> 0 > i6 >>> 0) { i3 = i2 + (i6 << 2) | 0; i4 = HEAP32[i3 >> 2] | 0; i2 = HEAP32[i5 + (i6 << 2) >> 2] | 0; if (!i4) { HEAP32[i3 >> 2] = i2; break; } if ((i4 | 0) != (i2 | 0)) HEAP32[i3 >> 2] = 4; } else { i2 = i5 + (i6 << 2) | 0; if ((i3 | 0) == (HEAP32[i9 >> 2] | 0)) { __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i7, i2); break; } else { HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 >> 2] = i3 + 4; break; } } while (0); i6 = i6 + 1 | 0; } i2 = i10 + 4 | 0; if (!(HEAP32[i2 >> 2] | 0)) HEAP32[i2 >> 2] = HEAP32[i18 >> 2]; } } else { i18 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = i1; i1 = i18; } if (i1 | 0) { __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i1 + 8 | 0); __ZdlPv(i1); } STACKTOP = i19; return; } ___assert_fail(27817, 11743, 228, 27853); } function ___cxa_demangle(i10, i1, i14, i17) { i10 = i10 | 0; i1 = i1 | 0; i14 = i14 | 0; i17 = i17 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0, i18 = 0, i19 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 4208 | 0; i15 = i19 + 4176 | 0; i3 = i19; i18 = i19 + 4112 | 0; if ((i10 | 0) != 0 ? (i2 = (i1 | 0) != 0, i16 = (i14 | 0) == 0, !(i2 & i16)) : 0) { if (i2) i12 = HEAP32[i14 >> 2] | 0; else i12 = 0; HEAP32[i3 + 4096 >> 2] = i3; i2 = i3; HEAP32[i18 >> 2] = 0; i13 = i18 + 4 | 0; HEAP32[i13 >> 2] = 0; HEAP32[i18 + 8 >> 2] = 0; HEAP32[i18 + 12 >> 2] = i2; i6 = i18 + 16 | 0; HEAP32[i6 >> 2] = 0; i7 = i18 + 20 | 0; HEAP32[i7 >> 2] = 0; HEAP32[i18 + 24 >> 2] = 0; HEAP32[i18 + 28 >> 2] = i2; HEAP32[i18 + 32 >> 2] = 0; i3 = i18 + 36 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i18 + 40 >> 2] = 0; i8 = i18 + 44 | 0; HEAP32[i8 >> 2] = i2; i5 = i18 + 48 | 0; i4 = i18 + 61 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; HEAP8[i5 + 12 >> 0] = 0; HEAP8[i4 >> 0] = 1; i5 = i18 + 32 | 0; __ZNSt3__214__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEEC2EjjSB_(i15, 1, 0, i8); i8 = i15 + 8 | 0; i9 = HEAP32[i8 >> 2] | 0; HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; HEAP32[i9 + 12 >> 2] = i2; HEAP32[i8 >> 2] = i9 + 16; __ZNSt3__26vectorINS0_INS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEEENS4_IS8_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS8_RS9_EE(i5, i15); __ZNSt3__214__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEED2Ev(i15); i8 = i18 + 62 | 0; HEAP8[i8 >> 0] = 0; HEAP8[i18 + 63 >> 0] = 1; HEAP32[i15 >> 2] = 0; i9 = i10 + (_strlen(i10) | 0) | 0; __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i10, i9, i18, i15); i2 = HEAP32[i15 >> 2] | 0; do if (!((i2 | 0) != 0 | (HEAP8[i8 >> 0] | 0) == 0)) { i5 = HEAP32[i5 >> 2] | 0; if ((i5 | 0) != (HEAP32[i3 >> 2] | 0) ? (HEAP32[i5 >> 2] | 0) != (HEAP32[i5 + 4 >> 2] | 0) : 0) { HEAP8[i8 >> 0] = 0; HEAP8[i4 >> 0] = 0; i2 = HEAP32[i18 >> 2] | 0; while (1) { i3 = HEAP32[i13 >> 2] | 0; if ((i3 | 0) == (i2 | 0)) break; i5 = i3 + -24 | 0; HEAP32[i13 >> 2] = i5; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i5); } i2 = HEAP32[i6 >> 2] | 0; while (1) { i3 = HEAP32[i7 >> 2] | 0; if ((i3 | 0) == (i2 | 0)) break; i6 = i3 + -16 | 0; HEAP32[i7 >> 2] = i6; __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i6); } __ZN10__cxxabiv112_GLOBAL__N_18demangleINS0_2DbEEEvPKcS4_RT_Ri(i10, i9, i18, i15); if (!(HEAP8[i8 >> 0] | 0)) { i2 = HEAP32[i15 >> 2] | 0; i11 = 19; break; } else { HEAP32[i15 >> 2] = -2; i1 = 0; i2 = -2; break; } } else i11 = 20; } else i11 = 19; while (0); if ((i11 | 0) == 19) if (!i2) i11 = 20; else i1 = 0; do if ((i11 | 0) == 20) { i3 = HEAP32[i13 >> 2] | 0; i2 = HEAP8[i3 + -24 + 11 >> 0] | 0; if (i2 << 24 >> 24 < 0) i4 = HEAP32[i3 + -20 >> 2] | 0; else i4 = i2 & 255; i2 = HEAP8[i3 + -12 + 11 >> 0] | 0; if (i2 << 24 >> 24 < 0) i2 = HEAP32[i3 + -8 >> 2] | 0; else i2 = i2 & 255; i3 = i2 + i4 | 0; i2 = i3 + 1 | 0; if (i2 >>> 0 > i12 >>> 0) { i1 = _realloc(i1, i2) | 0; if (!i1) { HEAP32[i15 >> 2] = -1; i1 = 0; i2 = -1; break; } if (!i16) HEAP32[i14 >> 2] = i2; } else if (!i1) { i1 = 0; i2 = 0; break; } i16 = HEAP32[i13 >> 2] | 0; i14 = i16 + -12 | 0; i2 = HEAP8[i14 + 11 >> 0] | 0; i15 = i2 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i16 + -24 | 0, i15 ? HEAP32[i14 >> 2] | 0 : i14, i15 ? HEAP32[i16 + -8 >> 2] | 0 : i2 & 255) | 0; i2 = (HEAP32[i13 >> 2] | 0) + -24 | 0; if ((HEAP8[i2 + 11 >> 0] | 0) < 0) i2 = HEAP32[i2 >> 2] | 0; _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; HEAP8[i1 + i3 >> 0] = 0; i2 = 0; } while (0); if (i17 | 0) HEAP32[i17 >> 2] = i2; __ZN10__cxxabiv112_GLOBAL__N_12DbD2Ev(i18); } else if (!i17) i1 = 0; else { HEAP32[i17 >> 2] = -3; i1 = 0; } STACKTOP = i19; return i1 | 0; } function __GLOBAL__sub_I_parser_cpp() { __ZN6cashew7IString3setEPKcb(45036, 33370, 1); __ZN6cashew7IString3setEPKcb(45040, 33379, 1); __ZN6cashew7IString3setEPKcb(45044, 35166, 1); __ZN6cashew7IString3setEPKcb(45048, 33385, 1); __ZN6cashew7IString3setEPKcb(45052, 33390, 1); __ZN6cashew7IString3setEPKcb(45056, 35044, 1); __ZN6cashew7IString3setEPKcb(45060, 33397, 1); __ZN6cashew7IString3setEPKcb(45064, 33401, 1); __ZN6cashew7IString3setEPKcb(45068, 33407, 1); __ZN6cashew7IString3setEPKcb(45072, 33419, 1); __ZN6cashew7IString3setEPKcb(45076, 33426, 1); __ZN6cashew7IString3setEPKcb(45080, 33433, 1); __ZN6cashew7IString3setEPKcb(45084, 35183, 1); __ZN6cashew7IString3setEPKcb(45088, 33436, 1); __ZN6cashew7IString3setEPKcb(45092, 33442, 1); __ZN6cashew7IString3setEPKcb(45096, 33445, 1); __ZN6cashew7IString3setEPKcb(45100, 33449, 1); __ZN6cashew7IString3setEPKcb(45104, 33453, 1); __ZN6cashew7IString3setEPKcb(45108, 35135, 1); __ZN6cashew7IString3setEPKcb(45112, 33457, 1); __ZN6cashew7IString3setEPKcb(45116, 33461, 1); __ZN6cashew7IString3setEPKcb(45120, 33467, 1); __ZN6cashew7IString3setEPKcb(45124, 33473, 1); __ZN6cashew7IString3setEPKcb(45128, 33482, 1); __ZN6cashew7IString3setEPKcb(45132, 33489, 1); __ZN6cashew7IString3setEPKcb(45136, 36159, 1); __ZN6cashew7IString3setEPKcb(45140, 36167, 1); __ZN6cashew7IString3setEPKcb(45144, 33496, 1); __ZN6cashew7IString3setEPKcb(45148, 33505, 1); __ZN6cashew7IString3setEPKcb(45152, 33517, 1); __ZN6cashew7IString3setEPKcb(45156, 33532, 1); __ZN6cashew7IString3setEPKcb(45160, 33546, 1); __ZN6cashew7IString3setEPKcb(45164, 33559, 1); __ZN6cashew7IString3setEPKcb(45168, 33573, 1); __ZN6cashew7IString3setEPKcb(45172, 33585, 1); __ZN6cashew7IString3setEPKcb(45176, 33600, 1); __ZN6cashew7IString3setEPKcb(45180, 33615, 1); __ZN6cashew7IString3setEPKcb(45184, 33628, 1); __ZN6cashew7IString3setEPKcb(45188, 33641, 1); __ZN6cashew7IString3setEPKcb(45192, 43778, 1); __ZN6cashew7IString3setEPKcb(45196, 43728, 1); __ZN6cashew7IString3setEPKcb(45200, 43769, 1); __ZN6cashew7IString3setEPKcb(45204, 42503, 1); __ZN6cashew7IString3setEPKcb(45208, 43704, 1); __ZN6cashew7IString3setEPKcb(45212, 43753, 1); __ZN6cashew7IString3setEPKcb(45216, 42667, 1); __ZN6cashew7IString3setEPKcb(45220, 42515, 1); __ZN6cashew7IString3setEPKcb(45224, 43712, 1); __ZN6cashew7IString3setEPKcb(45228, 43718, 1); __ZN6cashew7IString3setEPKcb(45232, 42517, 1); __ZN6cashew7IString3setEPKcb(45236, 43709, 1); __ZN6cashew7IString3setEPKcb(45240, 43750, 1); __ZN6cashew7IString3setEPKcb(45244, 43699, 1); __ZN6cashew7IString3setEPKcb(45248, 43823, 1); __ZN6cashew7IString3setEPKcb(45252, 42498, 1); __ZN6cashew7IString3setEPKcb(45256, 43828, 1); __ZN6cashew7IString3setEPKcb(45260, 43721, 1); __ZN6cashew7IString3setEPKcb(45264, 33654, 1); __ZN6cashew7IString3setEPKcb(45268, 33658, 1); __ZN6cashew7IString3setEPKcb(45272, 33672, 1); __ZN6cashew7IString3setEPKcb(45276, 33678, 1); __ZN6cashew7IString3setEPKcb(45280, 33685, 1); __ZN6cashew7IString3setEPKcb(45284, 33692, 1); __ZN6cashew7IString3setEPKcb(45288, 33700, 1); __ZN6cashew7IString3setEPKcb(45292, 33707, 1); __ZN6cashew7IString3setEPKcb(45296, 33715, 1); __ZN6cashew7IString3setEPKcb(45300, 33723, 1); __ZN6cashew7IString3setEPKcb(45304, 33731, 1); __ZN6cashew7IString3setEPKcb(45308, 53494, 1); __ZN6cashew7IString3setEPKcb(45312, 35005, 1); __ZN6cashew7IString3setEPKcb(45316, 42453, 1); __ZN6cashew7IString3setEPKcb(45320, 33734, 1); __ZN6cashew7IString3setEPKcb(45324, 33736, 1); __ZN6cashew7IString3setEPKcb(45328, 33738, 1); __ZN6cashew7IString3setEPKcb(45332, 43657, 1); __ZN6cashew7IString3setEPKcb(45336, 33740, 1); __ZN6cashew7IString3setEPKcb(45340, 33742, 1); __ZN6cashew7IString3setEPKcb(45344, 35216, 1); __ZN6cashew7IString3setEPKcb(45348, 33744, 1); __ZN6cashew7IString3setEPKcb(45352, 33752, 1); __ZN6cashew7IString3setEPKcb(45356, 43697, 1); __ZN6cashew7IString3setEPKcb(45360, 33756, 1); __ZN6cashew7IString3setEPKcb(45364, 33760, 1); __ZN6cashew7IString3setEPKcb(45368, 33766, 1); __ZN6cashew7IString3setEPKcb(45372, 43876, 1); __ZN6cashew7IString3setEPKcb(45376, 43630, 1); __ZN6cashew10IStringSetC2EPKc(45380, 33773); ___cxa_atexit(159, 45380, ___dso_handle | 0) | 0; HEAP32[11353] = 0; HEAP32[11354] = 0; HEAP32[11355] = 0; ___cxa_atexit(160, 45412, ___dso_handle | 0) | 0; HEAP32[11356] = 0; HEAP32[11357] = 0; HEAP32[11358] = 0; ___cxa_atexit(161, 45424, ___dso_handle | 0) | 0; __ZN6cashew4InitC2Ev(51420); return; } function __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i10, i14, i15, i11, i6) { i10 = i10 | 0; i14 = i14 | 0; i15 = i15 | 0; i11 = i11 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i12 = 0, i13 = 0; i1 = HEAP32[i10 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i10 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i10 >> 2] | 0; break; } } else i1 = 0; while (0); i2 = (i1 | 0) == 0; i1 = HEAP32[i14 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i14 >> 2] = 0; i13 = 11; break; } if (i2) i13 = 13; else i13 = 12; } else i13 = 11; while (0); if ((i13 | 0) == 11) if (i2) i13 = 12; else { i1 = 0; i13 = 13; } L16 : do if ((i13 | 0) == 12) { HEAP32[i15 >> 2] = HEAP32[i15 >> 2] | 6; i1 = 0; } else if ((i13 | 0) == 13) { i2 = HEAP32[i10 >> 2] | 0; i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAPU8[i3 >> 0] | 0; i3 = i2 & 255; if (i3 << 24 >> 24 > -1 ? (i12 = i11 + 8 | 0, HEAP16[(HEAP32[i12 >> 2] | 0) + (i2 << 24 >> 24 << 1) >> 1] & 2048) : 0) { i2 = (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] & 31](i11, i3, 0) | 0) << 24 >> 24; i3 = HEAP32[i10 >> 2] | 0; i4 = i3 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 40 >> 2] & 127](i3) | 0; i5 = i1; i4 = i1; } else { HEAP32[i4 >> 2] = i5 + 1; i5 = i1; i4 = i1; } while (1) { i1 = i2 + -48 | 0; i8 = i6 + -1 | 0; i2 = HEAP32[i10 >> 2] | 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) { HEAP32[i10 >> 2] = 0; i2 = 0; break; } else { i2 = HEAP32[i10 >> 2] | 0; break; } } else i2 = 0; while (0); i3 = (i2 | 0) == 0; if (i4) if ((HEAP32[i4 + 12 >> 2] | 0) == (HEAP32[i4 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) == -1) { HEAP32[i14 >> 2] = 0; i9 = 0; i7 = 0; } else { i9 = i5; i7 = i5; } else { i9 = i5; i7 = i4; } else { i9 = i5; i7 = 0; } i2 = HEAP32[i10 >> 2] | 0; if (!((i6 | 0) > 1 & (i3 ^ (i7 | 0) == 0))) break; i3 = HEAP32[i2 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i2 = HEAPU8[i3 >> 0] | 0; i3 = i2 & 255; if (i3 << 24 >> 24 <= -1) break L16; if (!(HEAP16[(HEAP32[i12 >> 2] | 0) + (i2 << 24 >> 24 << 1) >> 1] & 2048)) break L16; i2 = ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] & 31](i11, i3, 0) | 0) << 24 >> 24) + (i1 * 10 | 0) | 0; i1 = HEAP32[i10 >> 2] | 0; i3 = i1 + 12 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; i6 = i8; i5 = i9; i4 = i7; continue; } else { HEAP32[i3 >> 2] = i4 + 1; i6 = i8; i5 = i9; i4 = i7; continue; } } do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1) { HEAP32[i10 >> 2] = 0; i2 = 0; break; } else { i2 = HEAP32[i10 >> 2] | 0; break; } } else i2 = 0; while (0); i2 = (i2 | 0) == 0; do if (i9) { if ((HEAP32[i9 + 12 >> 2] | 0) == (HEAP32[i9 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i9 >> 2] | 0) + 36 >> 2] & 127](i9) | 0) == -1 : 0) { HEAP32[i14 >> 2] = 0; i13 = 50; break; } if (i2) break L16; } else i13 = 50; while (0); if ((i13 | 0) == 50 ? !i2 : 0) break; HEAP32[i15 >> 2] = HEAP32[i15 >> 2] | 2; break; } HEAP32[i15 >> 2] = HEAP32[i15 >> 2] | 4; i1 = 0; } while (0); return i1 | 0; } function _mbsrtowcs(i5, i9, i1, i3) { i5 = i5 | 0; i9 = i9 | 0; i1 = i1 | 0; i3 = i3 | 0; var i2 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0; i2 = HEAP32[i9 >> 2] | 0; if ((i3 | 0) != 0 ? (i4 = HEAP32[i3 >> 2] | 0, (i4 | 0) != 0) : 0) if (!i5) { i3 = i1; i6 = i2; i8 = 17; } else { HEAP32[i3 >> 2] = 0; i7 = i5; i3 = i1; i8 = 38; } else if (!i5) { i3 = i1; i8 = 7; } else { i4 = i5; i3 = i1; i8 = 6; } L7 : while (1) if ((i8 | 0) == 6) { if (!i3) { i8 = 27; break; } else i5 = i4; while (1) { i4 = HEAP8[i2 >> 0] | 0; do if (((i4 & 255) + -1 | 0) >>> 0 < 127 ? i3 >>> 0 > 4 & (i2 & 3 | 0) == 0 : 0) { while (1) { i4 = HEAP32[i2 >> 2] | 0; if ((i4 + -16843009 | i4) & -2139062144 | 0) { i8 = 33; break; } HEAP32[i5 >> 2] = i4 & 255; HEAP32[i5 + 4 >> 2] = HEAPU8[i2 + 1 >> 0]; HEAP32[i5 + 8 >> 2] = HEAPU8[i2 + 2 >> 0]; i6 = i2 + 4 | 0; i4 = i5 + 16 | 0; HEAP32[i5 + 12 >> 2] = HEAPU8[i2 + 3 >> 0]; i3 = i3 + -4 | 0; if (i3 >>> 0 > 4) { i5 = i4; i2 = i6; } else { i8 = 32; break; } } if ((i8 | 0) == 32) { i5 = i4; i2 = i6; i4 = HEAP8[i6 >> 0] | 0; break; } else if ((i8 | 0) == 33) { i4 = i4 & 255; break; } } while (0); i4 = i4 & 255; if ((i4 + -1 | 0) >>> 0 >= 127) break; i2 = i2 + 1 | 0; HEAP32[i5 >> 2] = i4; i3 = i3 + -1 | 0; if (!i3) { i8 = 27; break L7; } else i5 = i5 + 4 | 0; } i4 = i4 + -194 | 0; if (i4 >>> 0 > 50) { i8 = 49; break; } i7 = i5; i4 = HEAP32[3576 + (i4 << 2) >> 2] | 0; i2 = i2 + 1 | 0; i8 = 38; continue; } else if ((i8 | 0) == 7) { while (1) { i4 = HEAP8[i2 >> 0] | 0; if (((i4 & 255) + -1 | 0) >>> 0 < 127 ? (i2 & 3 | 0) == 0 : 0) { i8 = HEAP32[i2 >> 2] | 0; i4 = i8 & 255; if (!((i8 + -16843009 | i8) & -2139062144)) { do { i2 = i2 + 4 | 0; i3 = i3 + -4 | 0; i4 = HEAP32[i2 >> 2] | 0; } while (!((i4 + -16843009 | i4) & -2139062144 | 0)); i4 = i4 & 255; } } i4 = i4 & 255; if ((i4 + -1 | 0) >>> 0 >= 127) break; i2 = i2 + 1 | 0; i3 = i3 + -1 | 0; } i4 = i4 + -194 | 0; if (i4 >>> 0 > 50) { i8 = 49; break; } i4 = HEAP32[3576 + (i4 << 2) >> 2] | 0; i6 = i2 + 1 | 0; i8 = 17; continue; } else if ((i8 | 0) == 17) { i8 = (HEAPU8[i6 >> 0] | 0) >>> 3; if ((i8 + -16 | i8 + (i4 >> 26)) >>> 0 > 7) { i8 = 18; break; } i2 = i6 + 1 | 0; if (i4 & 33554432) { if ((HEAP8[i2 >> 0] & -64) << 24 >> 24 != -128) { i8 = 21; break; } i2 = i6 + 2 | 0; if (i4 & 524288) { if ((HEAP8[i2 >> 0] & -64) << 24 >> 24 != -128) { i8 = 24; break; } i2 = i6 + 3 | 0; } } i3 = i3 + -1 | 0; i8 = 7; continue; } else if ((i8 | 0) == 38) { i5 = HEAPU8[i2 >> 0] | 0; i8 = i5 >>> 3; if ((i8 + -16 | i8 + (i4 >> 26)) >>> 0 > 7) { i8 = 39; break; } i6 = i2 + 1 | 0; i5 = i5 + -128 | i4 << 6; if ((i5 | 0) < 0) { i4 = (HEAPU8[i6 >> 0] | 0) + -128 | 0; if (i4 >>> 0 > 63) { i8 = 42; break; } i6 = i2 + 2 | 0; i5 = i4 | i5 << 6; if ((i5 | 0) < 0) { i4 = (HEAPU8[i6 >> 0] | 0) + -128 | 0; if (i4 >>> 0 > 63) { i8 = 45; break; } i5 = i4 | i5 << 6; i2 = i2 + 3 | 0; } else i2 = i6; } else i2 = i6; HEAP32[i7 >> 2] = i5; i4 = i7 + 4 | 0; i3 = i3 + -1 | 0; i8 = 6; continue; } if ((i8 | 0) == 18) { i2 = i6 + -1 | 0; i8 = 48; } else if ((i8 | 0) == 21) { i2 = i6 + -1 | 0; i8 = 48; } else if ((i8 | 0) == 24) { i2 = i6 + -1 | 0; i8 = 48; } else if ((i8 | 0) == 27) HEAP32[i9 >> 2] = i2; else if ((i8 | 0) == 39) { i2 = i2 + -1 | 0; i5 = i7; i8 = 48; } else if ((i8 | 0) == 42) { i2 = i2 + -1 | 0; i1 = i7; i8 = 53; } else if ((i8 | 0) == 45) { i2 = i2 + -1 | 0; i1 = i7; i8 = 53; } if ((i8 | 0) == 48) if (!i4) i8 = 49; else { i1 = i5; i8 = 53; } if ((i8 | 0) == 49) if (!(HEAP8[i2 >> 0] | 0)) { if (i5 | 0) { HEAP32[i5 >> 2] = 0; HEAP32[i9 >> 2] = 0; } i1 = i1 - i3 | 0; } else { i1 = i5; i8 = 53; } if ((i8 | 0) == 53) { i8 = ___errno_location() | 0; HEAP32[i8 >> 2] = 84; if (!i1) i1 = -1; else { HEAP32[i9 >> 2] = i2; i1 = -1; } } return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder11readImportsEv(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i5 = i14 + 36 | 0; i7 = i14 + 24 | 0; i8 = i14 + 12 | 0; i11 = i14; i12 = i4 + 12 | 0; if (HEAP8[i12 >> 0] | 0) { i13 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19525) | 0; i10 = __ZNKSt3__28ios_base6getlocEv(i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i10; i10 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i10 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i13, i10) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i13) | 0; } i6 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i4) | 0; if (HEAP8[i12 >> 0] | 0) { i13 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19427) | 0, i6) | 0; i10 = __ZNKSt3__28ios_base6getlocEv(i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i10; i10 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i10 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i10 >> 2] | 0) + 28 >> 2] & 31](i10, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i13, i10) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i13) | 0; } i9 = i11 + 11 | 0; i10 = i11 + 4 | 0; i3 = 0; while (1) { if (i3 >>> 0 >= i6 >>> 0) { i1 = 7; break; } if (HEAP8[i12 >> 0] | 0) { i13 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19433) | 0; i2 = __ZNKSt3__28ios_base6getlocEv(i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i2; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i2 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 31](i2, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i13, i2) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i13) | 0; } i13 = __Znwj(16) | 0; HEAP32[i13 >> 2] = 0; HEAP32[i13 + 4 >> 2] = 0; HEAP32[i13 + 8 >> 2] = 0; HEAP32[i13 + 12 >> 2] = 0; HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i8, 19540, 7); __ZNSt3__29to_stringEj(i11, i3); i2 = HEAP8[i9 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i8, i1 ? HEAP32[i11 >> 2] | 0 : i11, i1 ? HEAP32[i10 >> 2] | 0 : i2 & 255) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm4NameC2ERKNSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i5, i7); HEAP32[i13 >> 2] = HEAP32[i5 >> 2]; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i11); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8); i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i4) | 0; i2 = HEAP32[i4 >> 2] | 0; if (i1 >>> 0 >= (HEAP32[i2 + 4 >> 2] | 0) - (HEAP32[i2 >> 2] | 0) >> 2 >>> 0) { i1 = 14; break; } i2 = __ZN4wasm6Module15getFunctionTypeEj(i2, i1) | 0; HEAP32[i13 + 12 >> 2] = i2; if (!(HEAP32[i2 >> 2] | 0)) { i1 = 16; break; } i2 = __ZN4wasm17WasmBinaryBuilder15getInlineStringEv(i4) | 0; HEAP32[i13 + 4 >> 2] = i2; i2 = __ZN4wasm17WasmBinaryBuilder15getInlineStringEv(i4) | 0; HEAP32[i13 + 8 >> 2] = i2; __ZN4wasm6Module9addImportEPNS_6ImportE(HEAP32[i4 >> 2] | 0, i13); i3 = i3 + 1 | 0; } if ((i1 | 0) == 7) { STACKTOP = i14; return; } else if ((i1 | 0) == 14) ___assert_fail(19548, 18854, 1468, 19582); else if ((i1 | 0) == 16) ___assert_fail(19594, 18854, 1470, 19582); } function __ZN4wasm17WasmBinaryBuilder14readSignaturesEv(i3) { i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i14; i6 = i3 + 12 | 0; if (HEAP8[i6 >> 0] | 0) { i13 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19409) | 0; i12 = __ZNKSt3__28ios_base6getlocEv(i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i12; i12 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i12 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i13, i12) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i13) | 0; } i5 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i3) | 0; if (HEAP8[i6 >> 0] | 0) { i13 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19427) | 0, i5) | 0; i12 = __ZNKSt3__28ios_base6getlocEv(i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i12; i12 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i12 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i13, i12) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i13) | 0; } i1 = 0; L7 : while (1) { if (i1 >>> 0 >= i5 >>> 0) { i1 = 7; break; } if (HEAP8[i6 >> 0] | 0) { i13 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19433) | 0; i12 = __ZNKSt3__28ios_base6getlocEv(i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i12; i12 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i12 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i13, i12) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i13) | 0; } i7 = __Znwj(20) | 0; HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; HEAP32[i7 + 12 >> 2] = 0; HEAP32[i7 + 16 >> 2] = 0; if ((__ZN4wasm17WasmBinaryBuilder7getInt8Ev(i3) | 0) << 24 >> 24 != 64) { i1 = 11; break; } i8 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i3) | 0; if (HEAP8[i6 >> 0] | 0) { i13 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19496) | 0, i8) | 0; i12 = __ZNKSt3__28ios_base6getlocEv(i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i12; i12 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i12 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i13, i12) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i13) | 0; } i9 = i7 + 12 | 0; i10 = i7 + 16 | 0; i11 = i7 + 8 | 0; i2 = 0; while (1) { if ((i2 | 0) == (i8 | 0)) break; i12 = __ZN4wasm17WasmBinaryBuilder11getWasmTypeEv(i3) | 0; HEAP32[i4 >> 2] = i12; i13 = HEAP32[i9 >> 2] | 0; if (i13 >>> 0 < (HEAP32[i10 >> 2] | 0) >>> 0) { HEAP32[i13 >> 2] = i12; HEAP32[i9 >> 2] = i13 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i11, i4); i2 = i2 + 1 | 0; } switch (__ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i3) | 0) { case 0: { HEAP32[i7 + 4 >> 2] = 0; break; } case 1: { i13 = __ZN4wasm17WasmBinaryBuilder11getWasmTypeEv(i3) | 0; HEAP32[i7 + 4 >> 2] = i13; break; } default: { i1 = 22; break L7; } } __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(HEAP32[i3 >> 2] | 0, i7); i1 = i1 + 1 | 0; } if ((i1 | 0) == 7) { STACKTOP = i14; return; } else if ((i1 | 0) == 11) ___assert_fail(19442, 18854, 1442, 19481); else if ((i1 | 0) == 22) ___assert_fail(19509, 18854, 1452, 19481); } function __ZN4wasm22SExpressionWasmBuilder9makeBlockERNS_7ElementE(i12, i1) { i12 = i12 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i8 = i16 + 28 | 0; i9 = i16 + 24 | 0; i15 = i16 + 12 | 0; i10 = i16; i11 = i12 + 4 | 0; i14 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; HEAP32[i8 >> 2] = i14; HEAP32[i9 >> 2] = i1; HEAP32[i15 >> 2] = 0; i14 = i15 + 4 | 0; HEAP32[i14 >> 2] = 0; HEAP32[i15 + 8 >> 2] = 0; i5 = i15 + 8 | 0; i13 = i12 + 72 | 0; i6 = i12 + 76 | 0; i7 = i12 + 68 | 0; i2 = 0; i3 = 0; while (1) { if (i2 >>> 0 < i3 >>> 0) { HEAP32[i2 >> 2] = i1; HEAP32[i2 + 4 >> 2] = HEAP32[i8 >> 2]; HEAP32[i14 >> 2] = i2 + 8; } else __ZNSt3__26vectorINS_4pairIPN4wasm7ElementEPNS2_5BlockEEENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRS4_RS6_EEEvDpOT_(i15, i9, i8); i2 = HEAP32[i9 >> 2] | 0; i4 = (__ZN4wasm7Element4listEv(i2) | 0) + 8 | 0; if ((HEAP32[i4 >> 2] | 0) >>> 0 > 1 ? (i4 = __ZN4wasm7ElementixEj(i2, 1) | 0, (HEAP8[i4 >> 0] | 0) == 0) : 0) { i1 = (HEAP32[i8 >> 2] | 0) + 8 | 0; i4 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i1 >> 2] = i4; i1 = 2; } else { i1 = HEAP32[i8 >> 2] | 0; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i10, 35166, 5); i4 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i12, i10) | 0; HEAP32[i1 + 8 >> 2] = i4; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); i1 = 1; } i3 = (HEAP32[i8 >> 2] | 0) + 8 | 0; i4 = HEAP32[i13 >> 2] | 0; if ((i4 | 0) == (HEAP32[i6 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i7, i3); else { HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 4; } i4 = (__ZN4wasm7Element4listEv(i2) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i4 >> 2] | 0) >>> 0) break; i1 = __ZN4wasm7ElementixEj(i2, i1) | 0; i4 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i1, 0) | 0) | 0; if ((i4 | 0) != (HEAP32[11449] | 0)) break; i2 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i11 >> 2] | 0) | 0; HEAP32[i8 >> 2] = i2; HEAP32[i9 >> 2] = i1; i2 = HEAP32[i14 >> 2] | 0; i3 = HEAP32[i5 >> 2] | 0; } i2 = HEAP32[i15 >> 2] | 0; i3 = (HEAP32[i14 >> 2] | 0) - i2 >> 3; while (1) { i6 = i3 + -1 | 0; if ((i3 | 0) <= 0) { i1 = 17; break; } i4 = HEAP32[i2 + (i6 << 3) >> 2] | 0; i5 = HEAP32[i2 + (i6 << 3) + 4 >> 2] | 0; i11 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; L23 : do if ((HEAP32[i11 >> 2] | 0) >>> 0 > 1) { i1 = __ZN4wasm7ElementixEj(i4, 1) | 0; i1 = (HEAP8[i1 >> 0] | 0) == 0 ? 2 : 1; i2 = HEAP32[i15 >> 2] | 0; if ((i3 | 0) < ((HEAP32[i14 >> 2] | 0) - i2 >> 3 | 0)) { i11 = i5 + 12 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i11, HEAP32[i2 + (i3 << 3) + 4 >> 2] | 0); i1 = i1 + 1 | 0; i2 = i11; } else i2 = i5 + 12 | 0; while (1) { i11 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i11 >> 2] | 0) >>> 0) break L23; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i2, __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i12, __ZN4wasm7ElementixEj(i4, i1) | 0) | 0); i1 = i1 + 1 | 0; } } while (0); i2 = HEAP32[i13 >> 2] | 0; if ((HEAP32[i2 + -4 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) i1 = 0; else { i1 = 26; break; } while (1) { if ((i1 | 0) == -1) break; i11 = i1 + -1 | 0; HEAP32[i13 >> 2] = i2 + (i11 << 2); i1 = i11; } __ZN4wasm5Block8finalizeEv(i5); i3 = i6; i2 = HEAP32[i15 >> 2] | 0; } if ((i1 | 0) == 17) { i14 = HEAP32[i2 + 4 >> 2] | 0; __ZNSt3__213__vector_baseINS_4pairIPN4wasm7ElementEPNS2_5BlockEEENS_9allocatorIS7_EEED2Ev(i15); STACKTOP = i16; return i14 | 0; } else if ((i1 | 0) == 26) ___assert_fail(18289, 17152, 989, 18321); return 0; } function ___udivmoddi4(i5, i6, i8, i11, i13) { i5 = i5 | 0; i6 = i6 | 0; i8 = i8 | 0; i11 = i11 | 0; i13 = i13 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i9 = 0, i10 = 0, i12 = 0, i14 = 0, i15 = 0; i9 = i5; i4 = i6; i7 = i4; i2 = i8; i12 = i11; i3 = i12; if (!i7) { i1 = (i13 | 0) != 0; if (!i3) { if (i1) { HEAP32[i13 >> 2] = (i9 >>> 0) % (i2 >>> 0); HEAP32[i13 + 4 >> 2] = 0; } i12 = 0; i13 = (i9 >>> 0) / (i2 >>> 0) >>> 0; return (tempRet0 = i12, i13) | 0; } else { if (!i1) { i12 = 0; i13 = 0; return (tempRet0 = i12, i13) | 0; } HEAP32[i13 >> 2] = i5 | 0; HEAP32[i13 + 4 >> 2] = i6 & 0; i12 = 0; i13 = 0; return (tempRet0 = i12, i13) | 0; } } i1 = (i3 | 0) == 0; do if (i2) { if (!i1) { i1 = (Math_clz32(i3 | 0) | 0) - (Math_clz32(i7 | 0) | 0) | 0; if (i1 >>> 0 <= 31) { i10 = i1 + 1 | 0; i3 = 31 - i1 | 0; i6 = i1 - 31 >> 31; i2 = i10; i5 = i9 >>> (i10 >>> 0) & i6 | i7 << i3; i6 = i7 >>> (i10 >>> 0) & i6; i1 = 0; i3 = i9 << i3; break; } if (!i13) { i12 = 0; i13 = 0; return (tempRet0 = i12, i13) | 0; } HEAP32[i13 >> 2] = i5 | 0; HEAP32[i13 + 4 >> 2] = i4 | i6 & 0; i12 = 0; i13 = 0; return (tempRet0 = i12, i13) | 0; } i1 = i2 - 1 | 0; if (i1 & i2 | 0) { i3 = (Math_clz32(i2 | 0) | 0) + 33 - (Math_clz32(i7 | 0) | 0) | 0; i15 = 64 - i3 | 0; i10 = 32 - i3 | 0; i4 = i10 >> 31; i14 = i3 - 32 | 0; i6 = i14 >> 31; i2 = i3; i5 = i10 - 1 >> 31 & i7 >>> (i14 >>> 0) | (i7 << i10 | i9 >>> (i3 >>> 0)) & i6; i6 = i6 & i7 >>> (i3 >>> 0); i1 = i9 << i15 & i4; i3 = (i7 << i15 | i9 >>> (i14 >>> 0)) & i4 | i9 << i10 & i3 - 33 >> 31; break; } if (i13 | 0) { HEAP32[i13 >> 2] = i1 & i9; HEAP32[i13 + 4 >> 2] = 0; } if ((i2 | 0) == 1) { i14 = i4 | i6 & 0; i15 = i5 | 0 | 0; return (tempRet0 = i14, i15) | 0; } else { i15 = _llvm_cttz_i32(i2 | 0) | 0; i14 = i7 >>> (i15 >>> 0) | 0; i15 = i7 << 32 - i15 | i9 >>> (i15 >>> 0) | 0; return (tempRet0 = i14, i15) | 0; } } else { if (i1) { if (i13 | 0) { HEAP32[i13 >> 2] = (i7 >>> 0) % (i2 >>> 0); HEAP32[i13 + 4 >> 2] = 0; } i14 = 0; i15 = (i7 >>> 0) / (i2 >>> 0) >>> 0; return (tempRet0 = i14, i15) | 0; } if (!i9) { if (i13 | 0) { HEAP32[i13 >> 2] = 0; HEAP32[i13 + 4 >> 2] = (i7 >>> 0) % (i3 >>> 0); } i14 = 0; i15 = (i7 >>> 0) / (i3 >>> 0) >>> 0; return (tempRet0 = i14, i15) | 0; } i1 = i3 - 1 | 0; if (!(i1 & i3)) { if (i13 | 0) { HEAP32[i13 >> 2] = i5 | 0; HEAP32[i13 + 4 >> 2] = i1 & i7 | i6 & 0; } i14 = 0; i15 = i7 >>> ((_llvm_cttz_i32(i3 | 0) | 0) >>> 0); return (tempRet0 = i14, i15) | 0; } i1 = (Math_clz32(i3 | 0) | 0) - (Math_clz32(i7 | 0) | 0) | 0; if (i1 >>> 0 <= 30) { i6 = i1 + 1 | 0; i3 = 31 - i1 | 0; i2 = i6; i5 = i7 << i3 | i9 >>> (i6 >>> 0); i6 = i7 >>> (i6 >>> 0); i1 = 0; i3 = i9 << i3; break; } if (!i13) { i14 = 0; i15 = 0; return (tempRet0 = i14, i15) | 0; } HEAP32[i13 >> 2] = i5 | 0; HEAP32[i13 + 4 >> 2] = i4 | i6 & 0; i14 = 0; i15 = 0; return (tempRet0 = i14, i15) | 0; } while (0); if (!i2) { i7 = i3; i4 = 0; i3 = 0; } else { i10 = i8 | 0 | 0; i9 = i12 | i11 & 0; i7 = _i64Add(i10 | 0, i9 | 0, -1, -1) | 0; i8 = tempRet0; i4 = i3; i3 = 0; do { i11 = i4; i4 = i1 >>> 31 | i4 << 1; i1 = i3 | i1 << 1; i11 = i5 << 1 | i11 >>> 31 | 0; i12 = i5 >>> 31 | i6 << 1 | 0; _i64Subtract(i7 | 0, i8 | 0, i11 | 0, i12 | 0) | 0; i15 = tempRet0; i14 = i15 >> 31 | ((i15 | 0) < 0 ? -1 : 0) << 1; i3 = i14 & 1; i5 = _i64Subtract(i11 | 0, i12 | 0, i14 & i10 | 0, (((i15 | 0) < 0 ? -1 : 0) >> 31 | ((i15 | 0) < 0 ? -1 : 0) << 1) & i9 | 0) | 0; i6 = tempRet0; i2 = i2 - 1 | 0; } while ((i2 | 0) != 0); i7 = i4; i4 = 0; } i2 = 0; if (i13 | 0) { HEAP32[i13 >> 2] = i5; HEAP32[i13 + 4 >> 2] = i6; } i14 = (i1 | 0) >>> 31 | (i7 | i2) << 1 | (i2 << 1 | i1 >>> 31) & 0 | i4; i15 = (i1 << 1 | 0 >>> 31) & -2 | i3; return (tempRet0 = i14, i15) | 0; } function __ZNKSt3__29money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwe(i1, i21, i11, i25, i26, d4) { i1 = i1 | 0; i21 = i21 | 0; i11 = i11 | 0; i25 = i25 | 0; i26 = i26 | 0; d4 = +d4; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i22 = 0, i23 = 0, i24 = 0, i27 = 0, i28 = 0; i28 = STACKTOP; STACKTOP = STACKTOP + 1008 | 0; i14 = i28 + 8 | 0; i1 = i28; i3 = i28 + 896 | 0; i6 = i28 + 888 | 0; i2 = i28 + 488 | 0; i27 = i28 + 480 | 0; i15 = i28 + 892 | 0; i16 = i28 + 476 | 0; i17 = i28 + 472 | 0; i22 = i28 + 460 | 0; i23 = i28 + 448 | 0; i24 = i28 + 436 | 0; i13 = i28 + 432 | 0; i12 = i28 + 32 | 0; i18 = i28 + 24 | 0; i19 = i28 + 16 | 0; i20 = i28 + 20 | 0; HEAP32[i6 >> 2] = i3; HEAPF64[i14 >> 3] = d4; i3 = _snprintf(i3, 100, 40334, i14) | 0; if (i3 >>> 0 > 99) { i3 = __ZNSt3__26__clocEv() | 0; HEAPF64[i1 >> 3] = d4; i3 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i6, i3, 40334, i1) | 0; i1 = HEAP32[i6 >> 2] | 0; if (!i1) i1 = HEAP32[i6 >> 2] | 0; i2 = _malloc(i3 << 2) | 0; i5 = i2; if (!i2) { i2 = 0; i10 = i5; i9 = i1; } else { i10 = i5; i9 = i1; } } else { i10 = 0; i9 = 0; } i8 = __ZNKSt3__28ios_base6getlocEv(i25) | 0; HEAP32[i27 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i27, 47508) | 0; i7 = HEAP32[i6 >> 2] | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i8 >> 2] | 0) + 48 >> 2] & 7](i8, i7, i7 + i3 | 0, i2) | 0; if (!i3) i7 = 0; else i7 = (HEAP8[HEAP32[i6 >> 2] >> 0] | 0) == 45; HEAP32[i22 >> 2] = 0; HEAP32[i22 + 4 >> 2] = 0; HEAP32[i22 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i22 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i23 >> 2] = 0; HEAP32[i23 + 4 >> 2] = 0; HEAP32[i23 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i23 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i24 >> 2] = 0; HEAP32[i24 + 4 >> 2] = 0; HEAP32[i24 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i24 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__211__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri(i11, i7, i27, i15, i16, i17, i22, i23, i24, i13); i1 = HEAP32[i13 >> 2] | 0; if ((i3 | 0) > (i1 | 0)) { i11 = HEAP8[i24 + 8 + 3 >> 0] | 0; i5 = HEAP8[i23 + 8 + 3 >> 0] | 0; i5 = (i11 << 24 >> 24 < 0 ? HEAP32[i24 + 4 >> 2] | 0 : i11 & 255) + (i3 - i1 << 1 | 1) + (i5 << 24 >> 24 < 0 ? HEAP32[i23 + 4 >> 2] | 0 : i5 & 255) | 0; } else { i11 = HEAP8[i24 + 8 + 3 >> 0] | 0; i5 = HEAP8[i23 + 8 + 3 >> 0] | 0; i5 = (i11 << 24 >> 24 < 0 ? HEAP32[i24 + 4 >> 2] | 0 : i11 & 255) + 2 + (i5 << 24 >> 24 < 0 ? HEAP32[i23 + 4 >> 2] | 0 : i5 & 255) | 0; } i5 = i5 + i1 | 0; if (i5 >>> 0 > 100) { i5 = _malloc(i5 << 2) | 0; i6 = i5; if (!i5) { i5 = 0; i1 = HEAP32[i13 >> 2] | 0; } } else { i5 = i12; i6 = 0; } __ZNSt3__211__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i5, i18, i19, HEAP32[i25 + 4 >> 2] | 0, i2, i2 + (i3 << 2) | 0, i8, i7, i15, HEAP32[i16 >> 2] | 0, HEAP32[i17 >> 2] | 0, i22, i23, i24, i1); HEAP32[i20 >> 2] = HEAP32[i21 >> 2]; i21 = HEAP32[i18 >> 2] | 0; i1 = HEAP32[i19 >> 2] | 0; HEAP32[i14 >> 2] = HEAP32[i20 >> 2]; i1 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i14, i5, i21, i1, i25, i26) | 0; if (i6 | 0) _free(i6); __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i24); __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i23); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i22); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i27 >> 2] | 0) | 0; if (i10 | 0) _free(i10); if (i9 | 0) _free(i9); STACKTOP = i28; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder14maybeVisitLoadERPNS_10ExpressionEh(i4, i5, i1) { i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i7; do switch (i1 << 24 >> 24) { case 32: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 1; HEAP32[i2 + 4 >> 2] = 1; HEAP8[i2 + 9 >> 0] = 1; i1 = 1; i6 = 16; break; } case 33: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 1; HEAP32[i2 + 4 >> 2] = 1; HEAP8[i2 + 9 >> 0] = 0; i1 = 1; i6 = 16; break; } case 34: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 2; HEAP32[i2 + 4 >> 2] = 1; HEAP8[i2 + 9 >> 0] = 1; i1 = 2; i6 = 16; break; } case 35: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 2; HEAP32[i2 + 4 >> 2] = 1; HEAP8[i2 + 9 >> 0] = 0; i1 = 2; i6 = 16; break; } case 42: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 4; HEAP32[i2 + 4 >> 2] = 1; i1 = 4; i6 = 16; break; } case 36: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 1; HEAP32[i2 + 4 >> 2] = 2; HEAP8[i2 + 9 >> 0] = 1; i1 = 1; i6 = 16; break; } case 37: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 1; HEAP32[i2 + 4 >> 2] = 2; HEAP8[i2 + 9 >> 0] = 0; i1 = 1; i6 = 16; break; } case 38: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 2; HEAP32[i2 + 4 >> 2] = 2; HEAP8[i2 + 9 >> 0] = 1; i1 = 2; i6 = 16; break; } case 39: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 2; HEAP32[i2 + 4 >> 2] = 2; HEAP8[i2 + 9 >> 0] = 0; i1 = 2; i6 = 16; break; } case 40: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 4; HEAP32[i2 + 4 >> 2] = 2; HEAP8[i2 + 9 >> 0] = 1; i1 = 4; i6 = 16; break; } case 41: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 4; HEAP32[i2 + 4 >> 2] = 2; HEAP8[i2 + 9 >> 0] = 0; i1 = 4; i6 = 16; break; } case 43: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 8; HEAP32[i2 + 4 >> 2] = 2; i1 = 8; i6 = 16; break; } case 44: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 4; HEAP32[i2 + 4 >> 2] = 3; i1 = 4; i6 = 16; break; } case 45: { i2 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 8; HEAP32[i2 + 4 >> 2] = 4; i1 = 8; i6 = 16; break; } default: i1 = 0; } while (0); if ((i6 | 0) == 16) { if (HEAP8[i4 + 12 >> 0] | 0) { i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21264) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i1, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) | 0; i1 = HEAP8[i2 + 8 >> 0] | 0; } __ZN4wasm17WasmBinaryBuilder16readMemoryAccessERNS_7AddressEjS2_(i4, i2 + 16 | 0, i1 & 255, i2 + 12 | 0); i1 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i4) | 0; HEAP32[i2 + 20 >> 2] = i1; HEAP32[i5 >> 2] = i2; i1 = 1; } STACKTOP = i7; return i1 | 0; } function __ZNKSt3__29money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEce(i1, i21, i11, i25, i26, d4) { i1 = i1 | 0; i21 = i21 | 0; i11 = i11 | 0; i25 = i25 | 0; i26 = i26 | 0; d4 = +d4; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i22 = 0, i23 = 0, i24 = 0, i27 = 0, i28 = 0; i28 = STACKTOP; STACKTOP = STACKTOP + 384 | 0; i14 = i28 + 8 | 0; i1 = i28; i3 = i28 + 284 | 0; i6 = i28 + 72 | 0; i2 = i28 + 184 | 0; i27 = i28 + 68 | 0; i15 = i28 + 180 | 0; i16 = i28 + 177 | 0; i17 = i28 + 176 | 0; i22 = i28 + 56 | 0; i23 = i28 + 44 | 0; i24 = i28 + 32 | 0; i13 = i28 + 28 | 0; i12 = i28 + 76 | 0; i18 = i28 + 24 | 0; i19 = i28 + 16 | 0; i20 = i28 + 20 | 0; HEAP32[i6 >> 2] = i3; HEAPF64[i14 >> 3] = d4; i3 = _snprintf(i3, 100, 40334, i14) | 0; if (i3 >>> 0 > 99) { i3 = __ZNSt3__26__clocEv() | 0; HEAPF64[i1 >> 3] = d4; i3 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i6, i3, 40334, i1) | 0; i1 = HEAP32[i6 >> 2] | 0; if (!i1) i1 = HEAP32[i6 >> 2] | 0; i2 = _malloc(i3) | 0; i5 = i2; if (!i2) { i2 = 0; i10 = i5; i9 = i1; } else { i10 = i5; i9 = i1; } } else { i10 = 0; i9 = 0; } i8 = __ZNKSt3__28ios_base6getlocEv(i25) | 0; HEAP32[i27 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i27, 47476) | 0; i7 = HEAP32[i6 >> 2] | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i8 >> 2] | 0) + 32 >> 2] & 7](i8, i7, i7 + i3 | 0, i2) | 0; if (!i3) i7 = 0; else i7 = (HEAP8[HEAP32[i6 >> 2] >> 0] | 0) == 45; HEAP32[i22 >> 2] = 0; HEAP32[i22 + 4 >> 2] = 0; HEAP32[i22 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i22 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i23 >> 2] = 0; HEAP32[i23 + 4 >> 2] = 0; HEAP32[i23 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i23 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i24 >> 2] = 0; HEAP32[i24 + 4 >> 2] = 0; HEAP32[i24 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i24 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__211__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri(i11, i7, i27, i15, i16, i17, i22, i23, i24, i13); i1 = HEAP32[i13 >> 2] | 0; if ((i3 | 0) > (i1 | 0)) { i11 = HEAP8[i24 + 11 >> 0] | 0; i5 = HEAP8[i23 + 11 >> 0] | 0; i5 = (i11 << 24 >> 24 < 0 ? HEAP32[i24 + 4 >> 2] | 0 : i11 & 255) + (i3 - i1 << 1 | 1) + (i5 << 24 >> 24 < 0 ? HEAP32[i23 + 4 >> 2] | 0 : i5 & 255) | 0; } else { i11 = HEAP8[i24 + 11 >> 0] | 0; i5 = HEAP8[i23 + 11 >> 0] | 0; i5 = (i11 << 24 >> 24 < 0 ? HEAP32[i24 + 4 >> 2] | 0 : i11 & 255) + 2 + (i5 << 24 >> 24 < 0 ? HEAP32[i23 + 4 >> 2] | 0 : i5 & 255) | 0; } i5 = i5 + i1 | 0; if (i5 >>> 0 > 100) { i5 = _malloc(i5) | 0; i6 = i5; if (!i5) { i5 = 0; i1 = HEAP32[i13 >> 2] | 0; } } else { i5 = i12; i6 = 0; } __ZNSt3__211__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i5, i18, i19, HEAP32[i25 + 4 >> 2] | 0, i2, i2 + i3 | 0, i8, i7, i15, HEAP8[i16 >> 0] | 0, HEAP8[i17 >> 0] | 0, i22, i23, i24, i1); HEAP32[i20 >> 2] = HEAP32[i21 >> 2]; i21 = HEAP32[i18 >> 2] | 0; i1 = HEAP32[i19 >> 2] | 0; HEAP32[i14 >> 2] = HEAP32[i20 >> 2]; i1 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i14, i5, i21, i1, i25, i26) | 0; if (i6 | 0) _free(i6); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i24); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i23); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i22); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i27 >> 2] | 0) | 0; if (i10 | 0) _free(i10); if (i9 | 0) _free(i9); STACKTOP = i28; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder4readEv(i8) { i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i11 = i9 + 28 | 0; i12 = i9 + 24 | 0; i3 = i9 + 20 | 0; i4 = i9 + 16 | 0; i5 = i9; __ZN4wasm17WasmBinaryBuilder10readHeaderEv(i8); i14 = i8 + 16 | 0; i15 = i8 + 8 | 0; i6 = i5 + 4 | 0; i7 = i5 + 8 | 0; i2 = i5 + 12 | 0; i1 = HEAP32[i14 >> 2] | 0; L1 : while (1) { i16 = HEAP32[i15 >> 2] | 0; if (i1 >>> 0 >= ((HEAP32[i16 + 4 >> 2] | 0) - (HEAP32[i16 >> 2] | 0) | 0) >>> 0) { i1 = 33; break; } i16 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i8) | 0; HEAP32[i12 >> 2] = i16; HEAP32[i5 >> 2] = i12; HEAP32[i6 >> 2] = i8; HEAP32[i7 >> 2] = i3; HEAP32[i2 >> 2] = i4; do if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[805] | 0) | 0) __ZN4wasm17WasmBinaryBuilder9readStartEv(i8); else { if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[795] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder10readMemoryEv(i8); break; } if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[796] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder14readSignaturesEv(i8); break; } if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[797] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder11readImportsEv(i8); break; } if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[798] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder22readFunctionSignaturesEv(i8); break; } if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[799] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder13readFunctionsEv(i8); break; } if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[800] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder11readExportsEv(i8); break; } if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[801] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder11readGlobalsEv(i8); break; } if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[802] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder16readDataSegmentsEv(i8); break; } if (__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[803] | 0) | 0) { __ZN4wasm17WasmBinaryBuilder17readFunctionTableEv(i8); break; } if (!(__ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i5, HEAP32[804] | 0) | 0)) { i1 = 25; break L1; } __ZN4wasm17WasmBinaryBuilder9readNamesEv(i8); } while (0); i1 = HEAP32[i14 >> 2] | 0; if ((i1 | 0) != ((HEAP32[i3 >> 2] | 0) + (HEAP32[i4 >> 2] | 0) | 0)) { i1 = 31; break; } } if ((i1 | 0) == 25) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18799) | 0; i1 = HEAP32[i12 >> 2] | 0; i16 = HEAP32[i15 >> 2] | 0; if (((HEAP32[i14 >> 2] | 0) + -1 + i1 | 0) >>> 0 < ((HEAP32[i16 + 4 >> 2] | 0) - (HEAP32[i16 >> 2] | 0) | 0) >>> 0) { i10 = 0; i13 = i1; } else ___assert_fail(18820, 18854, 1263, 18872); while (1) { if (i10 >>> 0 >= i13 >>> 0) break; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(46772, HEAP8[(HEAP32[HEAP32[i15 >> 2] >> 2] | 0) + ((HEAP32[i14 >> 2] | 0) + i10) >> 0] | 0) | 0; i10 = i10 + 1 | 0; i13 = HEAP32[i12 >> 2] | 0; } i16 = __ZNKSt3__28ios_base6getlocEv(46772 + (HEAP32[(HEAP32[11693] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i11 >> 2] = i16; i16 = __ZNKSt3__26locale9use_facetERNS0_2idE(i11, 47476) | 0; i16 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i16 >> 2] | 0) + 28 >> 2] & 31](i16, 10) | 0; __ZNSt3__26localeD2Ev(i11); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(46772, i16) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(46772) | 0; _abort(); } else if ((i1 | 0) == 31) ___assert_fail(18877, 18854, 1268, 18872); else if ((i1 | 0) == 33) { __ZN4wasm17WasmBinaryBuilder16processFunctionsEv(i8); STACKTOP = i9; return; } } function __ZN4wasm22SExpressionWasmBuilder11parseMemoryERNS_7ElementE(i10, i11) { i10 = i10 | 0; i11 = i11 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0; i18 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i9 = i18 + 48 | 0; i8 = i18 + 44 | 0; i12 = i18 + 28 | 0; i13 = i18 + 24 | 0; i3 = i18 + 32 | 0; i14 = i18 + 12 | 0; i15 = i18 + 8 | 0; i16 = i18 + 4 | 0; i17 = i18; HEAP8[i10 + 81 >> 0] = 1; i6 = (HEAP32[i10 >> 2] | 0) + 72 | 0; i7 = _atoi(__ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i11, 1) | 0) | 0) | 0; __ZN4wasm7AddressaSEy(i6, i7, ((i7 | 0) < 0) << 31 >> 31) | 0; i7 = (__ZN4wasm7Element4listEv(i11) | 0) + 8 | 0; L1 : do if ((HEAP32[i7 >> 2] | 0) != 2) { i7 = __ZN4wasm7ElementixEj(i11, 2) | 0; do if (!(HEAP8[i7 >> 0] | 0)) { i1 = _atoll(__ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i11, 2) | 0) | 0) | 0; i2 = tempRet0; if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 65535) { i18 = ___cxa_allocate_exception(20) | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 18643, 27); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i18, i3); ___cxa_throw(i18 | 0, 8, 154); } else { __ZN4wasm7AddressaSEy((HEAP32[i10 >> 2] | 0) + 76 | 0, i1, i2) | 0; i1 = 3; break; } } else i1 = 2; while (0); i6 = i14 + 4 | 0; i7 = i14 + 8 | 0; while (1) { i5 = (__ZN4wasm7Element4listEv(i11) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break L1; i4 = __ZN4wasm7ElementixEj(i11, i1) | 0; i5 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i4, 0) | 0) | 0; if ((i5 | 0) != (HEAP32[11440] | 0)) break; i2 = __ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i4, 2) | 0) | 0; i3 = _strlen(i2) | 0; if (!i3) { i5 = HEAP32[i10 >> 2] | 0; i2 = _atoi(__ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i4, 1) | 0) | 0) | 0; HEAP32[i14 >> 2] = i2; HEAP32[i15 >> 2] = 0; i3 = i5 + 84 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i5 + 88 >> 2] | 0) >>> 0) { __ZN4wasm7AddressC2Ey(i12, i2, ((i2 | 0) < 0) << 31 >> 31); i5 = HEAP32[i15 >> 2] | 0; __ZN4wasm7AddressC2Ey(i13, i5, ((i5 | 0) < 0) << 31 >> 31); HEAP32[i8 >> 2] = HEAP32[i12 >> 2]; HEAP32[i9 >> 2] = HEAP32[i13 >> 2]; __ZN4wasm6Memory7SegmentC2ENS_7AddressEPKcS2_(i4, i8, 53494, i9); HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 16; } else __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJiRA1_KciEEEvDpOT_(i5 + 80 | 0, i14, 53494, i15); } else { HEAP32[i14 >> 2] = 0; HEAP32[i6 >> 2] = 0; HEAP32[i7 >> 2] = 0; __ZN4wasm22SExpressionWasmBuilder14stringToBinaryEPKcjRNSt3__26vectorIcNS3_9allocatorIcEEEE(i10, i2, i3, i14); i5 = HEAP32[i10 >> 2] | 0; i2 = _atoi(__ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i4, 1) | 0) | 0) | 0; HEAP32[i15 >> 2] = i2; i3 = HEAP32[i14 >> 2] | 0; HEAP32[i16 >> 2] = i3; HEAP32[i17 >> 2] = (HEAP32[i6 >> 2] | 0) - i3; i3 = i5 + 84 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i5 + 88 >> 2] | 0) >>> 0) { __ZN4wasm7AddressC2Ey(i12, i2, ((i2 | 0) < 0) << 31 >> 31); i5 = HEAP32[i16 >> 2] | 0; __ZN4wasm7AddressC2Ey(i13, HEAP32[i17 >> 2] | 0, 0); HEAP32[i8 >> 2] = HEAP32[i12 >> 2]; HEAP32[i9 >> 2] = HEAP32[i13 >> 2]; __ZN4wasm6Memory7SegmentC2ENS_7AddressEPKcS2_(i4, i8, i5, i9); HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 16; } else __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJiPcjEEEvDpOT_(i5 + 80 | 0, i15, i16, i17); __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i14); } i1 = i1 + 1 | 0; } ___assert_fail(18671, 17152, 1324, 18697); } while (0); STACKTOP = i18; return; } function __ZNKSt3__29money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwRKNS_12basic_stringIwS3_NS_9allocatorIwEEEE(i1, i18, i2, i22, i23, i24) { i1 = i1 | 0; i18 = i18 | 0; i2 = i2 | 0; i22 = i22 | 0; i23 = i23 | 0; i24 = i24 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0; i26 = STACKTOP; STACKTOP = STACKTOP + 480 | 0; i10 = i26 + 468 | 0; i25 = i26 + 464 | 0; i15 = i26 + 472 | 0; i16 = i26 + 460 | 0; i17 = i26 + 456 | 0; i19 = i26 + 444 | 0; i20 = i26 + 432 | 0; i21 = i26 + 420 | 0; i7 = i26 + 416 | 0; i5 = i26 + 16 | 0; i11 = i26 + 8 | 0; i12 = i26 + 4 | 0; i13 = i26; i14 = __ZNKSt3__28ios_base6getlocEv(i22) | 0; HEAP32[i25 >> 2] = i14; i14 = __ZNKSt3__26locale9use_facetERNS0_2idE(i25, 47508) | 0; i8 = i24 + 8 + 3 | 0; i9 = HEAP8[i8 >> 0] | 0; i1 = i9 << 24 >> 24 < 0; i6 = i24 + 4 | 0; if (!((i1 ? HEAP32[i6 >> 2] | 0 : i9 & 255) | 0)) i9 = 0; else { i9 = HEAP32[(i1 ? HEAP32[i24 >> 2] | 0 : i24) >> 2] | 0; i9 = (i9 | 0) == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i14 >> 2] | 0) + 44 >> 2] & 31](i14, 45) | 0); }; HEAP32[i19 >> 2] = 0; HEAP32[i19 + 4 >> 2] = 0; HEAP32[i19 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i19 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i21 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__211__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri(i2, i9, i25, i15, i16, i17, i19, i20, i21, i7); i1 = HEAP8[i8 >> 0] | 0; i4 = HEAP32[i6 >> 2] | 0; i3 = i1 << 24 >> 24 < 0 ? i4 : i1 & 255; i2 = HEAP32[i7 >> 2] | 0; if ((i3 | 0) > (i2 | 0)) { i28 = HEAP8[i21 + 8 + 3 >> 0] | 0; i27 = HEAP8[i20 + 8 + 3 >> 0] | 0; i3 = (i28 << 24 >> 24 < 0 ? HEAP32[i21 + 4 >> 2] | 0 : i28 & 255) + (i3 - i2 << 1 | 1) + (i27 << 24 >> 24 < 0 ? HEAP32[i20 + 4 >> 2] | 0 : i27 & 255) | 0; } else { i28 = HEAP8[i21 + 8 + 3 >> 0] | 0; i3 = HEAP8[i20 + 8 + 3 >> 0] | 0; i3 = (i28 << 24 >> 24 < 0 ? HEAP32[i21 + 4 >> 2] | 0 : i28 & 255) + 2 + (i3 << 24 >> 24 < 0 ? HEAP32[i20 + 4 >> 2] | 0 : i3 & 255) | 0; } i3 = i3 + i2 | 0; if (i3 >>> 0 > 100) { i3 = _malloc(i3 << 2) | 0; i5 = i3; if (!i3) { i3 = 0; i4 = HEAP32[i6 >> 2] | 0; i2 = HEAP32[i7 >> 2] | 0; i1 = HEAP8[i8 >> 0] | 0; } } else { i3 = i5; i5 = 0; } i28 = i1 << 24 >> 24 < 0; i27 = i28 ? HEAP32[i24 >> 2] | 0 : i24; __ZNSt3__211__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i(i3, i11, i12, HEAP32[i22 + 4 >> 2] | 0, i27, i27 + ((i28 ? i4 : i1 & 255) << 2) | 0, i14, i9, i15, HEAP32[i16 >> 2] | 0, HEAP32[i17 >> 2] | 0, i19, i20, i21, i2); HEAP32[i13 >> 2] = HEAP32[i18 >> 2]; i28 = HEAP32[i11 >> 2] | 0; i1 = HEAP32[i12 >> 2] | 0; HEAP32[i10 >> 2] = HEAP32[i13 >> 2]; i1 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i3, i28, i1, i22, i23) | 0; if (i5 | 0) _free(i5); __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i21); __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i25 >> 2] | 0) | 0; STACKTOP = i26; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_123parse_prefix_expressionINS0_2DbEEEPKcS4_S4_RKNT_6StringERS5_(i1, i2, i5, i3) { i1 = i1 | 0; i2 = i2 | 0; i5 = i5 | 0; i3 = i3 | 0; var i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0; i17 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i13 = i17 + 36 | 0; i14 = i17 + 24 | 0; i15 = i17 + 12 | 0; i16 = i17; i12 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i1, i2, i3) | 0; if ((i12 | 0) != (i1 | 0) ? (i4 = i3 + 4 | 0, i11 = HEAP32[i4 >> 2] | 0, (HEAP32[i3 >> 2] | 0) != (i11 | 0)) : 0) { i10 = i11 + -24 | 0; __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i15, i5, 42453); __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i16, (HEAP32[i4 >> 2] | 0) + -24 | 0); i2 = HEAP8[i16 + 11 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i15, i1 ? HEAP32[i16 >> 2] | 0 : i16, i1 ? HEAP32[i16 + 4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i14 >> 2] = HEAP32[i2 >> 2]; HEAP32[i14 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i14 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i14, 42358) | 0; HEAP32[i13 >> 2] = HEAP32[i2 >> 2]; HEAP32[i13 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i13 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i7 = i10 + 11 | 0; if ((HEAP8[i7 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i11 + -20 >> 2] = 0; i1 = HEAP8[i7 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i8 = 0; i5 = (HEAP32[i11 + -16 >> 2] & 2147483647) + -1 | 0; i4 = 1; } else i9 = 13; } else { HEAP8[i10 >> 0] = 0; HEAP8[i7 >> 0] = 0; i1 = 0; i9 = 13; } if ((i9 | 0) == 13) { i8 = i1 & 255; i5 = 10; i4 = 0; } i2 = i8 >>> 0 < 11; i6 = i2 ? 10 : (i8 + 16 & 496) + -1 | 0; L19 : do if ((i6 | 0) != (i5 | 0)) { do if (i2) { i2 = HEAP32[i10 >> 2] | 0; if (i4) { i1 = 0; i3 = i10; i9 = 21; } else { i4 = 0; i5 = 1; i3 = i10; i9 = 22; } } else { i3 = _malloc(i6 + 1 | 0) | 0; if (i6 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0) break L19; if (i4) { i1 = 1; i2 = HEAP32[i10 >> 2] | 0; i9 = 21; break; } else { i4 = 1; i5 = 0; i2 = i10; i9 = 22; break; } } while (0); if ((i9 | 0) == 21) { i4 = i1; i5 = 1; i1 = HEAP32[i11 + -20 >> 2] | 0; } else if ((i9 | 0) == 22) i1 = i1 & 255; i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i3 | 0, i2 | 0, i1 | 0) | 0; if (i5) _free(i2); if (i4) { HEAP32[i11 + -16 >> 2] = i6 + 1 | -2147483648; HEAP32[i11 + -20 >> 2] = i8; HEAP32[i10 >> 2] = i3; break; } else { HEAP8[i7 >> 0] = i8; break; } } while (0); HEAP32[i10 >> 2] = HEAP32[i13 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i13 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i13 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i13 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i13); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i14); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i16); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i15); i1 = i12; } STACKTOP = i17; return i1 | 0; } function __ZNKSt3__29money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEcRKNS_12basic_stringIcS3_NS_9allocatorIcEEEE(i1, i18, i2, i22, i23, i24) { i1 = i1 | 0; i18 = i18 | 0; i2 = i2 | 0; i22 = i22 | 0; i23 = i23 | 0; i24 = i24 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i25 = 0, i26 = 0, i27 = 0, i28 = 0; i26 = STACKTOP; STACKTOP = STACKTOP + 176 | 0; i10 = i26 + 56 | 0; i25 = i26 + 52 | 0; i15 = i26 + 164 | 0; i16 = i26 + 161 | 0; i17 = i26 + 160 | 0; i19 = i26 + 40 | 0; i20 = i26 + 28 | 0; i21 = i26 + 16 | 0; i6 = i26 + 12 | 0; i5 = i26 + 60 | 0; i11 = i26 + 8 | 0; i12 = i26 + 4 | 0; i13 = i26; i14 = __ZNKSt3__28ios_base6getlocEv(i22) | 0; HEAP32[i25 >> 2] = i14; i14 = __ZNKSt3__26locale9use_facetERNS0_2idE(i25, 47476) | 0; i7 = i24 + 11 | 0; i9 = HEAP8[i7 >> 0] | 0; i1 = i9 << 24 >> 24 < 0; i8 = i24 + 4 | 0; if (!((i1 ? HEAP32[i8 >> 2] | 0 : i9 & 255) | 0)) i9 = 0; else { i9 = HEAP8[(i1 ? HEAP32[i24 >> 2] | 0 : i24) >> 0] | 0; i9 = i9 << 24 >> 24 == (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i14 >> 2] | 0) + 28 >> 2] & 31](i14, 45) | 0) << 24 >> 24; }; HEAP32[i19 >> 2] = 0; HEAP32[i19 + 4 >> 2] = 0; HEAP32[i19 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i19 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i20 >> 2] = 0; HEAP32[i20 + 4 >> 2] = 0; HEAP32[i20 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i20 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i21 >> 2] = 0; HEAP32[i21 + 4 >> 2] = 0; HEAP32[i21 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i21 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__211__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri(i2, i9, i25, i15, i16, i17, i19, i20, i21, i6); i2 = HEAP8[i7 >> 0] | 0; i1 = HEAP32[i8 >> 2] | 0; i3 = i2 << 24 >> 24 < 0 ? i1 : i2 & 255; i4 = HEAP32[i6 >> 2] | 0; if ((i3 | 0) > (i4 | 0)) { i28 = HEAP8[i21 + 11 >> 0] | 0; i27 = HEAP8[i20 + 11 >> 0] | 0; i3 = (i28 << 24 >> 24 < 0 ? HEAP32[i21 + 4 >> 2] | 0 : i28 & 255) + (i3 - i4 << 1 | 1) + (i27 << 24 >> 24 < 0 ? HEAP32[i20 + 4 >> 2] | 0 : i27 & 255) | 0; } else { i28 = HEAP8[i21 + 11 >> 0] | 0; i3 = HEAP8[i20 + 11 >> 0] | 0; i3 = (i28 << 24 >> 24 < 0 ? HEAP32[i21 + 4 >> 2] | 0 : i28 & 255) + 2 + (i3 << 24 >> 24 < 0 ? HEAP32[i20 + 4 >> 2] | 0 : i3 & 255) | 0; } i3 = i3 + i4 | 0; if (i3 >>> 0 > 100) { i3 = _malloc(i3) | 0; i5 = i3; if (!i3) { i3 = 0; i4 = HEAP32[i6 >> 2] | 0; i2 = HEAP8[i7 >> 0] | 0; i1 = HEAP32[i8 >> 2] | 0; } } else { i3 = i5; i5 = 0; } i28 = i2 << 24 >> 24 < 0; i27 = i28 ? HEAP32[i24 >> 2] | 0 : i24; __ZNSt3__211__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i(i3, i11, i12, HEAP32[i22 + 4 >> 2] | 0, i27, i27 + (i28 ? i1 : i2 & 255) | 0, i14, i9, i15, HEAP8[i16 >> 0] | 0, HEAP8[i17 >> 0] | 0, i19, i20, i21, i4); HEAP32[i13 >> 2] = HEAP32[i18 >> 2]; i28 = HEAP32[i11 >> 2] | 0; i1 = HEAP32[i12 >> 2] | 0; HEAP32[i10 >> 2] = HEAP32[i13 >> 2]; i1 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i3, i28, i1, i22, i23) | 0; if (i5 | 0) _free(i5); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i21); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i20); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i19); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i25 >> 2] | 0) | 0; STACKTOP = i26; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_126parse_base_unresolved_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i4, i6) { i1 = i1 | 0; i4 = i4 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i5 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i8; L1 : do if ((i4 - i1 | 0) > 1) { i2 = HEAP8[i1 >> 0] | 0; switch (i2 << 24 >> 24) { case 100: case 111: { if ((HEAP8[i1 + 1 >> 0] | 0) == 110) { i5 = i1 + 2 | 0; if (i2 << 24 >> 24 == 111) { i2 = __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_RT_(i5, i4, i6) | 0; if ((i2 | 0) == (i5 | 0)) break L1; i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i2, i4, i6) | 0; if ((i1 | 0) == (i2 | 0)) { i1 = i2; break L1; } i5 = i6 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i6 >> 2] | 0) | 0) / 24 | 0) >>> 0 < 2) break L1; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i7, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i6 = i4 + -24 | 0; HEAP32[i5 >> 2] = i6; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6); i4 = HEAP32[i5 >> 2] | 0; } i6 = HEAP8[i7 + 11 >> 0] | 0; i5 = i6 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -48 | 0, i5 ? HEAP32[i7 >> 2] | 0 : i7, i5 ? HEAP32[i7 + 4 >> 2] | 0 : i6 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); break L1; } else { if ((i5 | 0) != (i4 | 0)) { i2 = __ZN10__cxxabiv112_GLOBAL__N_121parse_unresolved_typeINS0_2DbEEEPKcS4_S4_RT_(i5, i4, i6) | 0; if ((i2 | 0) == (i5 | 0)) i2 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i5, i4, i6) | 0; if ((i2 | 0) != (i5 | 0) ? (i3 = HEAP32[i6 + 4 >> 2] | 0, (HEAP32[i6 >> 2] | 0) != (i3 | 0)) : 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i3 + -24 | 0, 0, 42667) | 0; else i2 = i5; } else i2 = i4; i1 = (i2 | 0) == (i5 | 0) ? i1 : i2; break L1; } } break; } default: {} } i2 = __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i1, i4, i6) | 0; if ((i2 | 0) == (i1 | 0)) { i2 = __ZN10__cxxabiv112_GLOBAL__N_119parse_operator_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i4, i6) | 0; if ((i2 | 0) != (i1 | 0)) { i1 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i2, i4, i6) | 0; if ((i1 | 0) != (i2 | 0)) { i5 = i6 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i6 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i7, i2 + -24 | 0); i2 = HEAP32[i5 >> 2] | 0; i3 = i2 + -24 | 0; i4 = i2; while (1) { if ((i4 | 0) == (i3 | 0)) break; i6 = i4 + -24 | 0; HEAP32[i5 >> 2] = i6; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6); i4 = HEAP32[i5 >> 2] | 0; } i6 = HEAP8[i7 + 11 >> 0] | 0; i5 = i6 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2 + -48 | 0, i5 ? HEAP32[i7 >> 2] | 0 : i7, i5 ? HEAP32[i7 + 4 >> 2] | 0 : i6 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); } } else i1 = i2; } } else i1 = i2; } while (0); STACKTOP = i8; return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterIdentERNS3_4FragERPcPKc(i13, i7, i15, i16) { i13 = i13 | 0; i7 = i7 | 0; i15 = i15 | 0; i16 = i16 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i17 = 0, i18 = 0, i19 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i17 = i19 + 64 | 0; i6 = i19 + 36 | 0; i2 = i19 + 56 | 0; i3 = i19 + 48 | 0; i4 = i19 + 40 | 0; i5 = i19 + 32 | 0; i11 = i19 + 28 | 0; i12 = i19 + 24 | 0; i8 = i19 + 16 | 0; i9 = i19 + 8 | 0; i14 = i19; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15); i1 = HEAP32[i15 >> 2] | 0; i10 = HEAP8[i1 >> 0] | 0; L1 : do switch (i10 << 24 >> 24) { case 40: { i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i13, i7) | 0; HEAP32[i3 >> 2] = i1; HEAP32[i17 >> 2] = HEAP32[i3 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(i13, i17, i15) | 0; HEAP8[i2 >> 0] = 1; HEAP32[i2 + 4 >> 2] = i1; HEAP32[i17 >> 2] = HEAP32[i2 >> 2]; HEAP32[i17 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i13, i17, i15, i16) | 0; break; } case 91: { i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i13, i7) | 0; HEAP32[i5 >> 2] = i1; HEAP32[i17 >> 2] = HEAP32[i5 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseIndexingES1_RPc(i13, i17, i15) | 0; HEAP8[i4 >> 0] = 1; HEAP32[i4 + 4 >> 2] = i1; HEAP32[i17 >> 2] = HEAP32[i4 >> 2]; HEAP32[i17 + 4 >> 2] = HEAP32[i4 + 4 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i13, i17, i15, i16) | 0; break; } case 58: { i10 = HEAP32[i13 + 4 >> 2] | 0; if ((HEAP32[i10 + -8 >> 2] | 0) != (HEAP32[i10 + -12 >> 2] | 0)) { i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i13, i7) | 0; i18 = 12; break L1; } HEAP32[i15 >> 2] = i1 + 1; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i15); if ((HEAP8[HEAP32[i15 >> 2] >> 0] | 0) == 123) i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBlockERPc(i13, i15) | 0; else i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i13, i15, i16) | 0; HEAP32[i11 >> 2] = HEAP32[i7 >> 2]; HEAP32[i12 >> 2] = i1; HEAP32[i6 >> 2] = HEAP32[i11 >> 2]; HEAP32[i17 >> 2] = HEAP32[i12 >> 2]; i1 = __ZN6cashew12ValueBuilder9makeLabelENS_7IStringENS_3RefE(i6, i17) | 0; break; } default: { i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i13, i7) | 0; if (i10 << 24 >> 24 == 46) { HEAP32[i9 >> 2] = i1; HEAP32[i17 >> 2] = HEAP32[i9 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseDottingES1_RPc(i13, i17, i15) | 0; HEAP8[i8 >> 0] = 1; HEAP32[i8 + 4 >> 2] = i1; HEAP32[i17 >> 2] = HEAP32[i8 >> 2]; HEAP32[i17 + 4 >> 2] = HEAP32[i8 + 4 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i13, i17, i15, i16) | 0; } else i18 = 12; } } while (0); if ((i18 | 0) == 12) { HEAP8[i14 >> 0] = 1; HEAP32[i14 + 4 >> 2] = i1; HEAP32[i17 >> 2] = HEAP32[i14 >> 2]; HEAP32[i17 + 4 >> 2] = HEAP32[i14 + 4 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i13, i17, i15, i16) | 0; } STACKTOP = i19; return i1 | 0; } function __ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i2, i14, i15, i6, i13) { i2 = i2 | 0; i14 = i14 | 0; i15 = i15 | 0; i6 = i6 | 0; i13 = i13 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; L1 : do if ((i2 | 0) == (HEAP32[i14 + 8 >> 2] | 0)) { if ((HEAP32[i14 + 4 >> 2] | 0) == (i15 | 0) ? (i1 = i14 + 28 | 0, (HEAP32[i1 >> 2] | 0) != 1) : 0) HEAP32[i1 >> 2] = i6; } else { if ((i2 | 0) != (HEAP32[i14 >> 2] | 0)) { i12 = HEAP32[i2 + 12 >> 2] | 0; i4 = i2 + 16 + (i12 << 3) | 0; __ZNK10__cxxabiv122__base_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i2 + 16 | 0, i14, i15, i6, i13); i1 = i2 + 24 | 0; if ((i12 | 0) <= 1) break; i2 = HEAP32[i2 + 8 >> 2] | 0; if ((i2 & 2 | 0) == 0 ? (i5 = i14 + 36 | 0, (HEAP32[i5 >> 2] | 0) != 1) : 0) { if (!(i2 & 1)) { i2 = i14 + 54 | 0; while (1) { if (HEAP8[i2 >> 0] | 0) break L1; if ((HEAP32[i5 >> 2] | 0) == 1) break L1; __ZNK10__cxxabiv122__base_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i1, i14, i15, i6, i13); i1 = i1 + 8 | 0; if (i1 >>> 0 >= i4 >>> 0) break L1; } } i2 = i14 + 24 | 0; i3 = i14 + 54 | 0; while (1) { if (HEAP8[i3 >> 0] | 0) break L1; if ((HEAP32[i5 >> 2] | 0) == 1 ? (HEAP32[i2 >> 2] | 0) == 1 : 0) break L1; __ZNK10__cxxabiv122__base_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i1, i14, i15, i6, i13); i1 = i1 + 8 | 0; if (i1 >>> 0 >= i4 >>> 0) break L1; } } i2 = i14 + 54 | 0; while (1) { if (HEAP8[i2 >> 0] | 0) break L1; __ZNK10__cxxabiv122__base_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i1, i14, i15, i6, i13); i1 = i1 + 8 | 0; if (i1 >>> 0 >= i4 >>> 0) break L1; } } if ((HEAP32[i14 + 16 >> 2] | 0) != (i15 | 0) ? (i12 = i14 + 20 | 0, (HEAP32[i12 >> 2] | 0) != (i15 | 0)) : 0) { HEAP32[i14 + 32 >> 2] = i6; i11 = i14 + 44 | 0; if ((HEAP32[i11 >> 2] | 0) == 4) break; i5 = i2 + 16 + (HEAP32[i2 + 12 >> 2] << 3) | 0; i6 = i14 + 52 | 0; i7 = i14 + 53 | 0; i9 = i14 + 54 | 0; i8 = i2 + 8 | 0; i10 = i14 + 24 | 0; i1 = 0; i3 = i2 + 16 | 0; i4 = 0; L34 : while (1) { if (i3 >>> 0 >= i5 >>> 0) { i2 = 20; break; } HEAP8[i6 >> 0] = 0; HEAP8[i7 >> 0] = 0; __ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i3, i14, i15, i15, 1, i13); if (HEAP8[i9 >> 0] | 0) { i2 = 20; break; } do if (HEAP8[i7 >> 0] | 0) { if (!(HEAP8[i6 >> 0] | 0)) if (!(HEAP32[i8 >> 2] & 1)) { i1 = 1; i2 = 20; break L34; } else { i1 = 1; i2 = i4; break; } if ((HEAP32[i10 >> 2] | 0) == 1) { i2 = 25; break L34; } if (!(HEAP32[i8 >> 2] & 2)) { i2 = 25; break L34; } else { i1 = 1; i2 = 1; } } else i2 = i4; while (0); i3 = i3 + 8 | 0; i4 = i2; } do if ((i2 | 0) == 20) { if ((!i4 ? (HEAP32[i12 >> 2] = i15, i15 = i14 + 40 | 0, HEAP32[i15 >> 2] = (HEAP32[i15 >> 2] | 0) + 1, (HEAP32[i14 + 36 >> 2] | 0) == 1) : 0) ? (HEAP32[i10 >> 2] | 0) == 2 : 0) { HEAP8[i9 >> 0] = 1; if (i1) { i2 = 25; break; } else { i1 = 4; break; } } if (i1) i2 = 25; else i1 = 4; } while (0); if ((i2 | 0) == 25) i1 = 3; HEAP32[i11 >> 2] = i1; break; } if ((i6 | 0) == 1) HEAP32[i14 + 32 >> 2] = 1; } while (0); return; } function __ZNSt3__2L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i1, i11, i12, i2, i13, i14, i15, i3) { i1 = i1 | 0; i11 = i11 | 0; i12 = i12 | 0; i2 = i2 | 0; i13 = i13 | 0; i14 = i14 | 0; i15 = i15 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i16 = 0; HEAP32[i12 >> 2] = i1; HEAP32[i14 >> 2] = i2; if (i3 & 4) { i1 = HEAP32[i12 >> 2] | 0; i2 = i11; if ((((i2 - i1 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == -17 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == -69 : 0) ? (HEAP8[i1 + 2 >> 0] | 0) == -65 : 0) HEAP32[i12 >> 2] = i1 + 3; } else i2 = i11; i9 = i13; L9 : while (1) { i5 = HEAP32[i12 >> 2] | 0; i1 = i5 >>> 0 < i11 >>> 0; if (!i1) { i16 = 41; break; } i10 = HEAP32[i14 >> 2] | 0; if (i10 >>> 0 >= i13 >>> 0) { i16 = 41; break; } i4 = HEAP8[i5 >> 0] | 0; i8 = i4 & 255; if (i8 >>> 0 > i15 >>> 0) { i1 = 2; break; } do if (i4 << 24 >> 24 > -1) { HEAP16[i10 >> 1] = i4 & 255; HEAP32[i12 >> 2] = i5 + 1; } else { if ((i4 & 255) < 194) { i1 = 2; break L9; } if ((i4 & 255) < 224) { if ((i2 - i5 | 0) < 2) { i1 = 1; break L9; } i1 = HEAPU8[i5 + 1 >> 0] | 0; if ((i1 & 192 | 0) != 128) { i1 = 2; break L9; } i1 = i1 & 63 | i8 << 6 & 1984; if (i1 >>> 0 > i15 >>> 0) { i1 = 2; break L9; } HEAP16[i10 >> 1] = i1; HEAP32[i12 >> 2] = i5 + 2; break; } if ((i4 & 255) < 240) { if ((i2 - i5 | 0) < 3) { i1 = 1; break L9; } i3 = HEAP8[i5 + 1 >> 0] | 0; i1 = HEAP8[i5 + 2 >> 0] | 0; switch (i4 << 24 >> 24) { case -32: { if ((i3 & -32) << 24 >> 24 != -96) { i1 = 2; break L9; } break; } case -19: { if ((i3 & -32) << 24 >> 24 != -128) { i1 = 2; break L9; } break; } default: if ((i3 & -64) << 24 >> 24 != -128) { i1 = 2; break L9; } } i1 = i1 & 255; if ((i1 & 192 | 0) != 128) { i1 = 2; break L9; } i1 = (i3 & 255) << 6 & 4032 | i8 << 12 | i1 & 63; if ((i1 & 65535) >>> 0 > i15 >>> 0) { i1 = 2; break L9; } HEAP16[i10 >> 1] = i1; HEAP32[i12 >> 2] = i5 + 3; break; } if ((i4 & 255) >= 245) { i1 = 2; break L9; } if ((i2 - i5 | 0) < 4) { i1 = 1; break L9; } i6 = HEAP8[i5 + 1 >> 0] | 0; i1 = HEAP8[i5 + 2 >> 0] | 0; i3 = HEAP8[i5 + 3 >> 0] | 0; switch (i4 << 24 >> 24) { case -16: { if ((i6 + 112 & 255) >= 48) { i1 = 2; break L9; } break; } case -12: { if ((i6 & -16) << 24 >> 24 != -128) { i1 = 2; break L9; } break; } default: if ((i6 & -64) << 24 >> 24 != -128) { i1 = 2; break L9; } } i7 = i1 & 255; if ((i7 & 192 | 0) != 128) { i1 = 2; break L9; } i1 = i3 & 255; if ((i1 & 192 | 0) != 128) { i1 = 2; break L9; } if ((i9 - i10 | 0) < 4) { i1 = 1; break L9; } i5 = i8 & 7; i3 = i6 & 255; i4 = i7 << 6; i1 = i1 & 63; if ((i3 << 12 & 258048 | i5 << 18 | i4 & 4032 | i1) >>> 0 > i15 >>> 0) { i1 = 2; break L9; } HEAP16[i10 >> 1] = i3 << 2 & 60 | i7 >>> 4 & 3 | ((i3 >>> 4 & 3 | i5 << 2) << 6) + 16320 | 55296; i10 = i10 + 2 | 0; HEAP32[i14 >> 2] = i10; HEAP16[i10 >> 1] = i1 | i4 & 960 | 56320; HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 4; } while (0); HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + 2; } if ((i16 | 0) == 41) i1 = i1 & 1; return i1 | 0; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner17visitCallIndirectEPNS_12CallIndirectE(i9, i10, i4) { i9 = i9 | 0; i10 = i10 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i8 = i14 + 84 | 0; i1 = i14 + 40 | 0; i11 = i14 + 72 | 0; i2 = i14 + 16 | 0; i3 = i14 + 68 | 0; i12 = i14; i13 = i14 + 64 | 0; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i10, HEAP32[i4 + 28 >> 2] | 0); if (!(HEAP32[i1 + 16 >> 2] | 0)) { HEAP32[i11 >> 2] = 0; i6 = i11 + 4 | 0; HEAP32[i6 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner17generateArgumentsERK11ArenaVectorIPNS_10ExpressionEES9_(i2, i10, i4 + 8 | 0, i11); if (!(HEAP32[i2 + 16 >> 2] | 0)) { i2 = __ZNK4wasm7Literal6geti32Ev(i1) | 0; i7 = i10 + 4 | 0; i1 = HEAP32[HEAP32[i7 >> 2] >> 2] | 0; if (i2 >>> 0 >= (HEAP32[i1 + 64 >> 2] | 0) - (HEAP32[i1 + 60 >> 2] | 0) >> 2 >>> 0) { FUNCTION_TABLE_vii[HEAP32[HEAP32[i10 >> 2] >> 2] & 255](i10, 25735); i1 = HEAP32[HEAP32[i7 >> 2] >> 2] | 0; } i5 = HEAP32[(HEAP32[i1 + 60 >> 2] | 0) + (i2 << 2) >> 2] | 0; HEAP32[i3 >> 2] = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; i1 = __ZN4wasm6Module11getFunctionENS_4NameE(i1, i8) | 0; i3 = HEAP32[i1 + 32 >> 2] | 0; if (i3 | 0 ? (i3 | 0) != (HEAP32[i4 + 24 >> 2] | 0) : 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i10 >> 2] >> 2] & 255](i10, 25758); i4 = i1 + 8 | 0; i3 = i1 + 12 | 0; if (((HEAP32[i3 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2 | 0) == ((HEAP32[i6 >> 2] | 0) - (HEAP32[i11 >> 2] | 0) >> 4 | 0)) i1 = 0; else { FUNCTION_TABLE_vii[HEAP32[HEAP32[i10 >> 2] >> 2] & 255](i10, 25781); i1 = 0; } while (1) { i2 = HEAP32[i4 >> 2] | 0; if (i1 >>> 0 >= (HEAP32[i3 >> 2] | 0) - i2 >> 2 >>> 0) break; if ((HEAP32[i2 + (i1 << 2) >> 2] | 0) != (HEAP32[(HEAP32[i11 >> 2] | 0) + (i1 << 4) >> 2] | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i10 >> 2] >> 2] & 255](i10, 25814); i1 = i1 + 1 | 0; } i10 = HEAP32[i7 >> 2] | 0; HEAP32[i13 >> 2] = i5; HEAP32[i8 >> 2] = HEAP32[i13 >> 2]; __ZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i12, i10, i8, i11); HEAP32[i9 >> 2] = HEAP32[i12 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i12 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i12 + 8 >> 2]; HEAP32[i9 + 12 >> 2] = HEAP32[i12 + 12 >> 2]; HEAP32[i9 + 16 >> 2] = 0; } else { HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i9 + 12 >> 2] = HEAP32[i2 + 12 >> 2]; HEAP32[i9 + 16 >> 2] = HEAP32[i2 + 16 >> 2]; HEAP32[i9 + 20 >> 2] = HEAP32[i2 + 20 >> 2]; } __ZNSt3__213__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i11); } else { HEAP32[i9 >> 2] = HEAP32[i1 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i9 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; HEAP32[i9 + 16 >> 2] = HEAP32[i1 + 16 >> 2]; HEAP32[i9 + 20 >> 2] = HEAP32[i1 + 20 >> 2]; } STACKTOP = i14; return; } function __Z10detectSignN6cashew3RefENS_7IStringE(i13, i4) { i13 = i13 | 0; i4 = i4 | 0; var d1 = 0.0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i12 = i15 + 32 | 0; i3 = i15 + 24 | 0; i14 = i15 + 28 | 0; i6 = i15 + 20 | 0; i7 = i15 + 16 | 0; i8 = i15 + 12 | 0; i9 = i15 + 8 | 0; i10 = i15 + 4 | 0; i11 = i15; i5 = __ZN6cashew3RefixEj(i13, 0) | 0; i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0; i5 = HEAP32[i5 >> 2] | 0; L1 : do if ((i5 | 0) != (HEAP32[11268] | 0)) { if ((i5 | 0) == (HEAP32[11290] | 0)) { i14 = __ZN6cashew3RefixEj(i13, 1) | 0; i14 = __ZN6cashew5Value10getIStringEv(HEAP32[i14 >> 2] | 0) | 0; switch (HEAP8[HEAP32[i14 >> 2] >> 0] | 0) { case 45: { i2 = 0; break L1; } case 43: { i2 = 3; break L1; } case 126: { i2 = 1; break L1; } default: { HEAP32[i6 >> 2] = HEAP32[i13 >> 2]; HEAP32[i12 >> 2] = HEAP32[i6 >> 2]; __ZL8abort_onN6cashew3RefE(i12); } } } if ((i5 | 0) == (HEAP32[11278] | 0)) { i14 = __ZN6cashew3RefixEj(i13, 1) | 0; i14 = __ZN6cashew5Value9getNumberEv(HEAP32[i14 >> 2] | 0) | 0; d1 = +HEAPF64[i14 >> 3]; if (d1 < 0.0) { i2 = 1; break; } if (d1 > 4294967295.0) { i2 = 3; break; } if (+_fmod(d1, 1.0) != 0.0) { i2 = 3; break; } i2 = __ZN4wasm12isSInteger32Ed(d1) | 0; i2 = i2 ? 0 : 2; break; } if ((i5 | 0) == (HEAP32[11264] | 0)) i2 = 0; else { if ((i5 | 0) == (HEAP32[11267] | 0)) { i2 = __ZN6cashew3RefixEj(i13, 2) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 >> 2] = HEAP32[i4 >> 2]; HEAP32[i3 >> 2] = HEAP32[i7 >> 2]; HEAP32[i12 >> 2] = HEAP32[i8 >> 2]; i2 = __Z10detectSignN6cashew3RefENS_7IStringE(i3, i12) | 0; break; } if ((i5 | 0) == (HEAP32[11277] | 0)) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i13, 1) | 0, 0) | 0, 45056) | 0) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i13, 1) | 0, 1) | 0, 45168) | 0) { i2 = 3; break; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i13, 1) | 0, 1) | 0, i4) | 0) { i2 = 3; break; } } } else if ((i5 | 0) == (HEAP32[11275] | 0)) { i2 = __ZN6cashew3RefixEj(i13, 2) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i4 >> 2]; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; HEAP32[i12 >> 2] = HEAP32[i10 >> 2]; i2 = __Z10detectSignN6cashew3RefENS_7IStringE(i3, i12) | 0; break; } HEAP32[i11 >> 2] = HEAP32[i13 >> 2]; HEAP32[i12 >> 2] = HEAP32[i11 >> 2]; __ZL8abort_onN6cashew3RefE(i12); } } else { i2 = __ZN6cashew3RefixEj(i13, 1) | 0; i2 = __ZN6cashew5Value10getIStringEv(HEAP32[i2 >> 2] | 0) | 0; i2 = HEAP32[i2 >> 2] | 0; switch (HEAP8[i2 >> 0] | 0) { case 45: case 43: { i2 = 0; break L1; } case 62: { if ((i2 | 0) == (HEAP32[11316] | 0)) { i2 = 2; break L1; } break; } case 33: case 61: case 60: case 94: case 38: case 124: break; case 47: case 42: { i2 = 3; break L1; } default: { HEAP32[i14 >> 2] = HEAP32[i13 >> 2]; HEAP32[i12 >> 2] = HEAP32[i14 >> 2]; __ZL8abort_onN6cashew3RefE(i12); } } i2 = 1; } while (0); STACKTOP = i15; return i2 | 0; } function __ZZ11instantiateEN19JSExternalInterface4loadEPN4wasm4LoadENS0_7AddressE(i14, i1, i7, i3) { i14 = i14 | 0; i1 = i1 | 0; i7 = i7 | 0; i3 = i3 | 0; var d2 = 0.0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i12 = i13; i6 = HEAP32[i3 >> 2] | 0; i8 = i7 + 8 | 0; i3 = HEAP16[i8 >> 1] | 0; i4 = i3 & 255; i1 = i3 & 255; i3 = (i3 & 65535) >>> 8; i5 = i3 & 255; L1 : do if ((HEAP32[i7 + 16 >> 2] | 0) >>> 0 >= i1 >>> 0 ? (i1 + -1 & i6 | 0) == 0 : 0) { i1 = i7 + 4 | 0; if (((HEAP32[i1 >> 2] | 0) + -3 | 0) >>> 0 < 2) switch (i4 << 24 >> 24) { case 4: { d2 = +_emscripten_asm_const_di(26, i6 | 0); HEAP32[i14 >> 2] = 3; HEAPF32[i14 + 8 >> 2] = d2; break L1; } case 8: { d2 = +_emscripten_asm_const_di(27, i6 | 0); HEAP32[i14 >> 2] = 4; HEAPF64[i14 + 8 >> 3] = d2; break L1; } default: _abort(); } L11 : do switch (i4 << 24 >> 24) { case 1: if (!(i5 << 24 >> 24)) { i10 = _emscripten_asm_const_ii(21, i6 | 0) | 0; i9 = i10; i10 = ((i10 | 0) < 0) << 31 >> 31; break L11; } else { i10 = _emscripten_asm_const_ii(20, i6 | 0) | 0; i9 = i10; i10 = ((i10 | 0) < 0) << 31 >> 31; break L11; } case 2: if (!(i5 << 24 >> 24)) { i10 = _emscripten_asm_const_ii(23, i6 | 0) | 0; i9 = i10; i10 = ((i10 | 0) < 0) << 31 >> 31; break L11; } else { i10 = _emscripten_asm_const_ii(22, i6 | 0) | 0; i9 = i10; i10 = ((i10 | 0) < 0) << 31 >> 31; break L11; } case 4: if (!(i5 << 24 >> 24)) { i9 = _emscripten_asm_const_ii(25, i6 | 0) | 0; i10 = 0; break L11; } else { i10 = _emscripten_asm_const_ii(24, i6 | 0) | 0; i9 = i10; i10 = ((i10 | 0) < 0) << 31 >> 31; break L11; } case 8: { i9 = _emscripten_asm_const_ii(24, i6 | 0) | 0; i10 = _emscripten_asm_const_ii(24, i6 + 4 | 0) | 0; break; } default: _abort(); } while (0); if ((HEAP32[i1 >> 2] | 0) == 1) { HEAP32[i14 >> 2] = 1; HEAP32[i14 + 8 >> 2] = i9; break; } else { HEAP32[i14 >> 2] = 2; i14 = i14 + 8 | 0; HEAP32[i14 >> 2] = i9; HEAP32[i14 + 4 >> 2] = i10; break; } } else i11 = 3; while (0); if ((i11 | 0) == 3) { i11 = i7 + 4 | 0; d2 = +_emscripten_asm_const_diiiii(19, i6 | 0, i1 | 0, ((HEAP32[i11 >> 2] | 0) + -3 | 0) >>> 0 < 2 | 0, i3 & 65535 | 0, i12 | 0); i1 = HEAP32[i11 >> 2] | 0; L32 : do if ((i1 + -3 | 0) >>> 0 >= 2) { if ((i1 | 0) != 2) { HEAP32[i14 >> 2] = 1; HEAP32[i14 + 8 >> 2] = ~~d2; break; } i1 = HEAP16[i8 >> 1] | 0; if ((i1 & 255) << 24 >> 24 == 8) { i11 = HEAP32[i12 >> 2] | 0; i12 = HEAP32[i12 + 4 >> 2] | 0; HEAP32[i14 >> 2] = 2; i14 = i14 + 8 | 0; HEAP32[i14 >> 2] = i11; HEAP32[i14 + 4 >> 2] = i12; break; } if ((i1 & 65535) < 256) { HEAP32[i14 >> 2] = 2; i14 = i14 + 8 | 0; HEAP32[i14 >> 2] = ~~d2 >>> 0; HEAP32[i14 + 4 >> 2] = 0; break; } else { i12 = ~~d2; HEAP32[i14 >> 2] = 2; i14 = i14 + 8 | 0; HEAP32[i14 >> 2] = i12; HEAP32[i14 + 4 >> 2] = ((i12 | 0) < 0) << 31 >> 31; break; } } else switch (HEAP8[i8 >> 0] | 0) { case 4: { HEAP32[i14 >> 2] = 3; HEAPF32[i14 + 8 >> 2] = d2; break L32; } case 8: { HEAP32[i14 >> 2] = 4; HEAPF64[i14 + 8 >> 3] = d2; break L32; } default: _abort(); } while (0); } STACKTOP = i13; return; } function __ZN4wasm22SExpressionWasmBuilderC2ERNS_6ModuleERNS_7ElementE(i9, i3, i10) { i9 = i9 | 0; i3 = i3 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 144 | 0; i4 = i11 + 128 | 0; i5 = i11; HEAP32[i9 >> 2] = i3; i7 = i3 + 100 | 0; HEAP32[i9 + 4 >> 2] = i7; HEAP32[i9 + 8 >> 2] = 0; HEAP32[i9 + 12 >> 2] = 0; HEAP32[i9 + 16 >> 2] = 0; HEAP32[i9 + 24 >> 2] = 0; HEAP32[i9 + 28 >> 2] = 0; HEAP32[i9 + 36 >> 2] = 0; HEAP32[i9 + 40 >> 2] = 0; HEAP32[i9 + 32 >> 2] = i9 + 36; HEAP32[i9 + 44 >> 2] = 0; HEAP32[i9 + 52 >> 2] = 0; HEAP32[i9 + 56 >> 2] = 0; HEAP32[i9 + 48 >> 2] = i9 + 52; HEAP32[i9 + 68 >> 2] = 0; HEAP32[i9 + 72 >> 2] = 0; HEAP32[i9 + 76 >> 2] = 0; HEAP8[i9 + 81 >> 0] = 0; i6 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i10, 0) | 0) | 0; if ((i6 | 0) != (HEAP32[11434] | 0)) ___assert_fail(17285, 17152, 273, 17312); i6 = (__ZN4wasm7Element4listEv(i10) | 0) + 8 | 0; if ((HEAP32[i6 >> 2] | 0) >>> 0 > 1 ? (i6 = __ZN4wasm7ElementixEj(i10, 1) | 0, (HEAP8[i6 >> 0] | 0) == 0) : 0) { HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; i1 = 1; while (1) { i6 = (__ZN4wasm7Element4listEv(i10) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i6 >> 2] | 0) >>> 0) break; i6 = i1 + 1 | 0; i1 = __ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i10, i1) | 0) | 0; i2 = _strlen(i1) | 0; if (!i2) { i1 = i6; continue; } __ZN4wasm22SExpressionWasmBuilder14stringToBinaryEPKcjRNSt3__26vectorIcNS3_9allocatorIcEEEE(i9, i1, i2, i4); i1 = i6; } HEAP32[i5 >> 2] = i3; HEAP32[i5 + 4 >> 2] = i7; HEAP32[i5 + 8 >> 2] = i4; HEAP8[i5 + 12 >> 0] = 0; HEAP32[i5 + 16 >> 2] = 0; HEAP32[i5 + 20 >> 2] = -1; HEAP32[i5 + 24 >> 2] = 0; HEAP32[i5 + 28 >> 2] = 0; HEAP32[i5 + 32 >> 2] = 0; HEAP32[i5 + 40 >> 2] = 0; HEAP32[i5 + 44 >> 2] = 0; HEAP32[i5 + 48 >> 2] = 0; HEAP32[i5 + 56 >> 2] = 0; HEAP32[i5 + 60 >> 2] = 0; HEAP32[i5 + 52 >> 2] = i5 + 56; HEAP32[i5 + 64 >> 2] = 0; HEAP32[i5 + 76 >> 2] = 0; HEAP32[i5 + 80 >> 2] = 0; HEAP32[i5 + 72 >> 2] = i5 + 76; i10 = i5 + 84 | 0; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; HEAP32[i10 + 12 >> 2] = 0; HEAP32[i10 + 16 >> 2] = 0; HEAP32[i10 + 20 >> 2] = 0; HEAP32[i5 + 108 >> 2] = 15; i10 = i5 + 112 | 0; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; HEAP32[i10 + 12 >> 2] = 0; __ZN4wasm17WasmBinaryBuilder4readEv(i5); __ZN4wasm17WasmBinaryBuilderD2Ev(i5); __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i4); } else i8 = 10; L12 : do if ((i8 | 0) == 10) { i2 = i9 + 20 | 0; HEAP32[i2 >> 2] = 0; i1 = 1; while (1) { i8 = (__ZN4wasm7Element4listEv(i10) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i8 >> 2] | 0) >>> 0) break; __ZN4wasm22SExpressionWasmBuilder20preParseFunctionTypeERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i10, i1) | 0); __ZN4wasm22SExpressionWasmBuilder15preParseImportsERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i10, i1) | 0); i1 = i1 + 1 | 0; } HEAP32[i2 >> 2] = 0; i1 = 1; while (1) { i8 = (__ZN4wasm7Element4listEv(i10) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i8 >> 2] | 0) >>> 0) break L12; __ZN4wasm22SExpressionWasmBuilder18parseModuleElementERNS_7ElementE(i9, __ZN4wasm7ElementixEj(i10, i1) | 0); i1 = i1 + 1 | 0; } } while (0); STACKTOP = i11; return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i12, i9) { i12 = i12 | 0; i9 = i9 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0; i8 = i12 + 11 | 0; if ((HEAP8[i8 >> 0] | 0) < 0) { HEAP8[HEAP32[i12 >> 2] >> 0] = 0; HEAP32[i12 + 4 >> 2] = 0; i1 = HEAP8[i8 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i7 = 0; i5 = (HEAP32[i12 + 8 >> 2] & 2147483647) + -1 | 0; i4 = 1; } else i11 = 5; } else { HEAP8[i12 >> 0] = 0; HEAP8[i8 >> 0] = 0; i1 = 0; i11 = 5; } if ((i11 | 0) == 5) { i7 = i1 & 255; i5 = 10; i4 = 0; } i2 = i7 >>> 0 < 11; i6 = i2 ? 10 : (i7 + 16 & 496) + -1 | 0; L8 : do if ((i6 | 0) != (i5 | 0)) { do if (i2) { i2 = HEAP32[i12 >> 2] | 0; if (i4) { i1 = 0; i3 = i12; i11 = 13; } else { i4 = 0; i5 = 1; i3 = i12; i11 = 14; } } else { i3 = _malloc(i6 + 1 | 0) | 0; if (i6 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0) break L8; if (i4) { i1 = 1; i2 = HEAP32[i12 >> 2] | 0; i11 = 13; break; } else { i4 = 1; i5 = 0; i2 = i12; i11 = 14; break; } } while (0); if ((i11 | 0) == 13) { i4 = i1; i5 = 1; i1 = HEAP32[i12 + 4 >> 2] | 0; } else if ((i11 | 0) == 14) i1 = i1 & 255; i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i3 | 0, i2 | 0, i1 | 0) | 0; if (i5) _free(i2); if (i4) { HEAP32[i12 + 8 >> 2] = i6 + 1 | -2147483648; HEAP32[i12 + 4 >> 2] = i7; HEAP32[i12 >> 2] = i3; break; } else { HEAP8[i8 >> 0] = i7; break; } } while (0); HEAP32[i12 >> 2] = HEAP32[i9 >> 2]; HEAP32[i12 + 4 >> 2] = HEAP32[i9 + 4 >> 2]; HEAP32[i12 + 8 >> 2] = HEAP32[i9 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i9 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i10 = i12 + 12 | 0; i9 = i9 + 12 | 0; i7 = i10 + 11 | 0; if ((HEAP8[i7 >> 0] | 0) < 0) { HEAP8[HEAP32[i10 >> 2] >> 0] = 0; HEAP32[i12 + 16 >> 2] = 0; i1 = HEAP8[i7 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i8 = 0; i5 = (HEAP32[i12 + 20 >> 2] & 2147483647) + -1 | 0; i4 = 1; } else i11 = 29; } else { HEAP8[i10 >> 0] = 0; HEAP8[i7 >> 0] = 0; i1 = 0; i11 = 29; } if ((i11 | 0) == 29) { i8 = i1 & 255; i5 = 10; i4 = 0; } i2 = i8 >>> 0 < 11; i6 = i2 ? 10 : (i8 + 16 & 496) + -1 | 0; L42 : do if ((i6 | 0) != (i5 | 0)) { do if (i2) { i2 = HEAP32[i10 >> 2] | 0; if (i4) { i1 = 0; i3 = i10; i11 = 37; } else { i4 = 0; i5 = 1; i3 = i10; i11 = 38; } } else { i3 = _malloc(i6 + 1 | 0) | 0; if (i6 >>> 0 <= i5 >>> 0 & (i3 | 0) == 0) break L42; if (i4) { i1 = 1; i2 = HEAP32[i10 >> 2] | 0; i11 = 37; break; } else { i4 = 1; i5 = 0; i2 = i10; i11 = 38; break; } } while (0); if ((i11 | 0) == 37) { i4 = i1; i5 = 1; i1 = HEAP32[i12 + 16 >> 2] | 0; } else if ((i11 | 0) == 38) i1 = i1 & 255; i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i3 | 0, i2 | 0, i1 | 0) | 0; if (i5) _free(i2); if (i4) { HEAP32[i12 + 20 >> 2] = i6 + 1 | -2147483648; HEAP32[i12 + 16 >> 2] = i8; HEAP32[i10 >> 2] = i3; break; } else { HEAP8[i7 >> 0] = i8; break; } } while (0); HEAP32[i10 >> 2] = HEAP32[i9 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i9 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i9 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i9 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNSt3__29__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6localeE(i2, i13, i14, i15, i16, i12, i1) { i2 = i2 | 0; i13 = i13 | 0; i14 = i14 | 0; i15 = i15 | 0; i16 = i16 | 0; i12 = i12 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i17 = 0, i18 = 0, i19 = 0; i18 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i17 = i18; i11 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47508) | 0; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47516) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 255](i17, i5); i9 = i17 + 11 | 0; i8 = HEAP8[i9 >> 0] | 0; i10 = i17 + 4 | 0; L1 : do if ((i8 << 24 >> 24 < 0 ? HEAP32[i10 >> 2] | 0 : i8 & 255) | 0) { HEAP32[i12 >> 2] = i15; i1 = HEAP8[i2 >> 0] | 0; switch (i1 << 24 >> 24) { case 43: case 45: { i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 44 >> 2] & 31](i11, i1) | 0; i1 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i8; i1 = i2 + 1 | 0; break; } default: i1 = i2; } L7 : do if ((i14 - i1 | 0) > 1 ? (HEAP8[i1 >> 0] | 0) == 48 : 0) { i3 = i1 + 1 | 0; switch (HEAP8[i3 >> 0] | 0) { case 88: case 120: break; default: break L7; } i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 44 >> 2] & 31](i11, 48) | 0; i7 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i7 + 4; HEAP32[i7 >> 2] = i8; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 44 >> 2] & 31](i11, HEAP8[i3 >> 0] | 0) | 0; i8 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i8 + 4; HEAP32[i8 >> 2] = i7; i1 = i1 + 2 | 0; } while (0); L12 : do if ((i1 | 0) != (i14 | 0)) { i3 = i14; i4 = i1; while (1) { i3 = i3 + -1 | 0; if (i4 >>> 0 >= i3 >>> 0) break L12; i8 = HEAP8[i4 >> 0] | 0; HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = i8; i4 = i4 + 1 | 0; } } while (0); i8 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 16 >> 2] & 127](i5) | 0; i7 = i1; i3 = 0; i4 = 0; while (1) { if (i7 >>> 0 >= i14 >>> 0) break; i5 = HEAP8[i9 >> 0] | 0; i6 = i5 << 24 >> 24 < 0; i19 = HEAP8[(i6 ? HEAP32[i17 >> 2] | 0 : i17) + i3 >> 0] | 0; if (i19 << 24 >> 24 != 0 & (i4 | 0) == (i19 << 24 >> 24 | 0)) { i4 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i4 + 4; HEAP32[i4 >> 2] = i8; i3 = (i3 >>> 0 < ((i6 ? HEAP32[i10 >> 2] | 0 : i5 & 255) + -1 | 0) >>> 0 & 1) + i3 | 0; i4 = 0; } i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 44 >> 2] & 31](i11, HEAP8[i7 >> 0] | 0) | 0; i19 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i19 + 4; HEAP32[i19 >> 2] = i6; i7 = i7 + 1 | 0; i4 = i4 + 1 | 0; } i1 = i15 + (i1 - i2 << 2) | 0; i4 = HEAP32[i12 >> 2] | 0; if ((i1 | 0) != (i4 | 0)) { i3 = i4; while (1) { i3 = i3 + -4 | 0; if (i1 >>> 0 >= i3 >>> 0) { i1 = i4; break L1; } i19 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i3 >> 2] = i19; i1 = i1 + 4 | 0; } } } else { FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 48 >> 2] & 7](i11, i2, i14, i15) | 0; i1 = i15 + (i14 - i2 << 2) | 0; HEAP32[i12 >> 2] = i1; } while (0); HEAP32[i16 >> 2] = (i13 | 0) == (i14 | 0) ? i1 : i15 + (i13 - i2 << 2) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i17); STACKTOP = i18; return; } function __ZNK4wasm7Literal3minERKS0_(i14, i1, i4) { i14 = i14 | 0; i1 = i1 | 0; i4 = i4 | 0; var d2 = 0.0, d3 = 0.0, d5 = 0.0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 128 | 0; i6 = i15 + 112 | 0; i7 = i15 + 96 | 0; i10 = i15 + 80 | 0; i13 = i15 + 64 | 0; i8 = i15 + 48 | 0; i9 = i15 + 32 | 0; i11 = i15 + 16 | 0; i12 = i15; do if ((HEAP32[i1 >> 2] | 0) == 3) { d5 = +__ZNK4wasm7Literal6getf32Ev(i1); d3 = +__ZNK4wasm7Literal6getf32Ev(i4); if (d5 == 0.0 & d5 == d3) { d5 = ((HEAPF32[tempDoublePtr >> 2] = d5, HEAP32[tempDoublePtr >> 2] | 0) | 0) < 0 ? d5 : d3; HEAP32[i14 >> 2] = 3; HEAPF32[i14 + 8 >> 2] = d5; break; } d2 = d3 < d5 ? d3 : d5; i1 = ((HEAPF32[tempDoublePtr >> 2] = d5, HEAP32[tempDoublePtr >> 2] | 0) & 2147483647) >>> 0 > 2139095040; i4 = ((HEAPF32[tempDoublePtr >> 2] = d3, HEAP32[tempDoublePtr >> 2] | 0) & 2147483647) >>> 0 > 2139095040; if (!(i4 | (i1 | ((HEAPF32[tempDoublePtr >> 2] = d2, HEAP32[tempDoublePtr >> 2] | 0) & 2147483647) >>> 0 > 2139095040))) { HEAP32[i14 >> 2] = 3; HEAPF32[i14 + 8 >> 2] = d2; break; } if (!(i1 | i4)) { HEAP32[i6 >> 2] = 1; HEAP32[i6 + 8 >> 2] = 2143289344; __ZN4wasm7Literal9castToF32Ev(i14, i6); break; } HEAP32[i7 >> 2] = 3; HEAPF32[i7 + 8 >> 2] = i1 ? d5 : d3; __ZN4wasm7Literal9castToI32Ev(i10, i7); i1 = i10 + 8 | 0; if ((HEAP32[i10 >> 2] | 0) == 1) { HEAP32[i13 + 8 >> 2] = HEAP32[i1 >> 2] | 12582912; i1 = 1; } else { i11 = i1; i12 = HEAP32[i11 + 4 >> 2] | 0; i1 = i13 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i11 >> 2] | 12582912; HEAP32[i1 + 4 >> 2] = i12; i1 = 2; } HEAP32[i13 >> 2] = i1; __ZN4wasm7Literal9castToF32Ev(i14, i13); } else { d5 = +__ZNK4wasm7Literal6getf64Ev(i1); d3 = +__ZNK4wasm7Literal6getf64Ev(i4); if (d5 == 0.0 & d5 == d3) { HEAPF64[tempDoublePtr >> 3] = d5; d5 = (HEAP32[tempDoublePtr + 4 >> 2] | 0) < 0 ? d5 : d3; HEAP32[i14 >> 2] = 4; HEAPF64[i14 + 8 >> 3] = d5; break; } d2 = d3 < d5 ? d3 : d5; HEAPF64[tempDoublePtr >> 3] = d5; i1 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; i1 = i1 >>> 0 > 2146435072 | (i1 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0; HEAPF64[tempDoublePtr >> 3] = d3; i4 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; i4 = i4 >>> 0 > 2146435072 | (i4 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0; HEAPF64[tempDoublePtr >> 3] = d2; i13 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; if (!(i4 | (i1 | (i13 >>> 0 > 2146435072 | (i13 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0)))) { HEAP32[i14 >> 2] = 4; HEAPF64[i14 + 8 >> 3] = d2; break; } if (!(i1 | i4)) { HEAP32[i8 >> 2] = 2; i13 = i8 + 8 | 0; HEAP32[i13 >> 2] = 0; HEAP32[i13 + 4 >> 2] = 2146959360; __ZN4wasm7Literal9castToF64Ev(i14, i8); break; } HEAP32[i9 >> 2] = 4; HEAPF64[i9 + 8 >> 3] = i1 ? d5 : d3; __ZN4wasm7Literal9castToI64Ev(i11, i9); i1 = i11 + 8 | 0; if ((HEAP32[i11 >> 2] | 0) == 1) { HEAP32[i12 + 8 >> 2] = HEAP32[i1 >> 2]; i1 = 1; } else { i11 = i1; i13 = HEAP32[i11 + 4 >> 2] | 524288; i1 = i12 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = i13; i1 = 2; } HEAP32[i12 >> 2] = i1; __ZN4wasm7Literal9castToF64Ev(i14, i12); } while (0); STACKTOP = i15; return; } function __ZNK4wasm7Literal3maxERKS0_(i14, i1, i4) { i14 = i14 | 0; i1 = i1 | 0; i4 = i4 | 0; var d2 = 0.0, d3 = 0.0, d5 = 0.0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 128 | 0; i6 = i15 + 112 | 0; i7 = i15 + 96 | 0; i10 = i15 + 80 | 0; i13 = i15 + 64 | 0; i8 = i15 + 48 | 0; i9 = i15 + 32 | 0; i11 = i15 + 16 | 0; i12 = i15; do if ((HEAP32[i1 >> 2] | 0) == 3) { d5 = +__ZNK4wasm7Literal6getf32Ev(i1); d3 = +__ZNK4wasm7Literal6getf32Ev(i4); if (d5 == 0.0 & d5 == d3) { d5 = ((HEAPF32[tempDoublePtr >> 2] = d5, HEAP32[tempDoublePtr >> 2] | 0) | 0) < 0 ? d3 : d5; HEAP32[i14 >> 2] = 3; HEAPF32[i14 + 8 >> 2] = d5; break; } d2 = d5 < d3 ? d3 : d5; i1 = ((HEAPF32[tempDoublePtr >> 2] = d5, HEAP32[tempDoublePtr >> 2] | 0) & 2147483647) >>> 0 > 2139095040; i4 = ((HEAPF32[tempDoublePtr >> 2] = d3, HEAP32[tempDoublePtr >> 2] | 0) & 2147483647) >>> 0 > 2139095040; if (!(i4 | (i1 | ((HEAPF32[tempDoublePtr >> 2] = d2, HEAP32[tempDoublePtr >> 2] | 0) & 2147483647) >>> 0 > 2139095040))) { HEAP32[i14 >> 2] = 3; HEAPF32[i14 + 8 >> 2] = d2; break; } if (!(i1 | i4)) { HEAP32[i6 >> 2] = 1; HEAP32[i6 + 8 >> 2] = 2143289344; __ZN4wasm7Literal9castToF32Ev(i14, i6); break; } HEAP32[i7 >> 2] = 3; HEAPF32[i7 + 8 >> 2] = i1 ? d5 : d3; __ZN4wasm7Literal9castToI32Ev(i10, i7); i1 = i10 + 8 | 0; if ((HEAP32[i10 >> 2] | 0) == 1) { HEAP32[i13 + 8 >> 2] = HEAP32[i1 >> 2] | 12582912; i1 = 1; } else { i11 = i1; i12 = HEAP32[i11 + 4 >> 2] | 0; i1 = i13 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i11 >> 2] | 12582912; HEAP32[i1 + 4 >> 2] = i12; i1 = 2; } HEAP32[i13 >> 2] = i1; __ZN4wasm7Literal9castToF32Ev(i14, i13); } else { d5 = +__ZNK4wasm7Literal6getf64Ev(i1); d3 = +__ZNK4wasm7Literal6getf64Ev(i4); if (d5 == 0.0 & d5 == d3) { HEAPF64[tempDoublePtr >> 3] = d5; d5 = (HEAP32[tempDoublePtr + 4 >> 2] | 0) < 0 ? d3 : d5; HEAP32[i14 >> 2] = 4; HEAPF64[i14 + 8 >> 3] = d5; break; } d2 = d5 < d3 ? d3 : d5; HEAPF64[tempDoublePtr >> 3] = d5; i1 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; i1 = i1 >>> 0 > 2146435072 | (i1 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0; HEAPF64[tempDoublePtr >> 3] = d3; i4 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; i4 = i4 >>> 0 > 2146435072 | (i4 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0; HEAPF64[tempDoublePtr >> 3] = d2; i13 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; if (!(i4 | (i1 | (i13 >>> 0 > 2146435072 | (i13 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0)))) { HEAP32[i14 >> 2] = 4; HEAPF64[i14 + 8 >> 3] = d2; break; } if (!(i1 | i4)) { HEAP32[i8 >> 2] = 2; i13 = i8 + 8 | 0; HEAP32[i13 >> 2] = 0; HEAP32[i13 + 4 >> 2] = 2146959360; __ZN4wasm7Literal9castToF64Ev(i14, i8); break; } HEAP32[i9 >> 2] = 4; HEAPF64[i9 + 8 >> 3] = i1 ? d5 : d3; __ZN4wasm7Literal9castToI64Ev(i11, i9); i1 = i11 + 8 | 0; if ((HEAP32[i11 >> 2] | 0) == 1) { HEAP32[i12 + 8 >> 2] = HEAP32[i1 >> 2]; i1 = 1; } else { i11 = i1; i13 = HEAP32[i11 + 4 >> 2] | 524288; i1 = i12 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = i13; i1 = 2; } HEAP32[i12 >> 2] = i1; __ZN4wasm7Literal9castToF64Ev(i14, i12); } while (0); STACKTOP = i15; return; } function _fmod(d12, d1) { d12 = +d12; d1 = +d1; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0; HEAPF64[tempDoublePtr >> 3] = d12; i6 = HEAP32[tempDoublePtr >> 2] | 0; i8 = HEAP32[tempDoublePtr + 4 >> 2] | 0; HEAPF64[tempDoublePtr >> 3] = d1; i10 = HEAP32[tempDoublePtr >> 2] | 0; i11 = HEAP32[tempDoublePtr + 4 >> 2] | 0; i3 = _bitshift64Lshr(i6 | 0, i8 | 0, 52) | 0; i3 = i3 & 2047; i9 = _bitshift64Lshr(i10 | 0, i11 | 0, 52) | 0; i9 = i9 & 2047; i13 = i8 & -2147483648; i5 = _bitshift64Shl(i10 | 0, i11 | 0, 1) | 0; i7 = tempRet0; L1 : do if (!((i5 | 0) == 0 & (i7 | 0) == 0) ? (i4 = i11 & 2147483647, !(i4 >>> 0 > 2146435072 | (i4 | 0) == 2146435072 & i10 >>> 0 > 0 | (i3 | 0) == 2047)) : 0) { i2 = _bitshift64Shl(i6 | 0, i8 | 0, 1) | 0; i4 = tempRet0; if (!(i4 >>> 0 > i7 >>> 0 | (i4 | 0) == (i7 | 0) & i2 >>> 0 > i5 >>> 0)) return +((i2 | 0) == (i5 | 0) & (i4 | 0) == (i7 | 0) ? d12 * 0.0 : d12); if (!i3) { i2 = _bitshift64Shl(i6 | 0, i8 | 0, 12) | 0; i4 = tempRet0; if ((i4 | 0) > -1 | (i4 | 0) == -1 & i2 >>> 0 > 4294967295) { i3 = 0; do { i3 = i3 + -1 | 0; i2 = _bitshift64Shl(i2 | 0, i4 | 0, 1) | 0; i4 = tempRet0; } while ((i4 | 0) > -1 | (i4 | 0) == -1 & i2 >>> 0 > 4294967295); } else i3 = 0; i6 = _bitshift64Shl(i6 | 0, i8 | 0, 1 - i3 | 0) | 0; i5 = tempRet0; } else i5 = i8 & 1048575 | 1048576; if (!i9) { i4 = _bitshift64Shl(i10 | 0, i11 | 0, 12) | 0; i7 = tempRet0; if ((i7 | 0) > -1 | (i7 | 0) == -1 & i4 >>> 0 > 4294967295) { i2 = 0; do { i2 = i2 + -1 | 0; i4 = _bitshift64Shl(i4 | 0, i7 | 0, 1) | 0; i7 = tempRet0; } while ((i7 | 0) > -1 | (i7 | 0) == -1 & i4 >>> 0 > 4294967295); } else i2 = 0; i10 = _bitshift64Shl(i10 | 0, i11 | 0, 1 - i2 | 0) | 0; i9 = i2; i8 = tempRet0; } else i8 = i11 & 1048575 | 1048576; i4 = _i64Subtract(i6 | 0, i5 | 0, i10 | 0, i8 | 0) | 0; i2 = tempRet0; i7 = (i2 | 0) > -1 | (i2 | 0) == -1 & i4 >>> 0 > 4294967295; L23 : do if ((i3 | 0) > (i9 | 0)) { while (1) { if (i7) { if ((i4 | 0) == 0 & (i2 | 0) == 0) break; } else { i4 = i6; i2 = i5; } i6 = _bitshift64Shl(i4 | 0, i2 | 0, 1) | 0; i5 = tempRet0; i3 = i3 + -1 | 0; i4 = _i64Subtract(i6 | 0, i5 | 0, i10 | 0, i8 | 0) | 0; i2 = tempRet0; i7 = (i2 | 0) > -1 | (i2 | 0) == -1 & i4 >>> 0 > 4294967295; if ((i3 | 0) <= (i9 | 0)) break L23; } d1 = d12 * 0.0; break L1; } while (0); if (i7) { if ((i4 | 0) == 0 & (i2 | 0) == 0) { d1 = d12 * 0.0; break; } } else { i2 = i5; i4 = i6; } if (i2 >>> 0 < 1048576 | (i2 | 0) == 1048576 & i4 >>> 0 < 0) do { i4 = _bitshift64Shl(i4 | 0, i2 | 0, 1) | 0; i2 = tempRet0; i3 = i3 + -1 | 0; } while (i2 >>> 0 < 1048576 | (i2 | 0) == 1048576 & i4 >>> 0 < 0); if ((i3 | 0) > 0) { i11 = _i64Add(i4 | 0, i2 | 0, 0, -1048576) | 0; i2 = tempRet0; i3 = _bitshift64Shl(i3 | 0, 0, 52) | 0; i2 = i2 | tempRet0; i3 = i11 | i3; } else { i3 = _bitshift64Lshr(i4 | 0, i2 | 0, 1 - i3 | 0) | 0; i2 = tempRet0; } HEAP32[tempDoublePtr >> 2] = i3; HEAP32[tempDoublePtr + 4 >> 2] = i2 | i13; d1 = +HEAPF64[tempDoublePtr >> 3]; } else i14 = 3; while (0); if ((i14 | 0) == 3) { d1 = d12 * d1; d1 = d1 / d1; } return +d1; } function __ZNSt3__29__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i2, i11, i12, i13, i14, i10, i1) { i2 = i2 | 0; i11 = i11 | 0; i12 = i12 | 0; i13 = i13 | 0; i14 = i14 | 0; i10 = i10 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i15 = i16; i9 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47492) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 20 >> 2] & 255](i15, i5); i7 = i15 + 11 | 0; i6 = HEAP8[i7 >> 0] | 0; i8 = i15 + 4 | 0; if ((i6 << 24 >> 24 < 0 ? HEAP32[i8 >> 2] | 0 : i6 & 255) | 0) { HEAP32[i10 >> 2] = i13; i1 = HEAP8[i2 >> 0] | 0; switch (i1 << 24 >> 24) { case 43: case 45: { i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, i1) | 0; i1 = HEAP32[i10 >> 2] | 0; HEAP32[i10 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i6; i1 = i2 + 1 | 0; break; } default: i1 = i2; } L7 : do if ((i12 - i1 | 0) > 1 ? (HEAP8[i1 >> 0] | 0) == 48 : 0) { i3 = i1 + 1 | 0; switch (HEAP8[i3 >> 0] | 0) { case 88: case 120: break; default: break L7; } i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, 48) | 0; i4 = HEAP32[i10 >> 2] | 0; HEAP32[i10 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i6; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, HEAP8[i3 >> 0] | 0) | 0; i6 = HEAP32[i10 >> 2] | 0; HEAP32[i10 >> 2] = i6 + 1; HEAP8[i6 >> 0] = i4; i1 = i1 + 2 | 0; } while (0); L12 : do if ((i1 | 0) != (i12 | 0)) { i3 = i12; i4 = i1; while (1) { i3 = i3 + -1 | 0; if (i4 >>> 0 >= i3 >>> 0) break L12; i6 = HEAP8[i4 >> 0] | 0; HEAP8[i4 >> 0] = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = i6; i4 = i4 + 1 | 0; } } while (0); i6 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 16 >> 2] & 127](i5) | 0; i5 = i1; i3 = 0; i4 = 0; while (1) { if (i5 >>> 0 >= i12 >>> 0) break; i17 = HEAP8[((HEAP8[i7 >> 0] | 0) < 0 ? HEAP32[i15 >> 2] | 0 : i15) + i3 >> 0] | 0; if (i17 << 24 >> 24 != 0 & (i4 | 0) == (i17 << 24 >> 24 | 0)) { i4 = HEAP32[i10 >> 2] | 0; HEAP32[i10 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i6; i4 = HEAP8[i7 >> 0] | 0; i3 = (i3 >>> 0 < ((i4 << 24 >> 24 < 0 ? HEAP32[i8 >> 2] | 0 : i4 & 255) + -1 | 0) >>> 0 & 1) + i3 | 0; i4 = 0; } i18 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, HEAP8[i5 >> 0] | 0) | 0; i17 = HEAP32[i10 >> 2] | 0; HEAP32[i10 >> 2] = i17 + 1; HEAP8[i17 >> 0] = i18; i5 = i5 + 1 | 0; i4 = i4 + 1 | 0; } i1 = i13 + (i1 - i2) | 0; i3 = HEAP32[i10 >> 2] | 0; if ((i1 | 0) != (i3 | 0)) { while (1) { i3 = i3 + -1 | 0; if (i1 >>> 0 >= i3 >>> 0) break; i18 = HEAP8[i1 >> 0] | 0; HEAP8[i1 >> 0] = HEAP8[i3 >> 0] | 0; HEAP8[i3 >> 0] = i18; i1 = i1 + 1 | 0; } i1 = HEAP32[i10 >> 2] | 0; } } else { FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i9 >> 2] | 0) + 32 >> 2] & 7](i9, i2, i12, i13) | 0; i1 = i13 + (i12 - i2) | 0; HEAP32[i10 >> 2] = i1; } HEAP32[i14 >> 2] = (i11 | 0) == (i12 | 0) ? i1 : i13 + (i11 - i2) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i15); STACKTOP = i16; return; } function __ZN6cashew7IString3setEPKcb(i16, i1, i2) { i16 = i16 | 0; i1 = i1 | 0; i2 = i2 | 0; var d3 = 0.0, d4 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i17 = 0; i17 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i15 = i17; HEAP32[i15 >> 2] = i1; if ((HEAP8[44288] | 0) == 0 ? ___cxa_guard_acquire(44288) | 0 : 0) { i14 = __Znwj(20) | 0; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; HEAP32[i14 + 12 >> 2] = 0; HEAPF32[i14 + 16 >> 2] = 1.0; HEAP32[11251] = i14; } i1 = __ZNSt3__212__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE4findIS2_EENS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(HEAP32[11251] | 0, i15) | 0; L5 : do if (!i1) { if (__ZN4wasm10ThreadPool9isRunningEv() | 0) ___assert_fail(13992, 13949, 76, 14023); i1 = HEAP32[i15 >> 2] | 0; if (!i2) { i13 = (_strlen(i1) | 0) + 1 | 0; i14 = _malloc(i13) | 0; _strncpy(i14, i1, i13) | 0; HEAP32[i15 >> 2] = i14; i1 = i14; } i14 = HEAP32[11251] | 0; i13 = __ZN6cashew7IString6hash_cEPKc(i1) | 0; i10 = i14 + 4 | 0; i11 = HEAP32[i10 >> 2] | 0; i12 = (i11 | 0) == 0; L13 : do if (!i12) { i6 = i11 + -1 | 0; i7 = (i6 & i11 | 0) == 0; if (i7) i8 = i6 & i13; else i8 = (i13 >>> 0) % (i11 >>> 0) | 0; i2 = HEAP32[(HEAP32[i14 >> 2] | 0) + (i8 << 2) >> 2] | 0; if (!i2) i1 = i8; else { i9 = HEAP32[i15 >> 2] | 0; i1 = i9; while (1) { i2 = HEAP32[i2 >> 2] | 0; if (!i2) { i1 = i8; break L13; } i5 = HEAP32[i2 + 4 >> 2] | 0; if (i7) i5 = i5 & i6; else i5 = (i5 >>> 0) % (i11 >>> 0) | 0; if ((i5 | 0) != (i8 | 0)) { i1 = i8; break L13; } if (!(_strcmp(HEAP32[i2 + 8 >> 2] | 0, i9) | 0)) break L5; } } } else i1 = 0; while (0); i6 = __Znwj(12) | 0; HEAP32[i6 + 8 >> 2] = HEAP32[i15 >> 2]; HEAP32[i6 + 4 >> 2] = i13; HEAP32[i6 >> 2] = 0; i7 = i14 + 12 | 0; d3 = +(((HEAP32[i7 >> 2] | 0) + 1 | 0) >>> 0); d4 = +HEAPF32[i14 + 16 >> 2]; do if (i12 | d3 > +(i11 >>> 0) * d4) { i1 = (i11 >>> 0 > 2 & (i11 + -1 & i11 | 0) == 0 & 1 | i11 << 1) ^ 1; i2 = ~~+Math_ceil(+(d3 / d4)) >>> 0; __ZNSt3__212__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE6rehashEj(i14, i1 >>> 0 < i2 >>> 0 ? i2 : i1); i1 = HEAP32[i10 >> 2] | 0; i2 = i1 + -1 | 0; if (!(i2 & i1)) { i5 = i1; i1 = i2 & i13; break; } else { i5 = i1; i1 = (i13 >>> 0) % (i1 >>> 0) | 0; break; } } else i5 = i11; while (0); i1 = (HEAP32[i14 >> 2] | 0) + (i1 << 2) | 0; i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i13 = i14 + 8 | 0; HEAP32[i6 >> 2] = HEAP32[i13 >> 2]; HEAP32[i13 >> 2] = i6; HEAP32[i1 >> 2] = i13; i1 = HEAP32[i6 >> 2] | 0; if (i1 | 0) { i1 = HEAP32[i1 + 4 >> 2] | 0; i2 = i5 + -1 | 0; if (!(i2 & i5)) i1 = i1 & i2; else i1 = (i1 >>> 0) % (i5 >>> 0) | 0; HEAP32[(HEAP32[i14 >> 2] | 0) + (i1 << 2) >> 2] = i6; } } else { HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = i6; } HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 1; i1 = HEAP32[i15 >> 2] | 0; } else { i1 = HEAP32[i1 + 8 >> 2] | 0; HEAP32[i15 >> 2] = i1; } while (0); HEAP32[i16 >> 2] = i1; STACKTOP = i17; return; } function __ZNSt3__2L12utf8_to_ucs4EPKhS1_RS1_PjS3_RS3_mNS_12codecvt_modeE(i1, i10, i11, i2, i12, i13, i14, i3) { i1 = i1 | 0; i10 = i10 | 0; i11 = i11 | 0; i2 = i2 | 0; i12 = i12 | 0; i13 = i13 | 0; i14 = i14 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i15 = 0; HEAP32[i11 >> 2] = i1; HEAP32[i13 >> 2] = i2; if (i3 & 4) { i1 = HEAP32[i11 >> 2] | 0; i2 = i10; if ((((i2 - i1 | 0) > 2 ? (HEAP8[i1 >> 0] | 0) == -17 : 0) ? (HEAP8[i1 + 1 >> 0] | 0) == -69 : 0) ? (HEAP8[i1 + 2 >> 0] | 0) == -65 : 0) HEAP32[i11 >> 2] = i1 + 3; } else i2 = i10; L9 : while (1) { i8 = HEAP32[i11 >> 2] | 0; i1 = i8 >>> 0 < i10 >>> 0; if (!i1) { i15 = 40; break; } i9 = HEAP32[i13 >> 2] | 0; if (i9 >>> 0 >= i12 >>> 0) { i15 = 40; break; } i5 = HEAP8[i8 >> 0] | 0; i7 = i5 & 255; do if (i5 << 24 >> 24 > -1) { if (i7 >>> 0 > i14 >>> 0) { i1 = 2; break L9; } HEAP32[i9 >> 2] = i7; HEAP32[i11 >> 2] = i8 + 1; } else { if ((i5 & 255) < 194) { i1 = 2; break L9; } if ((i5 & 255) < 224) { if ((i2 - i8 | 0) < 2) { i1 = 1; break L9; } i1 = HEAPU8[i8 + 1 >> 0] | 0; if ((i1 & 192 | 0) != 128) { i1 = 2; break L9; } i1 = i1 & 63 | i7 << 6 & 1984; if (i1 >>> 0 > i14 >>> 0) { i1 = 2; break L9; } HEAP32[i9 >> 2] = i1; HEAP32[i11 >> 2] = i8 + 2; break; } if ((i5 & 255) < 240) { if ((i2 - i8 | 0) < 3) { i1 = 1; break L9; } i3 = HEAP8[i8 + 1 >> 0] | 0; i1 = HEAP8[i8 + 2 >> 0] | 0; switch (i5 << 24 >> 24) { case -32: { if ((i3 & -32) << 24 >> 24 != -96) { i1 = 2; break L9; } break; } case -19: { if ((i3 & -32) << 24 >> 24 != -128) { i1 = 2; break L9; } break; } default: if ((i3 & -64) << 24 >> 24 != -128) { i1 = 2; break L9; } } i1 = i1 & 255; if ((i1 & 192 | 0) != 128) { i1 = 2; break L9; } i1 = (i3 & 255) << 6 & 4032 | i7 << 12 & 61440 | i1 & 63; if (i1 >>> 0 > i14 >>> 0) { i1 = 2; break L9; } HEAP32[i9 >> 2] = i1; HEAP32[i11 >> 2] = i8 + 3; break; } if ((i5 & 255) >= 245) { i1 = 2; break L9; } if ((i2 - i8 | 0) < 4) { i1 = 1; break L9; } i6 = HEAP8[i8 + 1 >> 0] | 0; i1 = HEAP8[i8 + 2 >> 0] | 0; i4 = HEAP8[i8 + 3 >> 0] | 0; switch (i5 << 24 >> 24) { case -16: { if ((i6 + 112 & 255) >= 48) { i1 = 2; break L9; } break; } case -12: { if ((i6 & -16) << 24 >> 24 != -128) { i1 = 2; break L9; } break; } default: if ((i6 & -64) << 24 >> 24 != -128) { i1 = 2; break L9; } } i3 = i1 & 255; if ((i3 & 192 | 0) != 128) { i1 = 2; break L9; } i1 = i4 & 255; if ((i1 & 192 | 0) != 128) { i1 = 2; break L9; } i1 = (i6 & 255) << 12 & 258048 | i7 << 18 & 1835008 | i3 << 6 & 4032 | i1 & 63; if (i1 >>> 0 > i14 >>> 0) { i1 = 2; break L9; } HEAP32[i9 >> 2] = i1; HEAP32[i11 >> 2] = i8 + 4; } while (0); HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 4; } if ((i15 | 0) == 40) i1 = i1 & 1; return i1 | 0; } function __ZNSt3__2L20utf8_to_utf16_lengthEPKhS1_jmNS_12codecvt_modeE(i13, i10, i11, i12, i1) { i13 = i13 | 0; i10 = i10 | 0; i11 = i11 | 0; i12 = i12 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = i10; if ((((i1 & 4 | 0) != 0 ? (i9 - i13 | 0) > 2 : 0) ? (HEAP8[i13 >> 0] | 0) == -17 : 0) ? (HEAP8[i13 + 1 >> 0] | 0) == -69 : 0) { i1 = 0; i8 = (HEAP8[i13 + 2 >> 0] | 0) == -65 ? i13 + 3 | 0 : i13; } else { i1 = 0; i8 = i13; } L6 : while (1) { if (!(i1 >>> 0 < i11 >>> 0 & i8 >>> 0 < i10 >>> 0)) { i2 = 39; break; } i6 = HEAP8[i8 >> 0] | 0; i7 = i6 & 255; if (i7 >>> 0 > i12 >>> 0) { i2 = 39; break; } do if (i6 << 24 >> 24 <= -1) { if ((i6 & 255) < 194) { i2 = 39; break L6; } if ((i6 & 255) < 224) { if ((i9 - i8 | 0) < 2) { i2 = 39; break L6; } i2 = HEAPU8[i8 + 1 >> 0] | 0; if ((i2 & 192 | 0) != 128) { i2 = 39; break L6; } if ((i2 & 63 | i7 << 6 & 1984) >>> 0 > i12 >>> 0) { i2 = 39; break L6; } else { i2 = i8 + 2 | 0; break; } } if ((i6 & 255) < 240) { i3 = i8; if ((i9 - i3 | 0) < 3) { i2 = 39; break L6; } i4 = HEAP8[i8 + 1 >> 0] | 0; i2 = HEAP8[i8 + 2 >> 0] | 0; switch (i6 << 24 >> 24) { case -32: { if ((i4 & -32) << 24 >> 24 != -96) { i2 = 19; break L6; } break; } case -19: { if ((i4 & -32) << 24 >> 24 != -128) { i2 = 21; break L6; } break; } default: if ((i4 & -64) << 24 >> 24 != -128) { i2 = 23; break L6; } } i2 = i2 & 255; if ((i2 & 192 | 0) != 128) { i2 = 39; break L6; } if (((i4 & 255) << 6 & 4032 | i7 << 12 & 61440 | i2 & 63) >>> 0 > i12 >>> 0) { i2 = 39; break L6; } else { i2 = i8 + 3 | 0; break; } } if ((i6 & 255) >= 245) { i2 = 39; break L6; } i3 = i8; if ((i11 - i1 | 0) >>> 0 < 2 | (i9 - i3 | 0) < 4) { i2 = 39; break L6; } i5 = HEAP8[i8 + 1 >> 0] | 0; i2 = HEAP8[i8 + 2 >> 0] | 0; i4 = HEAP8[i8 + 3 >> 0] | 0; switch (i6 << 24 >> 24) { case -16: { if ((i5 + 112 & 255) >= 48) { i2 = 30; break L6; } break; } case -12: { if ((i5 & -16) << 24 >> 24 != -128) { i2 = 32; break L6; } break; } default: if ((i5 & -64) << 24 >> 24 != -128) { i2 = 34; break L6; } } i3 = i2 & 255; if ((i3 & 192 | 0) != 128) { i2 = 39; break L6; } i2 = i4 & 255; if ((i2 & 192 | 0) != 128) { i2 = 39; break L6; } if (((i5 & 255) << 12 & 258048 | i7 << 18 & 1835008 | i3 << 6 & 4032 | i2 & 63) >>> 0 > i12 >>> 0) { i2 = 39; break L6; } else { i1 = i1 + 1 | 0; i2 = i8 + 4 | 0; } } else i2 = i8 + 1 | 0; while (0); i1 = i1 + 1 | 0; i8 = i2; } if ((i2 | 0) == 19) i1 = i3 - i13 | 0; else if ((i2 | 0) == 21) i1 = i3 - i13 | 0; else if ((i2 | 0) == 23) i1 = i3 - i13 | 0; else if ((i2 | 0) == 30) i1 = i3 - i13 | 0; else if ((i2 | 0) == 32) i1 = i3 - i13 | 0; else if ((i2 | 0) == 34) i1 = i3 - i13 | 0; else if ((i2 | 0) == 39) i1 = i8 - i13 | 0; return i1 | 0; } function __ZNSt3__2L13utf16_to_utf8EPKtS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i1, i7, i8, i3, i2, i9, i10, i4) { i1 = i1 | 0; i7 = i7 | 0; i8 = i8 | 0; i3 = i3 | 0; i2 = i2 | 0; i9 = i9 | 0; i10 = i10 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; HEAP32[i8 >> 2] = i1; HEAP32[i9 >> 2] = i3; if (i4 & 2) if ((i2 - i3 | 0) < 3) i1 = 1; else { HEAP32[i9 >> 2] = i3 + 1; HEAP8[i3 >> 0] = -17; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = -69; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = -65; i5 = 4; } else i5 = 4; L4 : do if ((i5 | 0) == 4) { i6 = i7; i1 = HEAP32[i8 >> 2] | 0; while (1) { if (i1 >>> 0 >= i7 >>> 0) { i1 = 0; break L4; } i3 = HEAP16[i1 >> 1] | 0; i5 = i3 & 65535; if (i5 >>> 0 > i10 >>> 0) { i1 = 2; break L4; } do if ((i3 & 65535) < 128) { i1 = HEAP32[i9 >> 2] | 0; if ((i2 - i1 | 0) < 1) { i1 = 1; break L4; } HEAP32[i9 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i3; } else { if ((i3 & 65535) < 2048) { i1 = HEAP32[i9 >> 2] | 0; if ((i2 - i1 | 0) < 2) { i1 = 1; break L4; } HEAP32[i9 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i5 >>> 6 | 192; i4 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i5 & 63 | 128; break; } if ((i3 & 65535) < 55296) { i1 = HEAP32[i9 >> 2] | 0; if ((i2 - i1 | 0) < 3) { i1 = 1; break L4; } HEAP32[i9 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i5 >>> 12 | 224; i4 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i5 >>> 6 & 63 | 128; i4 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i5 & 63 | 128; break; } if ((i3 & 65535) >= 56320) { if ((i3 & 65535) < 57344) { i1 = 2; break L4; } i1 = HEAP32[i9 >> 2] | 0; if ((i2 - i1 | 0) < 3) { i1 = 1; break L4; } HEAP32[i9 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i5 >>> 12 | 224; i4 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i5 >>> 6 & 63 | 128; i4 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i5 & 63 | 128; break; } if ((i6 - i1 | 0) < 4) { i1 = 1; break L4; } i1 = i1 + 2 | 0; i3 = HEAPU16[i1 >> 1] | 0; if ((i3 & 64512 | 0) != 56320) { i1 = 2; break L4; } if ((i2 - (HEAP32[i9 >> 2] | 0) | 0) < 4) { i1 = 1; break L4; } i4 = i5 & 960; if (((i4 << 10) + 65536 | i5 << 10 & 64512 | i3 & 1023) >>> 0 > i10 >>> 0) { i1 = 2; break L4; } HEAP32[i8 >> 2] = i1; i1 = (i4 >>> 6) + 1 | 0; i4 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i1 >>> 2 | 240; i4 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i5 >>> 2 & 15 | i1 << 4 & 48 | 128; i4 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i5 << 4 & 48 | i3 >>> 6 & 15 | 128; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i3 & 63 | 128; } while (0); i1 = (HEAP32[i8 >> 2] | 0) + 2 | 0; HEAP32[i8 >> 2] = i1; } } while (0); return i1 | 0; } function __ZNSt3__2L19utf8_to_ucs4_lengthEPKhS1_jmNS_12codecvt_modeE(i13, i10, i11, i12, i1) { i13 = i13 | 0; i10 = i10 | 0; i11 = i11 | 0; i12 = i12 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = i10; if ((((i1 & 4 | 0) != 0 ? (i9 - i13 | 0) > 2 : 0) ? (HEAP8[i13 >> 0] | 0) == -17 : 0) ? (HEAP8[i13 + 1 >> 0] | 0) == -69 : 0) { i8 = 0; i1 = (HEAP8[i13 + 2 >> 0] | 0) == -65 ? i13 + 3 | 0 : i13; } else { i8 = 0; i1 = i13; } L6 : while (1) { if (!(i8 >>> 0 < i11 >>> 0 & i1 >>> 0 < i10 >>> 0)) { i2 = 40; break; } i6 = HEAP8[i1 >> 0] | 0; i7 = i6 & 255; do if (i6 << 24 >> 24 <= -1) { if ((i6 & 255) < 194) { i2 = 40; break L6; } if ((i6 & 255) < 224) { if ((i9 - i1 | 0) < 2) { i2 = 40; break L6; } i2 = HEAPU8[i1 + 1 >> 0] | 0; if ((i2 & 192 | 0) != 128) { i2 = 40; break L6; } if ((i2 & 63 | i7 << 6 & 1984) >>> 0 > i12 >>> 0) { i2 = 40; break L6; } i1 = i1 + 2 | 0; break; } if ((i6 & 255) < 240) { i3 = i1; if ((i9 - i3 | 0) < 3) { i2 = 40; break L6; } i4 = HEAP8[i1 + 1 >> 0] | 0; i2 = HEAP8[i1 + 2 >> 0] | 0; switch (i6 << 24 >> 24) { case -32: { if ((i4 & -32) << 24 >> 24 != -96) { i2 = 20; break L6; } break; } case -19: { if ((i4 & -32) << 24 >> 24 != -128) { i2 = 22; break L6; } break; } default: if ((i4 & -64) << 24 >> 24 != -128) { i2 = 24; break L6; } } i2 = i2 & 255; if ((i2 & 192 | 0) != 128) { i2 = 40; break L6; } if (((i4 & 255) << 6 & 4032 | i7 << 12 & 61440 | i2 & 63) >>> 0 > i12 >>> 0) { i2 = 40; break L6; } else { i1 = i1 + 3 | 0; break; } } if ((i6 & 255) >= 245) { i2 = 40; break L6; } i3 = i1; if ((i9 - i3 | 0) < 4) { i2 = 40; break L6; } i5 = HEAP8[i1 + 1 >> 0] | 0; i2 = HEAP8[i1 + 2 >> 0] | 0; i4 = HEAP8[i1 + 3 >> 0] | 0; switch (i6 << 24 >> 24) { case -16: { if ((i5 + 112 & 255) >= 48) { i2 = 31; break L6; } break; } case -12: { if ((i5 & -16) << 24 >> 24 != -128) { i2 = 33; break L6; } break; } default: if ((i5 & -64) << 24 >> 24 != -128) { i2 = 35; break L6; } } i3 = i2 & 255; if ((i3 & 192 | 0) != 128) { i2 = 40; break L6; } i2 = i4 & 255; if ((i2 & 192 | 0) != 128) { i2 = 40; break L6; } if (((i5 & 255) << 12 & 258048 | i7 << 18 & 1835008 | i3 << 6 & 4032 | i2 & 63) >>> 0 > i12 >>> 0) { i2 = 40; break L6; } else i1 = i1 + 4 | 0; } else { if (i7 >>> 0 > i12 >>> 0) { i2 = 40; break L6; } i1 = i1 + 1 | 0; } while (0); i8 = i8 + 1 | 0; } if ((i2 | 0) == 20) i1 = i3 - i13 | 0; else if ((i2 | 0) == 22) i1 = i3 - i13 | 0; else if ((i2 | 0) == 24) i1 = i3 - i13 | 0; else if ((i2 | 0) == 31) i1 = i3 - i13 | 0; else if ((i2 | 0) == 33) i1 = i3 - i13 | 0; else if ((i2 | 0) == 35) i1 = i3 - i13 | 0; else if ((i2 | 0) == 40) i1 = i1 - i13 | 0; return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder9makeUnaryERNS_7ElementENS_7UnaryOpENS_8WasmTypeE(i1, i12, i2, i7) { i1 = i1 | 0; i12 = i12 | 0; i2 = i2 | 0; i7 = i7 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i13 = i3 + 48 | 0; i11 = i3 + 60 | 0; i9 = i3 + 36 | 0; i8 = i3 + 24 | 0; i6 = i3 + 12 | 0; i5 = i3; i4 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; HEAP32[i4 + 8 >> 2] = i2; i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i12, 1) | 0) | 0; i10 = i4 + 12 | 0; HEAP32[i10 >> 2] = i1; __ZN4wasm5Unary8finalizeEv(i4); if (i2 >>> 0 < 22 ? (i2 = HEAP32[(HEAP32[i10 >> 2] | 0) + 4 >> 2] | 0, !((i2 | 0) == 5 | (i2 | 0) == (i7 | 0))) : 0) { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 17726, 13); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i5, __ZN4wasm17getExpressionNameEPNS_10ExpressionE(i4) | 0) | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i6 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i6, 14763) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i8, __ZN4wasm13printWasmTypeENS_8WasmTypeE(i7) | 0) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i9, 17740) | 0; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i11, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[(HEAP32[i10 >> 2] | 0) + 4 >> 2] | 0) | 0) | 0; HEAP32[i13 >> 2] = HEAP32[i2 >> 2]; HEAP32[i13 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i13 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i11 = HEAP32[i12 + 28 >> 2] | 0; i12 = HEAP32[i12 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i3, i13); HEAP32[i3 + 12 >> 2] = i11; HEAP32[i3 + 16 >> 2] = i12; ___cxa_throw(i3 | 0, 8, 154); } STACKTOP = i3; return i4 | 0; } function __ZN4wasm22SExpressionWasmBuilder8makeLoadERNS_7ElementENS_8WasmTypeE(i8, i7, i1) { i8 = i8 | 0; i7 = i7 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i10 = i12 + 12 | 0; i11 = i12; i4 = _strchr(__ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i7, 0) | 0) | 0, 46) | 0; i5 = i4 + 5 | 0; i9 = __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(HEAP32[i8 + 4 >> 2] | 0) | 0; HEAP32[i9 + 4 >> 2] = i1; i1 = (__ZN4wasm15getWasmTypeSizeENS_8WasmTypeE(i1) | 0) & 255; i2 = i9 + 8 | 0; HEAP8[i2 >> 0] = i1; L1 : do switch (HEAP8[i5 >> 0] | 0) { case 56: { HEAP8[i2 >> 0] = 1; i3 = i4 + 6 | 0; i6 = 1; break; } case 49: { if ((HEAP8[i4 + 6 >> 0] | 0) == 54) { HEAP8[i2 >> 0] = 2; i3 = i4 + 7 | 0; i6 = 2; break L1; } else ___assert_fail(18185, 17152, 1025, 18201); break; } case 51: { if ((HEAP8[i4 + 6 >> 0] | 0) == 50) { HEAP8[i2 >> 0] = 4; i3 = i4 + 7 | 0; i6 = 4; break L1; } else ___assert_fail(18210, 17152, 1029, 18201); break; } default: { i3 = i5; i6 = i1; } } while (0); if (!(HEAP8[i3 >> 0] | 0)) i1 = 0; else i1 = (HEAP8[i3 + 1 >> 0] | 0) == 115 & 1; HEAP8[i9 + 9 >> 0] = i1; i4 = i9 + 12 | 0; HEAP32[i4 >> 2] = 0; i5 = i9 + 16 | 0; __ZN4wasm7AddressaSEy(i5, i6 & 255, 0) | 0; i3 = 1; L15 : while (1) { i6 = __ZN4wasm7ElementixEj(i7, i3) | 0; i6 = (HEAP8[i6 >> 0] | 0) == 0; i2 = __ZN4wasm7ElementixEj(i7, i3) | 0; if (!i6) { i1 = 22; break; } i2 = __ZN4wasm7Element5c_strEv(i2) | 0; i1 = _strchr(i2, 61) | 0; if (!i1) { i1 = 14; break; } i1 = i1 + 1 | 0; switch (HEAP8[i2 >> 0] | 0) { case 97: { i6 = _atoi(i1) | 0; __ZN4wasm7AddressaSEy(i5, i6, ((i6 | 0) < 0) << 31 >> 31) | 0; break; } case 111: { i1 = _atoll(i1) | 0; i6 = tempRet0; if (i6 >>> 0 > 0 | (i6 | 0) == 0 & i1 >>> 0 > 4294967295) { i1 = 18; break L15; } __ZN4wasm7AddressaSEy(i4, i1, 0) | 0; break; } default: { i1 = 20; break L15; } } i3 = i3 + 1 | 0; } if ((i1 | 0) == 14) ___assert_fail(18226, 17152, 1040, 18201); else if ((i1 | 0) == 18) { i12 = ___cxa_allocate_exception(20) | 0; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i10, 18229, 10); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i12, i10); ___cxa_throw(i12 | 0, 8, 154); } else if ((i1 | 0) == 20) { i12 = ___cxa_allocate_exception(20) | 0; HEAP32[i11 >> 2] = 0; HEAP32[i11 + 4 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i11, 18240, 18); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i12, i11); ___cxa_throw(i12 | 0, 8, 154); } else if ((i1 | 0) == 22) { i11 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i8, i2) | 0; HEAP32[i9 + 20 >> 2] = i11; STACKTOP = i12; return i9 | 0; } return 0; } function __ZNKSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe(i1, i13, i15, i2, i3, i16, i12) { i1 = i1 | 0; i13 = i13 | 0; i15 = i15 | 0; i2 = i2 | 0; i3 = i3 | 0; i16 = i16 | 0; i12 = i12 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i14 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0; i20 = STACKTOP; STACKTOP = STACKTOP + 576 | 0; i8 = i20 + 424 | 0; i11 = i20; i7 = i20 + 24 | 0; i19 = i20 + 16 | 0; i10 = i20 + 12 | 0; i14 = i20 + 8 | 0; i4 = i20 + 564 | 0; i5 = i20 + 4 | 0; i9 = i20 + 464 | 0; HEAP32[i19 >> 2] = i7; i18 = i19 + 4 | 0; HEAP32[i18 >> 2] = 178; i1 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i14 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i14, 47508) | 0; HEAP8[i4 >> 0] = 0; HEAP32[i5 >> 2] = HEAP32[i15 >> 2]; i6 = HEAP32[i3 + 4 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i5 >> 2]; if (__ZNSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i13, i8, i2, i14, i6, i16, i4, i1, i19, i10, i7 + 400 | 0) | 0) { FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 7](i1, 40228, 40238, i8) | 0; i1 = (HEAP32[i10 >> 2] | 0) - (HEAP32[i19 >> 2] | 0) | 0; if ((i1 | 0) > 392) { i1 = _malloc((i1 >> 2) + 2 | 0) | 0; i2 = i1; if (!i1) i1 = 0; } else { i1 = i9; i2 = 0; } if (HEAP8[i4 >> 0] | 0) { HEAP8[i1 >> 0] = 45; i1 = i1 + 1 | 0; } i6 = i8 + 40 | 0; i7 = i8; i5 = HEAP32[i19 >> 2] | 0; while (1) { if (i5 >>> 0 >= (HEAP32[i10 >> 2] | 0) >>> 0) break; i4 = HEAP32[i5 >> 2] | 0; i3 = i8; while (1) { if ((i3 | 0) == (i6 | 0)) { i3 = i6; break; } if ((HEAP32[i3 >> 2] | 0) == (i4 | 0)) break; i3 = i3 + 4 | 0; } HEAP8[i1 >> 0] = HEAP8[40228 + (i3 - i7 >> 2) >> 0] | 0; i5 = i5 + 4 | 0; i1 = i1 + 1 | 0; } HEAP8[i1 >> 0] = 0; HEAP32[i11 >> 2] = i12; _sscanf(i9, 40129, i11) | 0; if (i2 | 0) _free(i2); } i1 = HEAP32[i13 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i13 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i13 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); i1 = HEAP32[i15 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) != -1) if (i3) break; else { i17 = 32; break; } else { HEAP32[i15 >> 2] = 0; i17 = 30; break; } } else i17 = 30; while (0); if ((i17 | 0) == 30 ? i3 : 0) i17 = 32; if ((i17 | 0) == 32) HEAP32[i16 >> 2] = HEAP32[i16 >> 2] | 2; i2 = HEAP32[i13 >> 2] | 0; __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i14 >> 2] | 0) | 0; i1 = HEAP32[i19 >> 2] | 0; HEAP32[i19 >> 2] = 0; if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i18 >> 2] & 255](i1); STACKTOP = i20; return i2 | 0; } function __ZN4wasm17SExpressionParser11parseStringEv(i9) { i9 = i9 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i10 + 20 | 0; i6 = i10 + 16 | 0; i3 = i10 + 4 | 0; i4 = i10; i2 = HEAP32[i9 >> 2] | 0; i1 = HEAP8[i2 >> 0] | 0; if (i1 << 24 >> 24 == 36) { i1 = i2 + 1 | 0; HEAP32[i9 >> 2] = i1; i8 = 1; i7 = i1; i1 = HEAP8[i1 >> 0] | 0; } else { i8 = 0; i7 = i2; } do if (i1 << 24 >> 24 != 34) { i2 = i7; L16 : while (1) { if (!(i1 << 24 >> 24)) break; if (_isspace(i1 << 24 >> 24) | 0) break; switch (i1 << 24 >> 24) { case 40: case 41: case 59: break L16; default: {} } i6 = i2 + 1 | 0; HEAP32[i9 >> 2] = i6; i1 = HEAP8[i6 >> 0] | 0; i2 = i6; } if ((i7 | 0) == (i2 | 0)) { i10 = ___cxa_allocate_exception(20) | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 17235, 15); i7 = HEAP32[i9 + 4 >> 2] | 0; i8 = HEAP32[i9 >> 2] | 0; i9 = HEAP32[i9 + 8 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i10, i3); HEAP32[i10 + 12 >> 2] = i7; HEAP32[i10 + 16 >> 2] = i8 - i9; ___cxa_throw(i10 | 0, 8, 154); } else { HEAP8[i2 >> 0] = 0; i6 = __ZN10MixedArena5allocIN4wasm7ElementEEEPT_v(i9 + 12 | 0) | 0; __ZN6cashew7IStringC2EPKcb(i4, i7, 0); i5 = HEAP32[i4 >> 2] | 0; HEAP8[i6 >> 0] = 0; HEAP32[i6 + 20 >> 2] = i5; HEAP8[i6 + 24 >> 0] = i8; i8 = i7 - (HEAP32[i9 + 8 >> 2] | 0) | 0; HEAP32[i6 + 28 >> 2] = HEAP32[i9 + 4 >> 2]; HEAP32[i6 + 32 >> 2] = i8; HEAP8[HEAP32[i9 >> 2] >> 0] = i1; i1 = i6; break; } } else { i1 = i7 + 1 | 0; HEAP32[i9 >> 2] = i1; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i5 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } L9 : while (1) { i2 = HEAP8[i1 >> 0] | 0; switch (i2 << 24 >> 24) { case 34: break L9; case 92: { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i5, 92); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i5, HEAP8[(HEAP32[i9 >> 2] | 0) + 1 >> 0] | 0); i1 = (HEAP32[i9 >> 2] | 0) + 2 | 0; break; } default: { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i5, i2); i1 = (HEAP32[i9 >> 2] | 0) + 1 | 0; } } HEAP32[i9 >> 2] = i1; } HEAP32[i9 >> 2] = i1 + 1; i1 = __ZN10MixedArena5allocIN4wasm7ElementEEEPT_v(i9 + 12 | 0) | 0; __ZN6cashew7IStringC2EPKcb(i6, (HEAP8[i5 + 11 >> 0] | 0) < 0 ? HEAP32[i5 >> 2] | 0 : i5, 0); i6 = HEAP32[i6 >> 2] | 0; HEAP8[i1 >> 0] = 0; HEAP32[i1 + 20 >> 2] = i6; HEAP8[i1 + 24 >> 0] = i8; i8 = i7 - (HEAP32[i9 + 8 >> 2] | 0) | 0; HEAP32[i1 + 28 >> 2] = HEAP32[i9 + 4 >> 2]; HEAP32[i1 + 32 >> 2] = i8; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); } while (0); STACKTOP = i10; return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i6, i7, i8) { i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i4 = i12 + 56 | 0; i1 = i12; i2 = i12 + 48 | 0; i9 = i12 + 40 | 0; i10 = i12 + 32 | 0; i11 = i12 + 24 | 0; i3 = i12 + 16 | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i1, HEAP32[i7 >> 2] | 0); HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + (HEAP32[i1 + 8 >> 2] | 0); L1 : do switch (HEAP32[i1 + 12 >> 2] | 0) { case 0: { i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17parseAfterKeywordERNS3_4FragERPcPKc(i6, i1, i7, i8) | 0; break; } case 2: { i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterIdentERNS3_4FragERPcPKc(i6, i1, i7, i8) | 0; break; } case 5: case 4: case 3: { i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i6, i1) | 0; HEAP8[i2 >> 0] = 1; HEAP32[i2 + 4 >> 2] = i5; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i6, i4, i7, i8) | 0; break; } case 6: { i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) == (HEAP32[11329] | 0)) { i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterParenERPc(i6, i7) | 0; HEAP8[i9 >> 0] = 1; HEAP32[i9 + 4 >> 2] = i5; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i9 + 4 >> 2]; i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i6, i4, i7, i8) | 0; break L1; } if ((i1 | 0) == (HEAP32[11330] | 0)) { i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterBraceERPc(i6, i7) | 0; HEAP8[i10 >> 0] = 1; HEAP32[i10 + 4 >> 2] = i5; HEAP32[i4 >> 2] = HEAP32[i10 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i6, i4, i7, i8) | 0; break L1; } if ((i1 | 0) == (HEAP32[11331] | 0)) { i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterCurlyERPc(i6, i7) | 0; HEAP8[i11 >> 0] = 1; HEAP32[i11 + 4 >> 2] = i5; HEAP32[i4 >> 2] = HEAP32[i11 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i6, i4, i7, i8) | 0; break L1; } else _abort(); break; } case 1: { i5 = HEAP32[i1 >> 2] | 0; HEAP8[i3 >> 0] = 0; HEAP32[i3 + 4 >> 2] = i5; HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; i5 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseExpressionENS3_17ExpressionElementERPcPKc(i6, i4, i7, i8) | 0; break; } default: _abort(); } while (0); STACKTOP = i12; return i5 | 0; } function __ZNKSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIwS3_NS_9allocatorIwEEEE(i1, i10, i12, i5, i2, i13, i7) { i1 = i1 | 0; i10 = i10 | 0; i12 = i12 | 0; i5 = i5 | 0; i2 = i2 | 0; i13 = i13 | 0; i7 = i7 | 0; var i3 = 0, i4 = 0, i6 = 0, i8 = 0, i9 = 0, i11 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0; i17 = STACKTOP; STACKTOP = STACKTOP + 432 | 0; i18 = i17 + 424 | 0; i1 = i17 + 24 | 0; i16 = i17 + 16 | 0; i6 = i17 + 8 | 0; i11 = i17 + 4 | 0; i3 = i17 + 428 | 0; i8 = i17; HEAP32[i16 >> 2] = i1; i15 = i16 + 4 | 0; HEAP32[i15 >> 2] = 178; i4 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i11 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i11, 47508) | 0; HEAP8[i3 >> 0] = 0; i9 = HEAP32[i12 >> 2] | 0; HEAP32[i8 >> 2] = i9; i2 = HEAP32[i2 + 4 >> 2] | 0; HEAP32[i18 >> 2] = HEAP32[i8 >> 2]; i8 = i9; if (__ZNSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_(i10, i18, i5, i11, i2, i13, i3, i4, i16, i6, i1 + 400 | 0) | 0) { i1 = i7 + 8 + 3 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP32[HEAP32[i7 >> 2] >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; } else { HEAP32[i7 >> 2] = 0; HEAP8[i1 >> 0] = 0; } if (HEAP8[i3 >> 0] | 0) __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i7, FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 44 >> 2] & 31](i4, 45) | 0); i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 44 >> 2] & 31](i4, 48) | 0; i2 = HEAP32[i6 >> 2] | 0; i3 = i2 + -4 | 0; i1 = HEAP32[i16 >> 2] | 0; while (1) { if (i1 >>> 0 >= i3 >>> 0) break; if ((HEAP32[i1 >> 2] | 0) != (i4 | 0)) break; i1 = i1 + 4 | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendIPwEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorIS9_EE5valueERS5_E4typeES9_S9_(i7, i1, i2) | 0; } i1 = HEAP32[i10 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i10 >> 2] = 0; i2 = 1; break; } else { i2 = (HEAP32[i10 >> 2] | 0) == 0; break; } } else i2 = 1; while (0); do if (i9) { i1 = HEAP32[i8 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i8 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i9 >> 2] | 0) + 36 >> 2] & 127](i8) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i14 = 27; break; } else { HEAP32[i12 >> 2] = 0; i14 = 25; break; } } else i14 = 25; while (0); if ((i14 | 0) == 25 ? i2 : 0) i14 = 27; if ((i14 | 0) == 27) HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 2; i2 = HEAP32[i10 >> 2] | 0; __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i11 >> 2] | 0) | 0; i1 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = 0; if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i15 >> 2] & 255](i1); STACKTOP = i17; return i2 | 0; } function __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i3, i1, i4) { i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; var d2 = 0.0; do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 45112) | 0) { i4 = __ZN6cashew3RefixEj(i4, 1) | 0; i4 = __ZN6cashew5Value10getIntegerEv(HEAP32[i4 >> 2] | 0) | 0; HEAP32[i3 >> 2] = 1; HEAP32[i3 + 8 >> 2] = i4; } else { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 45160) | 0) { if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 45192) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 45112) | 0 : 0) { i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0; i4 = __ZN6cashew5Value9getNumberEv(HEAP32[i4 >> 2] | 0) | 0; d2 = +HEAPF64[i4 >> 3]; HEAP32[i3 >> 2] = 4; HEAPF64[i3 + 8 >> 3] = d2; break; } if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 45196) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 45112) | 0 : 0) { i1 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0; i1 = __ZN6cashew5Value9getNumberEv(HEAP32[i1 >> 2] | 0) | 0; d2 = -+HEAPF64[i1 >> 3]; if (__ZN4wasm12isSInteger32Ed(d2) | 0) { HEAP32[i3 >> 2] = 1; HEAP32[i3 + 8 >> 2] = ~~d2; break; } if (__ZN4wasm12isUInteger32Ed(d2) | 0) { HEAP32[i3 >> 2] = 1; HEAP32[i3 + 8 >> 2] = ~~d2 >>> 0; break; } else ___assert_fail(27745, 11743, 400, 27790); } if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 45192) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 45160) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0, 45196) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 0) | 0, 45112) | 0 : 0) { i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 1) | 0; i4 = __ZN6cashew5Value9getNumberEv(HEAP32[i4 >> 2] | 0) | 0; d2 = -+HEAPF64[i4 >> 3]; HEAP32[i3 >> 2] = 4; HEAPF64[i3 + 8 >> 3] = d2; break; } if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 1) | 0, 45196) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 0) | 0, 45160) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 1) | 0, 45192) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 0) | 0, 45112) | 0 : 0) { i4 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i4, 2) | 0, 2) | 0, 1) | 0; i4 = __ZN6cashew5Value9getNumberEv(HEAP32[i4 >> 2] | 0) | 0; d2 = -+HEAPF64[i4 >> 3]; HEAP32[i3 >> 2] = 4; HEAPF64[i3 + 8 >> 3] = d2; break; } } HEAP32[i3 >> 2] = 0; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; } while (0); return; } function __ZZ11instantiateEN19JSExternalInterface5storeEPN4wasm5StoreENS0_7AddressENS0_7LiteralE(i5, i11, i2, i12) { i5 = i5 | 0; i11 = i11 | 0; i2 = i2 | 0; i12 = i12 | 0; var d1 = 0.0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i4 = i14 + 32 | 0; i3 = i14 + 84 | 0; i6 = i14 + 52 | 0; i7 = i14 + 80 | 0; i8 = i14 + 16 | 0; i9 = i14 + 48 | 0; i10 = i14; i13 = HEAP32[i2 >> 2] | 0; L1 : do if ((HEAP32[i12 >> 2] | 0) == 2) { HEAP32[i6 >> 2] = HEAP32[i11 >> 2]; HEAP32[i6 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i6 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; HEAP32[i6 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i6 + 16 >> 2] = HEAP32[i11 + 16 >> 2]; HEAP32[i6 + 20 >> 2] = HEAP32[i11 + 20 >> 2]; HEAP32[i6 + 24 >> 2] = HEAP32[i11 + 24 >> 2]; HEAP8[i6 + 8 >> 0] = 4; HEAP32[i6 + 4 >> 2] = 1; i2 = __ZNK4wasm7Literal6geti64Ev(i12) | 0; i11 = tempRet0; i12 = HEAP32[(HEAP32[i5 >> 2] | 0) + 12 >> 2] | 0; __ZN4wasm7AddressC2Ey(i7, i13, 0); HEAP32[i8 >> 2] = 1; HEAP32[i8 + 8 >> 2] = i2; HEAP32[i3 >> 2] = HEAP32[i7 >> 2]; HEAP32[i4 >> 2] = HEAP32[i8 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i8 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i8 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i8 + 12 >> 2]; FUNCTION_TABLE_viiii[i12 & 15](i5, i6, i3, i4); i12 = HEAP32[(HEAP32[i5 >> 2] | 0) + 12 >> 2] | 0; __ZN4wasm7AddressC2Ey(i9, i13 + 4 | 0, 0); HEAP32[i10 >> 2] = 1; HEAP32[i10 + 8 >> 2] = i11; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; HEAP32[i4 >> 2] = HEAP32[i10 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i10 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i10 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i10 + 12 >> 2]; FUNCTION_TABLE_viiii[i12 & 15](i5, i6, i3, i4); } else { i2 = HEAP8[i11 + 8 >> 0] | 0; i3 = i2 & 255; if ((HEAP32[i11 + 16 >> 2] | 0) >>> 0 >= i3 >>> 0 ? (i3 + -1 & i13 | 0) == 0 : 0) { if (((HEAP32[i11 + 4 >> 2] | 0) + -3 | 0) >>> 0 < 2) switch (i2 << 24 >> 24) { case 4: { +_emscripten_asm_const_did(3, i13 | 0, +(+__ZNK4wasm7Literal6getf32Ev(i12))); break L1; } case 8: { +_emscripten_asm_const_did(4, i13 | 0, +(+__ZNK4wasm7Literal6getf64Ev(i12))); break L1; } default: _abort(); } switch (i2 << 24 >> 24) { case 1: { _emscripten_asm_const_iii(29, i13 | 0, __ZNK4wasm7Literal6geti32Ev(i12) | 0) | 0; break L1; } case 2: { _emscripten_asm_const_iii(30, i13 | 0, __ZNK4wasm7Literal6geti32Ev(i12) | 0) | 0; break L1; } case 4: { _emscripten_asm_const_iii(2, i13 | 0, __ZNK4wasm7Literal6geti32Ev(i12) | 0) | 0; break L1; } default: _abort(); } } i2 = ((HEAP32[i11 + 4 >> 2] | 0) + -3 | 0) >>> 0 < 2; if (i2) d1 = +__ZN4wasm7Literal8getFloatEv(i12); else { i12 = __ZN4wasm7Literal10getIntegerEv(i12) | 0; d1 = +(i12 >>> 0) + 4294967296.0 * +(tempRet0 | 0); } +_emscripten_asm_const_diiid(28, i13 | 0, i3 | 0, i2 & 1 | 0, +d1); } while (0); STACKTOP = i14; return; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE10visitBlockEPNS_5BlockE(i8, i9, i1) { i8 = i8 | 0; i9 = i9 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i10 = i14 + 24 | 0; i11 = i14 + 28 | 0; i12 = i14; HEAP32[i10 >> 2] = i1; HEAP32[i11 >> 2] = 0; i7 = i11 + 4 | 0; HEAP32[i7 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; i3 = i11 + 8 | 0; __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i11, i10); while (1) { i1 = HEAP32[i10 >> 2] | 0; if (!(HEAP32[i1 + 20 >> 2] | 0)) break; i6 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i1 + 12 | 0, 0) | 0; if ((HEAP32[HEAP32[i6 >> 2] >> 2] | 0) != 1) break; i1 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj((HEAP32[i10 >> 2] | 0) + 12 | 0, 0) | 0; i1 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i10 >> 2] = i1; i2 = HEAP32[i7 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 >> 2] | 0)) { __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i11, i10); continue; } else { HEAP32[i2 >> 2] = i1; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 4; continue; } } HEAP32[i8 >> 2] = 0; i5 = i8 + 8 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; i5 = i8 + 16 | 0; HEAP32[i5 >> 2] = 0; i3 = HEAP32[i7 >> 2] | 0; i6 = HEAP32[i3 + -4 >> 2] | 0; i2 = i3; i1 = 0; while (1) { if ((i2 | 0) == (HEAP32[i11 >> 2] | 0)) break; i4 = HEAP32[i3 + -4 >> 2] | 0; HEAP32[i10 >> 2] = i4; i2 = 0; while (1) { if ((i2 | 0) == -1) break; i15 = i2 + -1 | 0; HEAP32[i7 >> 2] = i3 + (i15 << 2); i2 = i15; } L16 : do if (!i1) { i3 = i4 + 12 | 0; i2 = i4 + 20 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i2 >> 2] | 0) >>> 0) { i1 = 0; break L16; } if (!((i1 | 0) == 0 ? (HEAP32[i10 >> 2] | 0) != (i6 | 0) : 0) ? (i13 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0, __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i12, i9, HEAP32[i13 >> 2] | 0), HEAP32[i8 >> 2] = HEAP32[i12 >> 2], HEAP32[i8 + 4 >> 2] = HEAP32[i12 + 4 >> 2], HEAP32[i8 + 8 >> 2] = HEAP32[i12 + 8 >> 2], HEAP32[i8 + 12 >> 2] = HEAP32[i12 + 12 >> 2], HEAP32[i8 + 16 >> 2] = HEAP32[i12 + 16 >> 2], i13 = HEAP32[i5 >> 2] | 0, i13 | 0) : 0) break; i1 = i1 + 1 | 0; } if ((i13 | 0) == (HEAP32[(HEAP32[i10 >> 2] | 0) + 8 >> 2] | 0)) { HEAP32[i5 >> 2] = 0; i1 = 0; } else i1 = i13; } else if ((i1 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) { HEAP32[i5 >> 2] = 0; i1 = 0; } while (0); i3 = HEAP32[i7 >> 2] | 0; i2 = i3; } __ZNSt3__213__vector_baseIPN4wasm5BlockENS_9allocatorIS3_EEED2Ev(i11); STACKTOP = i14; return; } function __ZN6cashew10IStringSetC2EPKc(i18, i1) { i18 = i18 | 0; i1 = i1 | 0; var i2 = 0, d3 = 0.0, d4 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i19 = 0, i20 = 0, i21 = 0, i22 = 0; i22 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i19 = i22; i20 = i18 + 16 | 0; HEAP32[i18 >> 2] = 0; HEAP32[i18 + 4 >> 2] = 0; HEAP32[i18 + 8 >> 2] = 0; HEAP32[i18 + 12 >> 2] = 0; HEAPF32[i20 >> 2] = 1.0; i17 = i18 + 20 | 0; HEAP32[i17 >> 2] = 0; HEAP32[i18 + 24 >> 2] = 0; HEAP32[i18 + 28 >> 2] = 0; i13 = (_strlen(i1) | 0) + 1 | 0; __ZNSt3__26vectorIcNS_9allocatorIcEEE6resizeEj(i17, i13); i17 = HEAP32[i17 >> 2] | 0; _strncpy(i17, i1, i13) | 0; i13 = i18 + 4 | 0; i14 = i18 + 12 | 0; i15 = i18 + 8 | 0; i1 = i17; while (1) { i16 = _strchr(i1, 32) | 0; i17 = (i16 | 0) != 0; if (i17) HEAP8[i16 >> 0] = 0; __ZN6cashew7IStringC2EPKcb(i19, i1, 1); i9 = HEAP32[i19 >> 2] | 0; i12 = i9 * 33 ^ 5381; i10 = HEAP32[i13 >> 2] | 0; i11 = (i10 | 0) == 0; i6 = i9; L6 : do if (!i11) { i7 = i10 + -1 | 0; i8 = (i7 & i10 | 0) == 0; if (i8) i1 = i7 & i12; else i1 = (i12 >>> 0) % (i10 >>> 0) | 0; i2 = HEAP32[(HEAP32[i18 >> 2] | 0) + (i1 << 2) >> 2] | 0; if (!i2) i21 = 15; else do { i2 = HEAP32[i2 >> 2] | 0; if (!i2) { i21 = 15; break L6; } i5 = HEAP32[i2 + 4 >> 2] | 0; if (i8) i5 = i5 & i7; else i5 = (i5 >>> 0) % (i10 >>> 0) | 0; if ((i5 | 0) != (i1 | 0)) { i21 = 15; break L6; } } while ((HEAP32[i2 + 8 >> 2] | 0) != (i6 | 0)); } else { i1 = 0; i21 = 15; } while (0); if ((i21 | 0) == 15) { i21 = 0; i6 = __Znwj(12) | 0; HEAP32[i6 + 8 >> 2] = i9; HEAP32[i6 + 4 >> 2] = i12; HEAP32[i6 >> 2] = 0; d3 = +(((HEAP32[i14 >> 2] | 0) + 1 | 0) >>> 0); d4 = +HEAPF32[i20 >> 2]; do if (i11 | d3 > +(i10 >>> 0) * d4) { i1 = (i10 >>> 0 > 2 & (i10 + -1 & i10 | 0) == 0 & 1 | i10 << 1) ^ 1; i2 = ~~+Math_ceil(+(d3 / d4)) >>> 0; __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE6rehashEj(i18, i1 >>> 0 < i2 >>> 0 ? i2 : i1); i1 = HEAP32[i13 >> 2] | 0; i2 = i1 + -1 | 0; if (!(i2 & i1)) { i5 = i1; i1 = i2 & i12; break; } else { i5 = i1; i1 = (i12 >>> 0) % (i1 >>> 0) | 0; break; } } else i5 = i10; while (0); i1 = (HEAP32[i18 >> 2] | 0) + (i1 << 2) | 0; i2 = HEAP32[i1 >> 2] | 0; if (!i2) { HEAP32[i6 >> 2] = HEAP32[i15 >> 2]; HEAP32[i15 >> 2] = i6; HEAP32[i1 >> 2] = i15; i1 = HEAP32[i6 >> 2] | 0; if (i1 | 0) { i1 = HEAP32[i1 + 4 >> 2] | 0; i2 = i5 + -1 | 0; if (!(i2 & i5)) i1 = i1 & i2; else i1 = (i1 >>> 0) % (i5 >>> 0) | 0; HEAP32[(HEAP32[i18 >> 2] | 0) + (i1 << 2) >> 2] = i6; } } else { HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = i6; } HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + 1; } if (i17) i1 = i16 + 1 | 0; else break; } STACKTOP = i22; return; } function __ZNKSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe(i1, i13, i15, i2, i3, i16, i12) { i1 = i1 | 0; i13 = i13 | 0; i15 = i15 | 0; i2 = i2 | 0; i3 = i3 | 0; i16 = i16 | 0; i12 = i12 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i14 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0; i20 = STACKTOP; STACKTOP = STACKTOP + 240 | 0; i8 = i20 + 24 | 0; i11 = i20; i7 = i20 + 140 | 0; i19 = i20 + 16 | 0; i10 = i20 + 12 | 0; i14 = i20 + 8 | 0; i4 = i20 + 136 | 0; i5 = i20 + 4 | 0; i9 = i20 + 36 | 0; HEAP32[i19 >> 2] = i7; i18 = i19 + 4 | 0; HEAP32[i18 >> 2] = 178; i1 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i14 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i14, 47476) | 0; HEAP8[i4 >> 0] = 0; HEAP32[i5 >> 2] = HEAP32[i15 >> 2]; i6 = HEAP32[i3 + 4 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i5 >> 2]; if (__ZNSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i13, i8, i2, i14, i6, i16, i4, i1, i19, i10, i7 + 100 | 0) | 0) { FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 32 >> 2] & 7](i1, 40118, 40128, i8) | 0; i1 = (HEAP32[i10 >> 2] | 0) - (HEAP32[i19 >> 2] | 0) | 0; if ((i1 | 0) > 98) { i1 = _malloc(i1 + 2 | 0) | 0; i2 = i1; if (!i1) i1 = 0; } else { i1 = i9; i2 = 0; } if (HEAP8[i4 >> 0] | 0) { HEAP8[i1 >> 0] = 45; i1 = i1 + 1 | 0; } i6 = i8 + 10 | 0; i7 = i8; i5 = HEAP32[i19 >> 2] | 0; while (1) { if (i5 >>> 0 >= (HEAP32[i10 >> 2] | 0) >>> 0) break; i4 = HEAP8[i5 >> 0] | 0; i3 = i8; while (1) { if ((i3 | 0) == (i6 | 0)) { i3 = i6; break; } if ((HEAP8[i3 >> 0] | 0) == i4 << 24 >> 24) break; i3 = i3 + 1 | 0; } HEAP8[i1 >> 0] = HEAP8[40118 + (i3 - i7) >> 0] | 0; i5 = i5 + 1 | 0; i1 = i1 + 1 | 0; } HEAP8[i1 >> 0] = 0; HEAP32[i11 >> 2] = i12; _sscanf(i9, 40129, i11) | 0; if (i2 | 0) _free(i2); } i1 = HEAP32[i13 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i13 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i13 >> 2] | 0; break; } } else i1 = 0; while (0); i1 = (i1 | 0) == 0; i2 = HEAP32[i15 >> 2] | 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) { HEAP32[i15 >> 2] = 0; i17 = 27; break; } if (!i1) i17 = 28; } else i17 = 27; while (0); if ((i17 | 0) == 27 ? i1 : 0) i17 = 28; if ((i17 | 0) == 28) HEAP32[i16 >> 2] = HEAP32[i16 >> 2] | 2; i2 = HEAP32[i13 >> 2] | 0; __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i14 >> 2] | 0) | 0; i1 = HEAP32[i19 >> 2] | 0; HEAP32[i19 >> 2] = 0; if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i18 >> 2] & 255](i1); STACKTOP = i20; return i2 | 0; } function __ZN4wasm17WasmBinaryBuilder11readGlobalsEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i10; i5 = i2 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21375) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } i4 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; if (HEAP8[i5 >> 0] | 0) { i9 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19427) | 0, i4) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } i6 = i2 + 124 | 0; i7 = i2 + 96 | 0; i8 = i2 + 100 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= i4 >>> 0) { i1 = 7; break; } if (HEAP8[i5 >> 0] | 0) { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19433) | 0; i11 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i11; i11 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i11 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 28 >> 2] & 31](i11, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i11) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } i9 = __Znwj(12) | 0; HEAP32[i9 >> 2] = 0; i11 = __ZN4wasm17WasmBinaryBuilder11getWasmTypeEv(i2) | 0; HEAP32[i9 + 4 >> 2] = i11; if (HEAP32[i6 >> 2] | 0) { i1 = 11; break; } __ZN4wasm17WasmBinaryBuilder18processExpressionsEv(i2); if (((HEAP32[i8 >> 2] | 0) - (HEAP32[i7 >> 2] | 0) | 0) != 4) { i1 = 13; break; } i11 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i2) | 0; HEAP32[i9 + 8 >> 2] = i11; if (HEAP32[i6 >> 2] | 0) { i1 = 15; break; } __ZN4wasm6Module9addGlobalEPNS_6GlobalE(HEAP32[i2 >> 2] | 0, i9); i1 = i1 + 1 | 0; } if ((i1 | 0) == 7) { STACKTOP = i10; return; } else if ((i1 | 0) == 11) ___assert_fail(19841, 18854, 1583, 21390); else if ((i1 | 0) == 13) ___assert_fail(21402, 18854, 1585, 21390); else if ((i1 | 0) == 15) ___assert_fail(19841, 18854, 1587, 21390); } function __ZNKSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIcS3_NS_9allocatorIcEEEE(i1, i10, i12, i5, i2, i13, i7) { i1 = i1 | 0; i10 = i10 | 0; i12 = i12 | 0; i5 = i5 | 0; i2 = i2 | 0; i13 = i13 | 0; i7 = i7 | 0; var i3 = 0, i4 = 0, i6 = 0, i8 = 0, i9 = 0, i11 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0; i17 = STACKTOP; STACKTOP = STACKTOP + 144 | 0; i18 = i17 + 24 | 0; i1 = i17 + 32 | 0; i16 = i17 + 16 | 0; i6 = i17 + 8 | 0; i11 = i17 + 4 | 0; i3 = i17 + 28 | 0; i8 = i17; HEAP32[i16 >> 2] = i1; i15 = i16 + 4 | 0; HEAP32[i15 >> 2] = 178; i4 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i11 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i11, 47476) | 0; HEAP8[i3 >> 0] = 0; i9 = HEAP32[i12 >> 2] | 0; HEAP32[i8 >> 2] = i9; i2 = HEAP32[i2 + 4 >> 2] | 0; HEAP32[i18 >> 2] = HEAP32[i8 >> 2]; i8 = i9; if (__ZNSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_(i10, i18, i5, i11, i2, i13, i3, i4, i16, i6, i1 + 100 | 0) | 0) { i1 = i7 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i7 >> 2] >> 0] = 0; HEAP32[i7 + 4 >> 2] = 0; } else { HEAP8[i7 >> 0] = 0; HEAP8[i1 >> 0] = 0; } if (HEAP8[i3 >> 0] | 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i7, FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 45) | 0); i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 48) | 0; i2 = HEAP32[i6 >> 2] | 0; i3 = i2 + -1 | 0; i1 = HEAP32[i16 >> 2] | 0; while (1) { if (i1 >>> 0 >= i3 >>> 0) break; if ((HEAP8[i1 >> 0] | 0) != i4 << 24 >> 24) break; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorIS9_EE5valueERS5_E4typeES9_S9_(i7, i1, i2) | 0; } i1 = HEAP32[i10 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i10 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i10 >> 2] | 0; break; } } else i1 = 0; while (0); i1 = (i1 | 0) == 0; do if (i9) { if ((HEAP32[i8 + 12 >> 2] | 0) == (HEAP32[i8 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i9 >> 2] | 0) + 36 >> 2] & 127](i8) | 0) == -1 : 0) { HEAP32[i12 >> 2] = 0; i14 = 22; break; } if (!i1) i14 = 23; } else i14 = 22; while (0); if ((i14 | 0) == 22 ? i1 : 0) i14 = 23; if ((i14 | 0) == 23) HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | 2; i2 = HEAP32[i10 >> 2] | 0; __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i11 >> 2] | 0) | 0; i1 = HEAP32[i16 >> 2] | 0; HEAP32[i16 >> 2] = 0; if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[i15 >> 2] & 255](i1); STACKTOP = i17; return i2 | 0; } function __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekoffExNS_8ios_base7seekdirEj(i8, i9, i5, i6, i4, i10) { i8 = i8 | 0; i9 = i9 | 0; i5 = i5 | 0; i6 = i6 | 0; i4 = i4 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i7 = 0, i11 = 0, i12 = 0; i1 = i9 + 44 | 0; i2 = HEAP32[i1 >> 2] | 0; i11 = i9 + 24 | 0; i12 = HEAP32[i11 >> 2] | 0; i3 = i12; if (i2 >>> 0 < i12 >>> 0) { HEAP32[i1 >> 2] = i12; i7 = i3; } else i7 = i2; i1 = i10 & 24; L4 : do if (!i1) { i12 = i8; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; i12 = i8 + 8 | 0; HEAP32[i12 >> 2] = -1; HEAP32[i12 + 4 >> 2] = -1; } else { if ((i4 | 0) == 1 & (i1 | 0) == 24) { i12 = i8; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; i12 = i8 + 8 | 0; HEAP32[i12 >> 2] = -1; HEAP32[i12 + 4 >> 2] = -1; break; } L10 : do switch (i4 | 0) { case 0: { i1 = 0; i2 = 0; break; } case 1: if (!(i10 & 8)) { i2 = i3 - (HEAP32[i9 + 20 >> 2] | 0) | 0; i1 = i2; i2 = ((i2 | 0) < 0) << 31 >> 31; break L10; } else { i2 = (HEAP32[i9 + 12 >> 2] | 0) - (HEAP32[i9 + 8 >> 2] | 0) | 0; i1 = i2; i2 = ((i2 | 0) < 0) << 31 >> 31; break L10; } case 2: { i1 = i9 + 32 | 0; if ((HEAP8[i1 + 11 >> 0] | 0) < 0) i1 = HEAP32[i1 >> 2] | 0; i2 = i7 - i1 | 0; i1 = i2; i2 = ((i2 | 0) < 0) << 31 >> 31; break; } default: { i12 = i8; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; i12 = i8 + 8 | 0; HEAP32[i12 >> 2] = -1; HEAP32[i12 + 4 >> 2] = -1; break L4; } } while (0); i2 = _i64Add(i1 | 0, i2 | 0, i5 | 0, i6 | 0) | 0; i3 = tempRet0; if ((i3 | 0) >= 0) { i1 = i9 + 32 | 0; if ((HEAP8[i1 + 11 >> 0] | 0) < 0) i1 = HEAP32[i1 >> 2] | 0; i6 = i7 - i1 | 0; i5 = ((i6 | 0) < 0) << 31 >> 31; if (!((i5 | 0) < (i3 | 0) | (i5 | 0) == (i3 | 0) & i6 >>> 0 < i2 >>> 0)) { i1 = i10 & 8; if (!((i2 | 0) == 0 & (i3 | 0) == 0)) { if (i1 | 0 ? (HEAP32[i9 + 12 >> 2] | 0) == 0 : 0) { i12 = i8; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; i12 = i8 + 8 | 0; HEAP32[i12 >> 2] = -1; HEAP32[i12 + 4 >> 2] = -1; break; } if ((i10 & 16 | 0) != 0 & (i12 | 0) == 0) { i12 = i8; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; i12 = i8 + 8 | 0; HEAP32[i12 >> 2] = -1; HEAP32[i12 + 4 >> 2] = -1; break; } } if (i1 | 0) { HEAP32[i9 + 12 >> 2] = (HEAP32[i9 + 8 >> 2] | 0) + i2; HEAP32[i9 + 16 >> 2] = i7; } if (i10 & 16 | 0) HEAP32[i11 >> 2] = (HEAP32[i9 + 20 >> 2] | 0) + i2; i12 = i8; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; i12 = i8 + 8 | 0; HEAP32[i12 >> 2] = i2; HEAP32[i12 + 4 >> 2] = i3; break; } } i12 = i8; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; i12 = i8 + 8 | 0; HEAP32[i12 >> 2] = -1; HEAP32[i12 + 4 >> 2] = -1; } while (0); return; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner9visitHostEPNS_4HostE(i11, i4, i1) { i11 = i11 | 0; i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i8 = i12 + 36 | 0; i7 = i12 + 32 | 0; i2 = i12; i9 = i12 + 28 | 0; i10 = i12 + 24 | 0; L1 : do switch (HEAP32[i1 + 8 >> 2] | 0) { case 0: { HEAP32[i11 >> 2] = 1; HEAP32[i11 + 8 >> 2] = 65536; HEAP32[i11 + 16 >> 2] = 0; break; } case 1: { i10 = HEAP32[(HEAP32[i4 + 4 >> 2] | 0) + 32 >> 2] | 0; HEAP32[i11 >> 2] = 1; HEAP32[i11 + 8 >> 2] = i10; HEAP32[i11 + 16 >> 2] = 0; break; } case 2: { i6 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i1 + 16 | 0, 0) | 0; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i4, HEAP32[i6 >> 2] | 0); if (!(HEAP32[i2 + 16 >> 2] | 0)) { i5 = i4 + 4 | 0; i6 = HEAP32[(HEAP32[i5 >> 2] | 0) + 32 >> 2] | 0; i3 = __ZNK4wasm7Literal6geti32Ev(i2) | 0; if (i3 >>> 0 > 65535) FUNCTION_TABLE_vii[HEAP32[HEAP32[i4 >> 2] >> 2] & 255](i4, 26012); i2 = HEAP32[i5 >> 2] | 0; i1 = HEAP32[i2 + 32 >> 2] | 0; if (i1 >>> 0 >= ~i3 >>> 0) { FUNCTION_TABLE_vii[HEAP32[HEAP32[i4 >> 2] >> 2] & 255](i4, 26049); i2 = HEAP32[i5 >> 2] | 0; i1 = HEAP32[i2 + 32 >> 2] | 0; } i3 = i1 + i3 | 0; if (i3 >>> 0 > (HEAP32[(HEAP32[i2 >> 2] | 0) + 76 >> 2] | 0) >>> 0) { FUNCTION_TABLE_vii[HEAP32[HEAP32[i4 >> 2] >> 2] & 255](i4, 26087); i1 = HEAP32[i5 >> 2] | 0; i2 = i1; i1 = HEAP32[i1 + 32 >> 2] | 0; } i4 = HEAP32[i2 + 36 >> 2] | 0; i2 = HEAP32[(HEAP32[i4 >> 2] | 0) + 16 >> 2] | 0; __ZN4wasm7AddressC2Ey(i9, i1 << 16, 0); __ZN4wasm7AddressC2Ey(i10, i3 << 16, 0); HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; FUNCTION_TABLE_viii[i2 & 7](i4, i7, i8); __ZN4wasm7AddressaSEy((HEAP32[i5 >> 2] | 0) + 32 | 0, i3, 0) | 0; HEAP32[i11 >> 2] = 1; HEAP32[i11 + 8 >> 2] = i6; HEAP32[i11 + 16 >> 2] = 0; } else { HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i11 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i11 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i11 + 12 >> 2] = HEAP32[i2 + 12 >> 2]; HEAP32[i11 + 16 >> 2] = HEAP32[i2 + 16 >> 2]; HEAP32[i11 + 20 >> 2] = HEAP32[i2 + 20 >> 2]; } break; } case 3: { i10 = (HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[11430] | 0); HEAP32[i11 >> 2] = 1; i1 = i11 + 8 | 0; if (i10) { HEAP32[i1 >> 2] = 1; HEAP32[i11 + 16 >> 2] = 0; break L1; } else { HEAP32[i1 >> 2] = 0; HEAP32[i11 + 16 >> 2] = 0; break L1; } } default: _abort(); } while (0); STACKTOP = i12; return; } function __ZNKSt3__220__time_get_c_storageIcE8__monthsEv(i1) { i1 = i1 | 0; var i2 = 0; if ((HEAP8[44360] | 0) == 0 ? ___cxa_guard_acquire(44360) | 0 : 0) { if ((HEAP8[44368] | 0) == 0 ? ___cxa_guard_acquire(44368) | 0 : 0) { i2 = 47888; do { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = i2 + 12 | 0; } while ((i2 | 0) != 48176); ___cxa_atexit(171, 0, ___dso_handle | 0) | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47888, 39338) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47900, 39346) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47912, 39355) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47924, 39361) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47936, 39367) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47948, 39371) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47960, 39376) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47972, 39381) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47984, 39388) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47996, 39398) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48008, 39406) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48020, 39415) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48032, 39424) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48044, 39428) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48056, 39432) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48068, 39436) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48080, 39367) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48092, 39440) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48104, 39444) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48116, 39448) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48128, 39452) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48140, 39456) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48152, 39460) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48164, 39464) | 0; HEAP32[12044] = 47888; } return HEAP32[12044] | 0; } function __ZN4wasm17WasmBinaryBuilder15maybeVisitStoreERPNS_10ExpressionEh(i4, i5, i1) { i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i7; switch (i1 << 24 >> 24) { case 46: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 1; HEAP32[i2 + 4 >> 2] = 1; i1 = 1; i6 = 11; break; } case 47: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 2; HEAP32[i2 + 4 >> 2] = 1; i1 = 2; i6 = 11; break; } case 51: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 4; HEAP32[i2 + 4 >> 2] = 1; i1 = 4; i6 = 11; break; } case 48: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 1; HEAP32[i2 + 4 >> 2] = 2; i1 = 1; i6 = 11; break; } case 49: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 2; HEAP32[i2 + 4 >> 2] = 2; i1 = 2; i6 = 11; break; } case 50: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 4; HEAP32[i2 + 4 >> 2] = 2; i1 = 4; i6 = 11; break; } case 52: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 8; HEAP32[i2 + 4 >> 2] = 2; i1 = 8; i6 = 11; break; } case 53: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 4; HEAP32[i2 + 4 >> 2] = 3; i1 = 4; i6 = 11; break; } case 54: { i2 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i4 + 4 >> 2] | 0) | 0; HEAP8[i2 + 8 >> 0] = 8; HEAP32[i2 + 4 >> 2] = 4; i1 = 8; i6 = 11; break; } default: i1 = 0; } if ((i6 | 0) == 11) { if (HEAP8[i4 + 12 >> 0] | 0) { i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21278) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i1, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) | 0; i1 = HEAP8[i2 + 8 >> 0] | 0; } __ZN4wasm17WasmBinaryBuilder16readMemoryAccessERNS_7AddressEjS2_(i4, i2 + 16 | 0, i1 & 255, i2 + 12 | 0); i1 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i4) | 0; HEAP32[i2 + 24 >> 2] = i1; i1 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i4) | 0; HEAP32[i2 + 20 >> 2] = i1; HEAP32[i5 >> 2] = i2; i1 = 1; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder8makeLoopERNS_7ElementE(i6, i7) { i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i1 = i10 + 12 | 0; i2 = i10; i9 = __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(HEAP32[i6 + 4 >> 2] | 0) | 0; i8 = (__ZN4wasm7Element4listEv(i7) | 0) + 8 | 0; if (((HEAP32[i8 >> 2] | 0) >>> 0 > 2 ? (i8 = __ZN4wasm7ElementixEj(i7, 1) | 0, (HEAP8[i8 >> 0] | 0) == 0) : 0) ? (i8 = __ZN4wasm7ElementixEj(i7, 2) | 0, (HEAP8[i8 >> 0] | 0) == 0) : 0) { i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, 1) | 0) | 0; HEAP32[i9 + 8 >> 2] = i1; i1 = 2; } else { HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 18608, 8); i8 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i6, i1) | 0; HEAP32[i9 + 8 >> 2] = i8; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); i1 = 1; } i8 = (__ZN4wasm7Element4listEv(i7) | 0) + 8 | 0; if ((HEAP32[i8 >> 2] | 0) >>> 0 > i1 >>> 0 ? (i8 = __ZN4wasm7ElementixEj(i7, i1) | 0, (HEAP8[i8 >> 0] | 0) == 0) : 0) { i8 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i7, i1) | 0) | 0; HEAP32[i9 + 12 >> 2] = i8; i1 = i1 + 1 | 0; } else { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 18617, 7); i8 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i6, i2) | 0; HEAP32[i9 + 12 >> 2] = i8; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2); } i4 = i6 + 68 | 0; i2 = i9 + 8 | 0; i8 = i6 + 72 | 0; i3 = HEAP32[i8 >> 2] | 0; i5 = i6 + 76 | 0; if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) { __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i2); i3 = HEAP32[i8 >> 2] | 0; } else { HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; i3 = (HEAP32[i8 >> 2] | 0) + 4 | 0; HEAP32[i8 >> 2] = i3; } i2 = i9 + 12 | 0; if ((i3 | 0) == (HEAP32[i5 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i2); else { HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4; } i2 = __ZN4wasm22SExpressionWasmBuilder14makeMaybeBlockERNS_7ElementEjj(i6, i7, i1, -1) | 0; HEAP32[i9 + 16 >> 2] = i2; i2 = HEAP32[i8 >> 2] | 0; i1 = 0; i3 = i2; while (1) { if ((i1 | 0) == -1) { i1 = 0; break; } i7 = i1 + -1 | 0; i3 = i2 + (i7 << 2) | 0; HEAP32[i8 >> 2] = i3; i1 = i7; } while (1) { if ((i1 | 0) == -1) break; i7 = i1 + -1 | 0; HEAP32[i8 >> 2] = i3 + (i7 << 2); i1 = i7; } __ZN4wasm4Loop8finalizeEv(i9); STACKTOP = i10; return i9 | 0; } function __ZNKSt3__220__time_get_c_storageIwE8__monthsEv(i1) { i1 = i1 | 0; var i2 = 0; if ((HEAP8[44440] | 0) == 0 ? ___cxa_guard_acquire(44440) | 0 : 0) { if ((HEAP8[44448] | 0) == 0 ? ___cxa_guard_acquire(44448) | 0 : 0) { i2 = 48700; do { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = i2 + 12 | 0; } while ((i2 | 0) != 48988); ___cxa_atexit(175, 0, ___dso_handle | 0) | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48700, 8652) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48712, 8684) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48724, 8720) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48736, 8744) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48748, 8768) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48760, 8784) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48772, 8804) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48784, 8824) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48796, 8852) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48808, 8892) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48820, 8924) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48832, 8960) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48844, 8996) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48856, 9012) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48868, 9028) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48880, 9044) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48892, 8768) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48904, 9060) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48916, 9076) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48928, 9092) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48940, 9108) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48952, 9124) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48964, 9140) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48976, 9156) | 0; HEAP32[12247] = 48700; } return HEAP32[12247] | 0; } function __ZN4wasm15Asm2WasmBuilder16parseAsmBinaryOpEN6cashew7IStringENS1_3RefES3_PNS_10ExpressionES5_(i8, i3, i9, i10, i2, i1) { i8 = i8 | 0; i3 = i3 | 0; i9 = i9 | 0; i10 = i10 | 0; i2 = i2 | 0; i1 = i1 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i13 + 24 | 0; i1 = i13 + 20 | 0; i6 = i13 + 16 | 0; i11 = i13 + 4 | 0; i12 = i13; i4 = HEAP32[i2 + 4 >> 2] | 0; i5 = (i4 | 0) == 1; i2 = HEAP32[i3 >> 2] | 0; i3 = i2; do if ((i2 | 0) != (HEAP32[11298] | 0)) { if ((i2 | 0) == (HEAP32[11299] | 0)) { i1 = i5 ? 1 : (i4 | 0) == 3 ? 51 : 64; break; } if ((i2 | 0) == (HEAP32[11313] | 0)) { i1 = i5 ? 2 : (i4 | 0) == 3 ? 52 : 65; break; } if ((i2 | 0) != (HEAP32[11301] | 0)) if ((i2 | 0) != (HEAP32[11300] | 0)) if ((i2 | 0) != (HEAP32[11302] | 0)) if ((i2 | 0) != (HEAP32[11315] | 0)) if ((i2 | 0) != (HEAP32[11314] | 0)) if ((i2 | 0) != (HEAP32[11316] | 0)) { if ((i2 | 0) == (HEAP32[11309] | 0)) { i1 = i5 ? 15 : (i4 | 0) == 3 ? 57 : 70; break; } if ((i2 | 0) == (HEAP32[11310] | 0)) { i1 = i5 ? 16 : (i4 | 0) == 3 ? 58 : 71; break; } HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; HEAP32[i7 >> 2] = HEAP32[i1 >> 2]; if (__ZN4wasm15Asm2WasmBuilder18isUnsignedCoercionEN6cashew3RefE(i8, i7) | 0) i1 = 1; else { HEAP32[i6 >> 2] = HEAP32[i10 >> 2]; HEAP32[i7 >> 2] = HEAP32[i6 >> 2]; i1 = __ZN4wasm15Asm2WasmBuilder18isUnsignedCoercionEN6cashew3RefE(i8, i7) | 0; } if ((i2 | 0) == (HEAP32[11311] | 0)) if (i5) { i1 = i1 ? 4 : 3; break; } else { i1 = (i4 | 0) == 3 ? 53 : 66; break; } if ((i2 | 0) == (HEAP32[11312] | 0)) { STACKTOP = i13; return (i5 & i1 ? 6 : 5) | 0; } if ((i2 | 0) == (HEAP32[11306] | 0)) if (i5) { i1 = i1 ? 24 : 23; break; } else { i1 = (i4 | 0) == 3 ? 62 : 75; break; } if ((i2 | 0) == (HEAP32[11308] | 0)) if (i5) { i1 = i1 ? 22 : 21; break; } else { i1 = (i4 | 0) == 3 ? 61 : 74; break; } if ((i2 | 0) == (HEAP32[11307] | 0)) if (i5) { i1 = i1 ? 20 : 19; break; } else { i1 = (i4 | 0) == 3 ? 60 : 73; break; } if ((i2 | 0) != (HEAP32[11305] | 0)) { HEAP32[i11 >> 2] = 0; HEAP32[i11 + 4 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i11, 27726, 18); HEAP32[i12 >> 2] = i3; HEAP32[i7 >> 2] = HEAP32[i12 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i11, i7); } if (i5) { i1 = i1 ? 18 : 17; break; } else { i1 = (i4 | 0) == 3 ? 59 : 72; break; } } else i1 = 11; else i1 = 12; else i1 = 10; else i1 = 9; else i1 = 8; else i1 = 7; } else i1 = i5 ? 0 : (i4 | 0) == 3 ? 50 : 63; while (0); STACKTOP = i13; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder15getInlineStringEv(i5) { i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i11 + 16 | 0; i8 = i11 + 12 | 0; i9 = i11; i10 = i5 + 12 | 0; if (HEAP8[i10 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } i7 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i5) | 0; HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i9 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i3 = i9 + 11 | 0; i4 = i9 + 4 | 0; i2 = 0; while (1) { if (i2 >>> 0 >= i7 >>> 0) break; __ZNSt3__2plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_S6_(i6, i9, __ZN4wasm17WasmBinaryBuilder7getInt8Ev(i5) | 0); if ((HEAP8[i3 >> 0] | 0) < 0) { HEAP8[HEAP32[i9 >> 2] >> 0] = 0; HEAP32[i4 >> 2] = 0; } else { HEAP8[i9 >> 0] = 0; HEAP8[i3 >> 0] = 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i9, 0); HEAP32[i9 >> 2] = HEAP32[i6 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i6 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6); i2 = i2 + 1 | 0; } if (HEAP8[i10 >> 0] | 0) { i10 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19641) | 0, i9) | 0, 18951) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i10, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i10) | 0; } __ZN4wasm4NameC2ERKNSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i9); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9); STACKTOP = i11; return HEAP32[i8 >> 2] | 0; } function __ZN4wasm16PrintSExpression10visitBlockEPNS_5BlockE(i9, i1) { i9 = i9 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i12 + 20 | 0; i10 = i12 + 4 | 0; i11 = i12 + 8 | 0; i7 = i12; HEAP32[i10 >> 2] = i1; HEAP32[i11 >> 2] = 0; i8 = i11 + 4 | 0; HEAP32[i8 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; i4 = i11 + 8 | 0; i5 = i9 + 4 | 0; i2 = 0; i1 = 0; i3 = 0; while (1) { if ((i3 | 0) != (i2 | 0)) { __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i9 >> 2] | 0, HEAP32[i5 >> 2] | 0) | 0; i1 = HEAP32[i8 >> 2] | 0; } if ((i1 | 0) == (HEAP32[i4 >> 2] | 0)) __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i11, i10); else { HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 4; } __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i9 >> 2] | 0, 35166, 0) | 0; if (HEAP32[(HEAP32[i10 >> 2] | 0) + 8 >> 2] | 0) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i9 >> 2] | 0, 32) | 0; HEAP32[i7 >> 2] = HEAP32[(HEAP32[i10 >> 2] | 0) + 8 >> 2]; HEAP32[i6 >> 2] = HEAP32[i7 >> 2]; __ZN4wasm16PrintSExpression9printNameENS_4NameE(i9, i6) | 0; } __ZN4wasm16PrintSExpression9incIndentEv(i9); i1 = HEAP32[i10 >> 2] | 0; if (!(HEAP32[i1 + 20 >> 2] | 0)) break; i3 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i1 + 12 | 0, 0) | 0; if ((HEAP32[HEAP32[i3 >> 2] >> 2] | 0) != 1) break; i3 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj((HEAP32[i10 >> 2] | 0) + 12 | 0, 0) | 0; i3 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i3 >> 2] | 0) | 0; HEAP32[i10 >> 2] = i3; i3 = HEAP32[i8 >> 2] | 0; i2 = HEAP32[i11 >> 2] | 0; i1 = i3; } i2 = HEAP32[i8 >> 2] | 0; i5 = HEAP32[i2 + -4 >> 2] | 0; i1 = i2; while (1) { if ((i1 | 0) == (HEAP32[i11 >> 2] | 0)) break; i3 = HEAP32[i2 + -4 >> 2] | 0; HEAP32[i10 >> 2] = i3; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i7 = i1 + -1 | 0; HEAP32[i8 >> 2] = i2 + (i7 << 2); i1 = i7; } i4 = i3 + 12 | 0; i2 = i3 + 20 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i2 >> 2] | 0) >>> 0) break; if ((i1 | 0) == 0 ? (HEAP32[i10 >> 2] | 0) != (i5 | 0) : 0) { __ZN4wasm16PrintSExpression9decIndentEv(i9); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i9 >> 2] | 0, 10) | 0; } else { i7 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i1) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i9, HEAP32[i7 >> 2] | 0); } i1 = i1 + 1 | 0; } i2 = HEAP32[i8 >> 2] | 0; i1 = i2; } __ZN4wasm16PrintSExpression9decIndentEv(i9); __ZNSt3__213__vector_baseIPN4wasm5BlockENS_9allocatorIS3_EEED2Ev(i11); STACKTOP = i12; return; } function __ZN4wasm17WasmBinaryBuilder11readExportsEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i10; i5 = i2 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21348) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } i4 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; if (HEAP8[i5 >> 0] | 0) { i9 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19427) | 0, i4) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } i6 = i2 + 24 | 0; i7 = i2 + 28 | 0; i8 = i2 + 72 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= i4 >>> 0) { i1 = 7; break; } if (HEAP8[i5 >> 0] | 0) { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19433) | 0; i11 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i11; i11 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i11 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i11 >> 2] | 0) + 28 >> 2] & 31](i11, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i11) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } i9 = __Znwj(8) | 0; HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i3 >> 2] = i9; i9 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; if (i9 >>> 0 >= (HEAP32[i7 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) >> 2 >>> 0) { i1 = 11; break; } i11 = HEAP32[i3 >> 2] | 0; i12 = __ZN4wasm17WasmBinaryBuilder15getInlineStringEv(i2) | 0; HEAP32[i11 >> 2] = i12; i11 = __ZNSt3__23mapIPN4wasm6ExportEjNS_4lessIS3_EENS_9allocatorINS_4pairIKS3_jEEEEEixERS8_(i8, i3) | 0; HEAP32[i11 >> 2] = i9; i1 = i1 + 1 | 0; } if ((i1 | 0) == 7) { STACKTOP = i10; return; } else if ((i1 | 0) == 11) ___assert_fail(20277, 18854, 1569, 21363); } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE10visitBlockEPNS_5BlockE(i8, i9, i1) { i8 = i8 | 0; i9 = i9 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i10 = i14 + 24 | 0; i11 = i14 + 28 | 0; i12 = i14; HEAP32[i10 >> 2] = i1; HEAP32[i11 >> 2] = 0; i7 = i11 + 4 | 0; HEAP32[i7 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; i3 = i11 + 8 | 0; __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i11, i10); while (1) { i1 = HEAP32[i10 >> 2] | 0; if (!(HEAP32[i1 + 20 >> 2] | 0)) break; i6 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i1 + 12 | 0, 0) | 0; if ((HEAP32[HEAP32[i6 >> 2] >> 2] | 0) != 1) break; i1 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj((HEAP32[i10 >> 2] | 0) + 12 | 0, 0) | 0; i1 = __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i10 >> 2] = i1; i2 = HEAP32[i7 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 >> 2] | 0)) { __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i11, i10); continue; } else { HEAP32[i2 >> 2] = i1; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 4; continue; } } HEAP32[i8 >> 2] = 0; i5 = i8 + 8 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; i5 = i8 + 16 | 0; HEAP32[i5 >> 2] = 0; i3 = HEAP32[i7 >> 2] | 0; i6 = HEAP32[i3 + -4 >> 2] | 0; i2 = i3; i1 = 0; while (1) { if ((i2 | 0) == (HEAP32[i11 >> 2] | 0)) break; i4 = HEAP32[i3 + -4 >> 2] | 0; HEAP32[i10 >> 2] = i4; i2 = 0; while (1) { if ((i2 | 0) == -1) break; i15 = i2 + -1 | 0; HEAP32[i7 >> 2] = i3 + (i15 << 2); i2 = i15; } L16 : do if (!i1) { i3 = i4 + 12 | 0; i2 = i4 + 20 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i2 >> 2] | 0) >>> 0) { i1 = 0; break L16; } if (!((i1 | 0) == 0 ? (HEAP32[i10 >> 2] | 0) != (i6 | 0) : 0) ? (i13 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0, __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i12, i9, HEAP32[i13 >> 2] | 0), HEAP32[i8 >> 2] = HEAP32[i12 >> 2], HEAP32[i8 + 4 >> 2] = HEAP32[i12 + 4 >> 2], HEAP32[i8 + 8 >> 2] = HEAP32[i12 + 8 >> 2], HEAP32[i8 + 12 >> 2] = HEAP32[i12 + 12 >> 2], HEAP32[i8 + 16 >> 2] = HEAP32[i12 + 16 >> 2], i13 = HEAP32[i5 >> 2] | 0, i13 | 0) : 0) break; i1 = i1 + 1 | 0; } if ((i13 | 0) == (HEAP32[(HEAP32[i10 >> 2] | 0) + 8 >> 2] | 0)) { HEAP32[i5 >> 2] = 0; i1 = 0; } else i1 = i13; } else if ((i1 | 0) == (HEAP32[i4 + 8 >> 2] | 0)) { HEAP32[i5 >> 2] = 0; i1 = 0; } while (0); i3 = HEAP32[i7 >> 2] | 0; i2 = i3; } __ZNSt3__213__vector_baseIPN4wasm5BlockENS_9allocatorIS3_EEED2Ev(i11); STACKTOP = i14; return; } function __ZNSt3__29__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjS4_(i4, i6, i11, i7, i12, i2, i3, i8, i13, i14, i10, i5) { i4 = i4 | 0; i6 = i6 | 0; i11 = i11 | 0; i7 = i7 | 0; i12 = i12 | 0; i2 = i2 | 0; i3 = i3 | 0; i8 = i8 | 0; i13 = i13 | 0; i14 = i14 | 0; i10 = i10 | 0; i5 = i5 | 0; var i1 = 0, i9 = 0; L1 : do if (i4 << 24 >> 24 == i2 << 24 >> 24) if (HEAP8[i6 >> 0] | 0) { HEAP8[i6 >> 0] = 0; i11 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i11 + 1; HEAP8[i11 >> 0] = 46; i12 = HEAP8[i8 + 11 >> 0] | 0; if (((i12 << 24 >> 24 < 0 ? HEAP32[i8 + 4 >> 2] | 0 : i12 & 255) | 0) != 0 ? (i1 = HEAP32[i14 >> 2] | 0, (i1 - i13 | 0) < 160) : 0) { i13 = HEAP32[i10 >> 2] | 0; HEAP32[i14 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i13; i1 = 0; } else i1 = 0; } else i1 = -1; else { if (i4 << 24 >> 24 == i3 << 24 >> 24 ? (i3 = HEAP8[i8 + 11 >> 0] | 0, (i3 << 24 >> 24 < 0 ? HEAP32[i8 + 4 >> 2] | 0 : i3 & 255) | 0) : 0) { if (!(HEAP8[i6 >> 0] | 0)) { i1 = -1; break; } i1 = HEAP32[i14 >> 2] | 0; if ((i1 - i13 | 0) >= 160) { i1 = 0; break; } i13 = HEAP32[i10 >> 2] | 0; HEAP32[i14 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i13; HEAP32[i10 >> 2] = 0; i1 = 0; break; } i3 = i5 + 32 | 0; i2 = 0; while (1) { i1 = i5 + i2 | 0; if ((i2 | 0) == 32) { i1 = i3; break; } if ((HEAP8[i1 >> 0] | 0) == i4 << 24 >> 24) break; else i2 = i2 + 1 | 0; } i2 = i1 - i5 | 0; if ((i2 | 0) > 31) i1 = -1; else { i3 = HEAP8[38819 + i2 >> 0] | 0; switch (i2 | 0) { case 24: case 25: { i1 = HEAP32[i12 >> 2] | 0; if ((i1 | 0) != (i7 | 0) ? (HEAPU8[i1 + -1 >> 0] & 95 | 0) != (HEAPU8[i11 >> 0] & 127 | 0) : 0) { i1 = -1; break L1; } HEAP32[i12 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i3; i1 = 0; break L1; } case 23: case 22: { HEAP8[i11 >> 0] = 80; i1 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i3; i1 = 0; break L1; } default: { i1 = i3 & 95; if ((((i1 | 0) == (HEAP8[i11 >> 0] | 0) ? (HEAP8[i11 >> 0] = i1 | 128, HEAP8[i6 >> 0] | 0) : 0) ? (HEAP8[i6 >> 0] = 0, i11 = HEAP8[i8 + 11 >> 0] | 0, (i11 << 24 >> 24 < 0 ? HEAP32[i8 + 4 >> 2] | 0 : i11 & 255) | 0) : 0) ? (i9 = HEAP32[i14 >> 2] | 0, (i9 - i13 | 0) < 160) : 0) { i13 = HEAP32[i10 >> 2] | 0; HEAP32[i14 >> 2] = i9 + 4; HEAP32[i9 >> 2] = i13; } i14 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i14 + 1; HEAP8[i14 >> 0] = i3; if ((i2 | 0) > 21) { i1 = 0; break L1; } HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 1; i1 = 0; break L1; } } } } while (0); return i1 | 0; } function __ZN4wasm17SExpressionParser5parseEv(i5) { i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i15 + 16 | 0; i8 = i15 + 12 | 0; i9 = i15; HEAP32[i6 >> 2] = 0; i10 = i6 + 4 | 0; HEAP32[i10 >> 2] = 0; HEAP32[i6 + 8 >> 2] = 0; i11 = i5 + 12 | 0; i12 = __ZN10MixedArena5allocIN4wasm7ElementEEEPT_v(i11) | 0; HEAP32[i8 >> 2] = i12; i12 = i6 + 8 | 0; i13 = i5 + 4 | 0; i7 = i5 + 8 | 0; L1 : while (1) { __ZN4wasm17SExpressionParser14skipWhitespaceEv(i5); i1 = HEAP32[i5 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 0: break L1; case 40: { HEAP32[i5 >> 2] = i1 + 1; i1 = HEAP32[i10 >> 2] | 0; if ((i1 | 0) == (HEAP32[i12 >> 2] | 0)) __ZNSt3__26vectorIPN4wasm7ElementENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i6, i8); else { HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 4; } i4 = __ZN10MixedArena5allocIN4wasm7ElementEEEPT_v(i11) | 0; i3 = (HEAP32[i5 >> 2] | 0) + -1 - (HEAP32[i7 >> 2] | 0) | 0; HEAP32[i4 + 28 >> 2] = HEAP32[i13 >> 2]; HEAP32[i4 + 32 >> 2] = i3; HEAP32[i8 >> 2] = i4; continue L1; } case 41: { HEAP32[i5 >> 2] = i1 + 1; i2 = HEAP32[i8 >> 2] | 0; i3 = HEAP32[i10 >> 2] | 0; i4 = HEAP32[i3 + -4 >> 2] | 0; HEAP32[i8 >> 2] = i4; if ((i3 | 0) == (HEAP32[i6 >> 2] | 0)) { i14 = 8; break L1; } else i1 = 0; while (1) { if ((i1 | 0) == -1) break; i16 = i1 + -1 | 0; HEAP32[i10 >> 2] = i3 + (i16 << 2); i1 = i16; } __ZN11ArenaVectorIPN4wasm7ElementEE9push_backES2_(__ZN4wasm7Element4listEv(i4) | 0, i2); continue L1; } default: { i16 = __ZN4wasm7Element4listEv(HEAP32[i8 >> 2] | 0) | 0; __ZN11ArenaVectorIPN4wasm7ElementEE9push_backES2_(i16, __ZN4wasm17SExpressionParser11parseStringEv(i5) | 0); continue L1; } } } if ((i14 | 0) == 8) ___assert_fail(17139, 17152, 171, 17172); if ((HEAP32[i10 >> 2] | 0) == (HEAP32[i6 >> 2] | 0)) { i16 = HEAP32[i8 >> 2] | 0; __ZNSt3__213__vector_baseIPN4wasm7ElementENS_9allocatorIS3_EEED2Ev(i6); STACKTOP = i15; return i16 | 0; } else { i16 = ___cxa_allocate_exception(20) | 0; HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i9, 17178, 18); i15 = HEAP32[i8 >> 2] | 0; i14 = HEAP32[i15 + 28 >> 2] | 0; i15 = HEAP32[i15 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i16, i9); HEAP32[i16 + 12 >> 2] = i14; HEAP32[i16 + 16 >> 2] = i15; ___cxa_throw(i16 | 0, 8, 154); } return 0; } function __ZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i9, i5, i3, i6) { i9 = i9 | 0; i5 = i5 | 0; i3 = i3 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i4 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i15 = i16 + 40 | 0; i4 = i16 + 36 | 0; i7 = i16; i8 = i16 + 24 | 0; i12 = i5 + 16 | 0; i1 = HEAP32[i12 >> 2] | 0; if (i1 >>> 0 > 250) { i10 = HEAP32[i5 + 36 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] & 255](i10, 25013); i10 = HEAP32[i12 >> 2] | 0; } else i10 = i1; HEAP32[i12 >> 2] = i10 + 1; i11 = i5 + 20 | 0; i13 = i5 + 24 | 0; i2 = HEAP32[i13 >> 2] | 0; i14 = i2 - (HEAP32[i11 >> 2] | 0) | 0; i1 = HEAP32[i3 >> 2] | 0; HEAP32[i15 >> 2] = i1; if (i2 >>> 0 < (HEAP32[i5 + 28 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = i1; HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 4; i1 = HEAP32[i3 >> 2] | 0; } else __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i11, i15); i3 = HEAP32[i5 >> 2] | 0; HEAP32[i4 >> 2] = i1; HEAP32[i15 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN4wasm6Module11getFunctionENS_4NameE(i3, i15) | 0; if (!i1) ___assert_fail(35005, 24695, 782, 25025); __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN13FunctionScopeC2EPNS_8FunctionES9_(i15, i1, i6); HEAP32[i8 >> 2] = 2540; HEAP32[i8 + 4 >> 2] = i5; HEAP32[i8 + 8 >> 2] = i15; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i7, i8, HEAP32[i1 + 36 >> 2] | 0); i8 = HEAP32[i7 + 16 >> 2] | 0; if (!((i8 | 0) == 0 | (i8 | 0) == (HEAP32[11431] | 0))) ___assert_fail(25046, 24695, 790, 25025); HEAP32[i9 >> 2] = HEAP32[i7 >> 2]; HEAP32[i9 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i9 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; HEAP32[i9 + 12 >> 2] = HEAP32[i7 + 12 >> 2]; i2 = HEAP32[i1 + 4 >> 2] | 0; if (!i2) { HEAP32[i9 >> 2] = 0; i1 = i9 + 8 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; i1 = 0; } else i1 = HEAP32[i9 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) ___assert_fail(25094, 24695, 793, 25025); HEAP32[i12 >> 2] = i10; i2 = HEAP32[i11 >> 2] | 0; i4 = HEAP32[i13 >> 2] | 0; i1 = i4; while (1) { if ((i1 - i2 | 0) >>> 0 > i14 >>> 0) { i1 = 0; i3 = i4; } else break; while (1) { if ((i1 | 0) == -1) break; i12 = i1 + -1 | 0; i3 = i4 + (i12 << 2) | 0; HEAP32[i13 >> 2] = i3; i1 = i12; } i1 = i3; i4 = i3; } __ZNSt3__213__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i15); STACKTOP = i16; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIwEE(i1, i7, i8, i9, i4) { i1 = i1 | 0; i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0; i1 = HEAP32[i7 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i7 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i7 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); i2 = HEAP32[i8 >> 2] | 0; do if (i2) { i1 = HEAP32[i2 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i3) { i5 = i2; i6 = 17; break; } else { i6 = 16; break; } else { HEAP32[i8 >> 2] = 0; i6 = 14; break; } } else i6 = 14; while (0); if ((i6 | 0) == 14) if (i3) i6 = 16; else { i5 = 0; i6 = 17; } L22 : do if ((i6 | 0) == 16) HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 6; else if ((i6 | 0) == 17) { i1 = HEAP32[i7 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i4 >> 2] | 0) + 52 >> 2] & 31](i4, i1, 0) | 0) << 24 >> 24 != 37) { HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 4; break; } i1 = HEAP32[i7 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; i1 = HEAP32[i7 >> 2] | 0; if (!i1) i2 = 1; else i6 = 25; } else { HEAP32[i2 >> 2] = i3 + 4; i6 = 25; } do if ((i6 | 0) == 25) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i7 >> 2] = 0; i2 = 1; break; } else { i2 = (HEAP32[i7 >> 2] | 0) == 0; break; } } while (0); do if (i5) { i1 = HEAP32[i5 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i5 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i5 >> 2] | 0) + 36 >> 2] & 127](i5) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break L22; else break; else { HEAP32[i8 >> 2] = 0; i6 = 37; break; } } else i6 = 37; while (0); if ((i6 | 0) == 37 ? !i2 : 0) break; HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 2; } while (0); return; } function __ZN6cashew12ValueBuilder10makeBinaryENS_3RefENS_7IStringES1_(i2, i3, i9) { i2 = i2 | 0; i3 = i3 | 0; i9 = i9 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0; i17 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i1 = i17 + 44 | 0; i10 = i17 + 40 | 0; i11 = i17 + 36 | 0; i12 = i17 + 32 | 0; i13 = i17 + 28 | 0; i14 = i17 + 24 | 0; i15 = i17 + 20 | 0; i16 = i17 + 16 | 0; i4 = i17 + 12 | 0; i5 = i17 + 8 | 0; i6 = i17 + 4 | 0; i7 = i17; i8 = HEAP32[i3 >> 2] | 0; do if ((i8 | 0) != (HEAP32[11344] | 0)) if ((i8 | 0) == (HEAP32[11333] | 0)) { i13 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i12 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45100) | 0; HEAP32[i14 >> 2] = i12; HEAP32[i1 >> 2] = HEAP32[i14 >> 2]; i14 = __ZN6cashew5Value9push_backENS_3RefE(i13, i1) | 0; HEAP32[i15 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 >> 2] = HEAP32[i15 >> 2]; i15 = __ZN6cashew5Value9push_backENS_3RefE(i14, i1) | 0; HEAP32[i16 >> 2] = HEAP32[i9 >> 2]; HEAP32[i1 >> 2] = HEAP32[i16 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i15, i1) | 0; break; } else { i16 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0; i15 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45072) | 0; HEAP32[i4 >> 2] = i15; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i16 = __ZN6cashew5Value9push_backENS_3RefE(i16, i1) | 0; i15 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i3) | 0; HEAP32[i5 >> 2] = i15; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i16 = __ZN6cashew5Value9push_backENS_3RefE(i16, i1) | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; i16 = __ZN6cashew5Value9push_backENS_3RefE(i16, i1) | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i16, i1) | 0; break; } else { i16 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0; i15 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45052) | 0; HEAP32[i10 >> 2] = i15; HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; i16 = __ZN6cashew5Value9push_backENS_3RefE(i16, i1) | 0; i15 = __ZN6cashew5Arena5allocEv(45436) | 0; __ZN6cashew5Value4freeEv(i15); HEAP32[i15 >> 2] = 4; HEAP8[i15 + 8 >> 0] = 1; HEAP32[i11 >> 2] = i15; HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; i16 = __ZN6cashew5Value9push_backENS_3RefE(i16, i1) | 0; HEAP32[i12 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 >> 2] = HEAP32[i12 >> 2]; i16 = __ZN6cashew5Value9push_backENS_3RefE(i16, i1) | 0; HEAP32[i13 >> 2] = HEAP32[i9 >> 2]; HEAP32[i1 >> 2] = HEAP32[i13 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i16, i1) | 0; } while (0); STACKTOP = i17; return i1 | 0; } function __ZNKSt3__27codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_(i3, i8, i1, i14, i11, i4, i9, i12) { i3 = i3 | 0; i8 = i8 | 0; i1 = i1 | 0; i14 = i14 | 0; i11 = i11 | 0; i4 = i4 | 0; i9 = i9 | 0; i12 = i12 | 0; var i2 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0, i13 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i13 = i15; i2 = i1; while (1) { if ((i2 | 0) == (i14 | 0)) { i2 = i14; break; } if (!(HEAP8[i2 >> 0] | 0)) break; i2 = i2 + 1 | 0; } HEAP32[i12 >> 2] = i4; HEAP32[i11 >> 2] = i1; i7 = i9; i10 = i3 + 8 | 0; i3 = i4; while (1) { if ((i3 | 0) == (i9 | 0) | (i1 | 0) == (i14 | 0)) { i3 = 33; break; } i5 = i8; i4 = HEAP32[i5 + 4 >> 2] | 0; i6 = i13; HEAP32[i6 >> 2] = HEAP32[i5 >> 2]; HEAP32[i6 + 4 >> 2] = i4; i6 = i2; i4 = _uselocale(HEAP32[i10 >> 2] | 0) | 0; i5 = _mbsnrtowcs(i3, i11, i6 - i1 | 0, i7 - i3 >> 2, i8) | 0; if (i4 | 0) _uselocale(i4) | 0; if ((i5 | 0) == -1) { i2 = i3; i3 = 10; break; } i3 = (HEAP32[i12 >> 2] | 0) + (i5 << 2) | 0; HEAP32[i12 >> 2] = i3; if ((i3 | 0) == (i9 | 0)) { i3 = 30; break; } i1 = HEAP32[i11 >> 2] | 0; if ((i2 | 0) == (i14 | 0)) i2 = i14; else { i2 = _uselocale(HEAP32[i10 >> 2] | 0) | 0; i1 = _mbrtowc(i3, i1, 1, i8) | 0; if (i2 | 0) _uselocale(i2) | 0; if (i1 | 0) { i1 = 2; i3 = 29; break; } HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 4; i1 = (HEAP32[i11 >> 2] | 0) + 1 | 0; HEAP32[i11 >> 2] = i1; i2 = i1; while (1) { if ((i2 | 0) == (i14 | 0)) { i2 = i14; break; } if (!(HEAP8[i2 >> 0] | 0)) break; i2 = i2 + 1 | 0; } i3 = HEAP32[i12 >> 2] | 0; } } do if ((i3 | 0) == 10) { L28 : while (1) { HEAP32[i12 >> 2] = i2; if ((i1 | 0) == (HEAP32[i11 >> 2] | 0)) { i3 = 19; break; } i3 = _uselocale(HEAP32[i10 >> 2] | 0) | 0; i2 = _mbrtowc(i2, i1, i6 - i1 | 0, i13) | 0; if (i3 | 0) _uselocale(i3) | 0; switch (i2 | 0) { case -1: { i3 = 15; break L28; } case -2: { i3 = 16; break L28; } case 0: { i1 = i1 + 1 | 0; break; } default: i1 = i1 + i2 | 0; } i2 = (HEAP32[i12 >> 2] | 0) + 4 | 0; i3 = 10; } if ((i3 | 0) == 15) { HEAP32[i11 >> 2] = i1; i1 = 2; i3 = 29; break; } else if ((i3 | 0) == 16) { HEAP32[i11 >> 2] = i1; i1 = 1; i3 = 29; break; } else if ((i3 | 0) == 19) { HEAP32[i11 >> 2] = i1; i1 = (i1 | 0) != (i14 | 0) & 1; i3 = 29; break; } } else if ((i3 | 0) == 30) { i1 = HEAP32[i11 >> 2] | 0; i3 = 33; } while (0); if ((i3 | 0) != 29) if ((i3 | 0) == 33) i1 = (i1 | 0) != (i14 | 0) & 1; STACKTOP = i15; return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseFunctionERPcPKc(i13, i14, i1) { i13 = i13 | 0; i14 = i14 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i15 = 0, i16 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i6 = i12 + 56 | 0; i5 = i12 + 52 | 0; i1 = i12 + 16 | 0; i2 = i12 + 48 | 0; i7 = i12; i8 = i12 + 44 | 0; i9 = i12 + 40 | 0; i10 = i12 + 36 | 0; i11 = i12 + 32 | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i1, HEAP32[i14 >> 2] | 0); switch (HEAP32[i1 + 12 >> 2] | 0) { case 2: { HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + (HEAP32[i1 + 8 >> 2] | 0); i3 = HEAP32[i1 >> 2] | 0; break; } case 6: { if ((HEAP8[HEAP32[i1 >> 2] >> 0] | 0) == 40) { HEAP32[i1 >> 2] = 0; i3 = 0; } else i16 = 4; break; } default: i16 = 4; } if ((i16 | 0) == 4) ___assert_fail(28645, 28546, 403, 28690); HEAP32[i2 >> 2] = i3; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; i4 = __ZN6cashew12ValueBuilder12makeFunctionENS_7IStringE(i6) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14); i1 = HEAP32[i14 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(28704, 28546, 408, 28690); HEAP32[i14 >> 2] = i1 + 1; i2 = i7 + 12 | 0; i3 = i7 + 8 | 0; L11 : while (1) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14); i1 = HEAP32[i14 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) == 41) { i15 = i1; break; } __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i7, i1); if ((HEAP32[i2 >> 2] | 0) != 2) { i16 = 11; break; } HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + (HEAP32[i3 >> 2] | 0); HEAP32[i8 >> 2] = i4; HEAP32[i9 >> 2] = HEAP32[i7 >> 2]; HEAP32[i5 >> 2] = HEAP32[i8 >> 2]; HEAP32[i6 >> 2] = HEAP32[i9 >> 2]; __ZN6cashew12ValueBuilder24appendArgumentToFunctionENS_3RefENS_7IStringE(i5, i6); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14); i1 = HEAP32[i14 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 41: { i16 = 15; break L11; } case 44: break; default: { i16 = 14; break L11; } } HEAP32[i14 >> 2] = i1 + 1; } if ((i16 | 0) == 11) ___assert_fail(28716, 28546, 414, 28690); else if ((i16 | 0) == 14) _abort(); else if ((i16 | 0) == 15) i15 = i1; HEAP32[i14 >> 2] = i15 + 1; HEAP32[i10 >> 2] = i4; i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBlockERPc(i13, i14) | 0; HEAP32[i11 >> 2] = i16; HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; HEAP32[i6 >> 2] = HEAP32[i11 >> 2]; __ZN6cashew12ValueBuilder15setBlockContentENS_3RefES1_(i5, i6); STACKTOP = i12; return i4 | 0; } function __ZNKSt3__27codecvtIwc11__mbstate_tE6do_outERS1_PKwS5_RS5_PcS7_RS7_(i4, i7, i1, i10, i12, i2, i8, i13) { i4 = i4 | 0; i7 = i7 | 0; i1 = i1 | 0; i10 = i10 | 0; i12 = i12 | 0; i2 = i2 | 0; i8 = i8 | 0; i13 = i13 | 0; var i3 = 0, i5 = 0, i6 = 0, i9 = 0, i11 = 0, i14 = 0, i15 = 0, i16 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i14 = i15; i9 = i15 + 8 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i10 | 0)) { i3 = i10; break; } if (!(HEAP32[i3 >> 2] | 0)) break; i3 = i3 + 4 | 0; } HEAP32[i13 >> 2] = i2; HEAP32[i12 >> 2] = i1; i6 = i8; i11 = i4 + 8 | 0; L6 : while (1) { if ((i2 | 0) == (i8 | 0) | (i1 | 0) == (i10 | 0)) { i3 = 35; break; } i16 = i7; i5 = HEAP32[i16 + 4 >> 2] | 0; i4 = i14; HEAP32[i4 >> 2] = HEAP32[i16 >> 2]; HEAP32[i4 + 4 >> 2] = i5; i4 = _uselocale(HEAP32[i11 >> 2] | 0) | 0; i5 = _wcsnrtombs(i2, i12, i3 - i1 >> 2, i6 - i2 | 0, i7) | 0; if (i4 | 0) _uselocale(i4) | 0; switch (i5 | 0) { case -1: { i3 = 10; break L6; } case 0: { i1 = 1; i3 = 32; break L6; } default: {} } i2 = (HEAP32[i13 >> 2] | 0) + i5 | 0; HEAP32[i13 >> 2] = i2; if ((i2 | 0) == (i8 | 0)) { i3 = 33; break; } if ((i3 | 0) == (i10 | 0)) { i3 = i10; i1 = HEAP32[i12 >> 2] | 0; } else { i2 = _uselocale(HEAP32[i11 >> 2] | 0) | 0; i1 = _wcrtomb(i9, 0, i7) | 0; if (i2 | 0) _uselocale(i2) | 0; if ((i1 | 0) == -1) { i1 = 2; i3 = 31; break; } if (i1 >>> 0 > (i6 - (HEAP32[i13 >> 2] | 0) | 0) >>> 0) { i1 = 1; i3 = 31; break; } else i2 = i9; while (1) { if (!i1) break; i5 = HEAP8[i2 >> 0] | 0; i16 = HEAP32[i13 >> 2] | 0; HEAP32[i13 >> 2] = i16 + 1; HEAP8[i16 >> 0] = i5; i2 = i2 + 1 | 0; i1 = i1 + -1 | 0; } i1 = (HEAP32[i12 >> 2] | 0) + 4 | 0; HEAP32[i12 >> 2] = i1; i3 = i1; while (1) { if ((i3 | 0) == (i10 | 0)) { i3 = i10; break; } if (!(HEAP32[i3 >> 2] | 0)) break; i3 = i3 + 4 | 0; } i2 = HEAP32[i13 >> 2] | 0; } } if ((i3 | 0) == 10) { HEAP32[i13 >> 2] = i2; while (1) { if ((i1 | 0) == (HEAP32[i12 >> 2] | 0)) break; i16 = HEAP32[i1 >> 2] | 0; i3 = _uselocale(HEAP32[i11 >> 2] | 0) | 0; i2 = _wcrtomb(i2, i16, i14) | 0; if (i3 | 0) _uselocale(i3) | 0; if ((i2 | 0) == -1) break; i2 = (HEAP32[i13 >> 2] | 0) + i2 | 0; HEAP32[i13 >> 2] = i2; i1 = i1 + 4 | 0; } HEAP32[i12 >> 2] = i1; i1 = 2; i3 = 32; } else if ((i3 | 0) == 31) i3 = 32; else if ((i3 | 0) == 33) { i1 = HEAP32[i12 >> 2] | 0; i3 = 35; } if ((i3 | 0) != 32) if ((i3 | 0) == 35) i1 = (i1 | 0) != (i10 | 0) & 1; STACKTOP = i15; return i1 | 0; } function __ZN4wasm7Builder12makeFunctionENS_4NameEONSt3__26vectorINS_8NameTypeENS2_9allocatorIS4_EEEENS_8WasmTypeES8_PNS_10ExpressionE(i1, i2, i5, i3, i9, i4) { i1 = i1 | 0; i2 = i2 | 0; i5 = i5 | 0; i3 = i3 | 0; i9 = i9 | 0; i4 = i4 | 0; var i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i11 = __Znwj(64) | 0; i12 = i11 + 40 | 0; HEAP32[i12 >> 2] = 0; i13 = i11 + 44 | 0; HEAP32[i13 >> 2] = 0; i14 = i11 + 48 | 0; HEAP32[i14 >> 2] = 0; i10 = i11 + 52 | 0; i6 = i11 + 56 | 0; HEAP32[i6 >> 2] = 0; HEAP32[i11 + 60 >> 2] = 0; i7 = i11 + 8 | 0; HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; HEAP32[i7 + 12 >> 2] = 0; HEAP32[i7 + 16 >> 2] = 0; HEAP32[i7 + 20 >> 2] = 0; HEAP32[i7 + 24 >> 2] = 0; HEAP32[i10 >> 2] = i6; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i11 + 4 >> 2] = i3; HEAP32[i11 + 36 >> 2] = i4; i4 = HEAP32[i5 + 4 >> 2] | 0; i6 = i11 + 12 | 0; i7 = i11 + 16 | 0; i8 = i11 + 8 | 0; i3 = HEAP32[i5 >> 2] | 0; while (1) { if ((i3 | 0) == (i4 | 0)) break; i1 = i3 + 4 | 0; i2 = HEAP32[i6 >> 2] | 0; if ((i2 | 0) == (HEAP32[i7 >> 2] | 0)) __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i8, i1); else { HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; HEAP32[i6 >> 2] = i2 + 4; } i5 = (HEAP32[i13 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) >> 2; i1 = __ZNSt3__23mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i10, i3) | 0; HEAP32[i1 >> 2] = i5; i1 = HEAP32[i13 >> 2] | 0; if ((i1 | 0) == (HEAP32[i14 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i12, i3); else { HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 4; } i3 = i3 + 8 | 0; } i4 = HEAP32[i9 + 4 >> 2] | 0; i5 = i11 + 24 | 0; i6 = i11 + 28 | 0; i7 = i11 + 20 | 0; i3 = HEAP32[i9 >> 2] | 0; while (1) { if ((i3 | 0) == (i4 | 0)) break; i1 = i3 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if ((i2 | 0) == (HEAP32[i6 >> 2] | 0)) __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i7, i1); else { HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; HEAP32[i5 >> 2] = i2 + 4; } i9 = (HEAP32[i13 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) >> 2; i1 = __ZNSt3__23mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i10, i3) | 0; HEAP32[i1 >> 2] = i9; i1 = HEAP32[i13 >> 2] | 0; if ((i1 | 0) == (HEAP32[i14 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i12, i3); else { HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + 4; } i3 = i3 + 8 | 0; } return i11 | 0; } function __ZN4wasm17WasmBinaryBuilder22readFunctionSignaturesEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i11; i5 = i2 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i10 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19659) | 0; i9 = __ZNKSt3__28ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i9; i9 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i10, i9) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i10) | 0; } i4 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; if (HEAP8[i5 >> 0] | 0) { i10 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19427) | 0, i4) | 0; i9 = __ZNKSt3__28ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i9; i9 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i10, i9) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i10) | 0; } i6 = i2 + 28 | 0; i7 = i2 + 32 | 0; i8 = i2 + 24 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= i4 >>> 0) break; if (HEAP8[i5 >> 0] | 0) { i10 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19433) | 0; i9 = __ZNKSt3__28ios_base6getlocEv(i10 + (HEAP32[(HEAP32[i10 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i9; i9 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i9 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i9 >> 2] | 0) + 28 >> 2] & 31](i9, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i10, i9) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i10) | 0; } i9 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; i9 = __ZN4wasm6Module15getFunctionTypeEj(HEAP32[i2 >> 2] | 0, i9) | 0; HEAP32[i3 >> 2] = i9; i10 = HEAP32[i6 >> 2] | 0; if (i10 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i10 >> 2] = i9; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; } else __ZNSt3__26vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i8, i3); i1 = i1 + 1 | 0; } STACKTOP = i11; return; } function __ZNSt3__29__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw(i4, i6, i11, i7, i12, i2, i3, i8, i13, i14, i10, i5) { i4 = i4 | 0; i6 = i6 | 0; i11 = i11 | 0; i7 = i7 | 0; i12 = i12 | 0; i2 = i2 | 0; i3 = i3 | 0; i8 = i8 | 0; i13 = i13 | 0; i14 = i14 | 0; i10 = i10 | 0; i5 = i5 | 0; var i1 = 0, i9 = 0; L1 : do if ((i4 | 0) == (i2 | 0)) if (HEAP8[i6 >> 0] | 0) { HEAP8[i6 >> 0] = 0; i11 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i11 + 1; HEAP8[i11 >> 0] = 46; i12 = HEAP8[i8 + 11 >> 0] | 0; if (((i12 << 24 >> 24 < 0 ? HEAP32[i8 + 4 >> 2] | 0 : i12 & 255) | 0) != 0 ? (i1 = HEAP32[i14 >> 2] | 0, (i1 - i13 | 0) < 160) : 0) { i13 = HEAP32[i10 >> 2] | 0; HEAP32[i14 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i13; i1 = 0; } else i1 = 0; } else i1 = -1; else { if ((i4 | 0) == (i3 | 0) ? (i3 = HEAP8[i8 + 11 >> 0] | 0, (i3 << 24 >> 24 < 0 ? HEAP32[i8 + 4 >> 2] | 0 : i3 & 255) | 0) : 0) { if (!(HEAP8[i6 >> 0] | 0)) { i1 = -1; break; } i1 = HEAP32[i14 >> 2] | 0; if ((i1 - i13 | 0) >= 160) { i1 = 0; break; } i13 = HEAP32[i10 >> 2] | 0; HEAP32[i14 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i13; HEAP32[i10 >> 2] = 0; i1 = 0; break; } i3 = i5 + 128 | 0; i2 = 0; while (1) { i1 = i5 + (i2 << 2) | 0; if ((i2 | 0) == 32) { i1 = i3; break; } if ((HEAP32[i1 >> 2] | 0) == (i4 | 0)) break; else i2 = i2 + 1 | 0; } i2 = i1 - i5 | 0; i1 = i2 >> 2; if ((i2 | 0) <= 124) { i3 = HEAP8[38819 + i1 >> 0] | 0; switch (i1 | 0) { case 24: case 25: { i1 = HEAP32[i12 >> 2] | 0; if ((i1 | 0) != (i7 | 0) ? (HEAPU8[i1 + -1 >> 0] & 95 | 0) != (HEAPU8[i11 >> 0] & 127 | 0) : 0) { i1 = -1; break L1; } HEAP32[i12 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i3; i1 = 0; break L1; } case 23: case 22: { HEAP8[i11 >> 0] = 80; break; } default: { i1 = i3 & 95; if ((((i1 | 0) == (HEAP8[i11 >> 0] | 0) ? (HEAP8[i11 >> 0] = i1 | 128, HEAP8[i6 >> 0] | 0) : 0) ? (HEAP8[i6 >> 0] = 0, i11 = HEAP8[i8 + 11 >> 0] | 0, (i11 << 24 >> 24 < 0 ? HEAP32[i8 + 4 >> 2] | 0 : i11 & 255) | 0) : 0) ? (i9 = HEAP32[i14 >> 2] | 0, (i9 - i13 | 0) < 160) : 0) { i13 = HEAP32[i10 >> 2] | 0; HEAP32[i14 >> 2] = i9 + 4; HEAP32[i9 >> 2] = i13; } } } i14 = HEAP32[i12 >> 2] | 0; HEAP32[i12 >> 2] = i14 + 1; HEAP8[i14 >> 0] = i3; if ((i2 | 0) > 84) i1 = 0; else { HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 1; i1 = 0; } } else i1 = -1; } while (0); return i1 | 0; } function __ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwe(i1, i19, i16, i17, d8) { i1 = i1 | 0; i19 = i19 | 0; i16 = i16 | 0; i17 = i17 | 0; d8 = +d8; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i18 = 0; i18 = STACKTOP; STACKTOP = STACKTOP + 336 | 0; i12 = i18 + 300 | 0; i7 = i18 + 48 | 0; i6 = i18 + 32 | 0; i3 = i18 + 24 | 0; i2 = i18 + 8 | 0; i5 = i18; i10 = i18 + 304 | 0; i11 = i18 + 296 | 0; i9 = i18 + 68 | 0; i15 = i18 + 64 | 0; i13 = i18 + 60 | 0; i14 = i18 + 56 | 0; i4 = i5; HEAP32[i4 >> 2] = 37; HEAP32[i4 + 4 >> 2] = 0; i4 = __ZNSt3__214__num_put_base14__format_floatEPcPKcj(i5 + 1 | 0, 39068, HEAP32[i16 + 4 >> 2] | 0) | 0; HEAP32[i11 >> 2] = i10; i1 = __ZNSt3__26__clocEv() | 0; if (i4) { HEAP32[i2 >> 2] = HEAP32[i16 + 8 >> 2]; HEAPF64[i2 + 8 >> 3] = d8; i1 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i5, i2) | 0; } else { HEAPF64[i3 >> 3] = d8; i1 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i5, i3) | 0; } if ((i1 | 0) > 29) { i1 = __ZNSt3__26__clocEv() | 0; if (i4) { HEAP32[i6 >> 2] = HEAP32[i16 + 8 >> 2]; HEAPF64[i6 + 8 >> 3] = d8; i1 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i11, i1, i5, i6) | 0; } else { HEAPF64[i7 >> 3] = d8; i1 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i11, i1, i5, i7) | 0; } i2 = HEAP32[i11 >> 2] | 0; if (!i2) { i4 = HEAP32[i11 >> 2] | 0; i7 = i4; } else { i7 = i2; i4 = i2; } } else { i7 = 0; i4 = HEAP32[i11 >> 2] | 0; } i5 = i4 + i1 | 0; i6 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i4, i5, i16) | 0; if ((i4 | 0) != (i10 | 0)) { i1 = _malloc(i1 << 3) | 0; if (!i1) { i2 = i1; i3 = i1; i1 = HEAP32[i11 >> 2] | 0; } else { i2 = i1; i3 = i1; i1 = i4; } } else { i2 = i9; i3 = 0; i1 = i10; } i11 = __ZNKSt3__28ios_base6getlocEv(i16) | 0; HEAP32[i12 >> 2] = i11; __ZNSt3__29__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i1, i6, i5, i2, i15, i13, i12); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i12 >> 2] | 0) | 0; HEAP32[i14 >> 2] = HEAP32[i19 >> 2]; i15 = HEAP32[i15 >> 2] | 0; i1 = HEAP32[i13 >> 2] | 0; HEAP32[i12 >> 2] = HEAP32[i14 >> 2]; i1 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i12, i2, i15, i1, i16, i17) | 0; HEAP32[i19 >> 2] = i1; if (i3 | 0) _free(i3); _free(i7); STACKTOP = i18; return i1 | 0; } function __ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwd(i1, i19, i16, i17, d8) { i1 = i1 | 0; i19 = i19 | 0; i16 = i16 | 0; i17 = i17 | 0; d8 = +d8; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i18 = 0; i18 = STACKTOP; STACKTOP = STACKTOP + 336 | 0; i12 = i18 + 300 | 0; i7 = i18 + 48 | 0; i6 = i18 + 32 | 0; i3 = i18 + 24 | 0; i2 = i18 + 8 | 0; i5 = i18; i10 = i18 + 304 | 0; i11 = i18 + 296 | 0; i9 = i18 + 68 | 0; i15 = i18 + 64 | 0; i13 = i18 + 60 | 0; i14 = i18 + 56 | 0; i4 = i5; HEAP32[i4 >> 2] = 37; HEAP32[i4 + 4 >> 2] = 0; i4 = __ZNSt3__214__num_put_base14__format_floatEPcPKcj(i5 + 1 | 0, 53494, HEAP32[i16 + 4 >> 2] | 0) | 0; HEAP32[i11 >> 2] = i10; i1 = __ZNSt3__26__clocEv() | 0; if (i4) { HEAP32[i2 >> 2] = HEAP32[i16 + 8 >> 2]; HEAPF64[i2 + 8 >> 3] = d8; i1 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i5, i2) | 0; } else { HEAPF64[i3 >> 3] = d8; i1 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i5, i3) | 0; } if ((i1 | 0) > 29) { i1 = __ZNSt3__26__clocEv() | 0; if (i4) { HEAP32[i6 >> 2] = HEAP32[i16 + 8 >> 2]; HEAPF64[i6 + 8 >> 3] = d8; i1 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i11, i1, i5, i6) | 0; } else { HEAPF64[i7 >> 3] = d8; i1 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i11, i1, i5, i7) | 0; } i2 = HEAP32[i11 >> 2] | 0; if (!i2) { i4 = HEAP32[i11 >> 2] | 0; i7 = i4; } else { i7 = i2; i4 = i2; } } else { i7 = 0; i4 = HEAP32[i11 >> 2] | 0; } i5 = i4 + i1 | 0; i6 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i4, i5, i16) | 0; if ((i4 | 0) != (i10 | 0)) { i1 = _malloc(i1 << 3) | 0; if (!i1) { i2 = i1; i3 = i1; i1 = HEAP32[i11 >> 2] | 0; } else { i2 = i1; i3 = i1; i1 = i4; } } else { i2 = i9; i3 = 0; i1 = i10; } i11 = __ZNKSt3__28ios_base6getlocEv(i16) | 0; HEAP32[i12 >> 2] = i11; __ZNSt3__29__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE(i1, i6, i5, i2, i15, i13, i12); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i12 >> 2] | 0) | 0; HEAP32[i14 >> 2] = HEAP32[i19 >> 2]; i15 = HEAP32[i15 >> 2] | 0; i1 = HEAP32[i13 >> 2] | 0; HEAP32[i12 >> 2] = HEAP32[i14 >> 2]; i1 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i12, i2, i15, i1, i16, i17) | 0; HEAP32[i19 >> 2] = i1; if (i3 | 0) _free(i3); _free(i7); STACKTOP = i18; return i1 | 0; } function __ZN4wasm7VisitorINS_16PrintSExpressionEvE5visitEPNS_10ExpressionE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i4; if (!i3) ___assert_fail(31628, 35330, 71, 31633); do switch (HEAP32[i3 >> 2] | 0) { case 1: { __ZN4wasm16PrintSExpression10visitBlockEPNS_5BlockE(i2, i3); break; } case 2: { __ZN4wasm16PrintSExpression7visitIfEPNS_2IfE(i2, i3); break; } case 3: { __ZN4wasm16PrintSExpression9visitLoopEPNS_4LoopE(i2, i3); break; } case 4: { __ZN4wasm16PrintSExpression10visitBreakEPNS_5BreakE(i2, i3); break; } case 5: { __ZN4wasm16PrintSExpression11visitSwitchEPNS_6SwitchE(i2, i3); break; } case 6: { __ZN4wasm16PrintSExpression9visitCallEPNS_4CallE(i2, i3); break; } case 7: { __ZN4wasm16PrintSExpression15visitCallImportEPNS_10CallImportE(i2, i3); break; } case 8: { __ZN4wasm16PrintSExpression17visitCallIndirectEPNS_12CallIndirectE(i2, i3); break; } case 9: { __ZN4wasm16PrintSExpression13visitGetLocalEPNS_8GetLocalE(i2, i3); break; } case 10: { __ZN4wasm16PrintSExpression13visitSetLocalEPNS_8SetLocalE(i2, i3); break; } case 11: { __ZN4wasm16PrintSExpression14visitGetGlobalEPNS_9GetGlobalE(i2, i3); break; } case 12: { __ZN4wasm16PrintSExpression14visitSetGlobalEPNS_9SetGlobalE(i2, i3); break; } case 13: { __ZN4wasm16PrintSExpression9visitLoadEPNS_4LoadE(i2, i3); break; } case 14: { __ZN4wasm16PrintSExpression10visitStoreEPNS_5StoreE(i2, i3); break; } case 15: { i2 = HEAP32[i2 >> 2] | 0; i3 = i3 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i3 + 12 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_7LiteralE(i2, i1) | 0; break; } case 16: { __ZN4wasm16PrintSExpression10visitUnaryEPNS_5UnaryE(i2, i3); break; } case 17: { __ZN4wasm16PrintSExpression11visitBinaryEPNS_6BinaryE(i2, i3); break; } case 18: { __ZN4wasm16PrintSExpression11visitSelectEPNS_6SelectE(i2, i3); break; } case 19: { __ZN4wasm16PrintSExpression11visitReturnEPNS_6ReturnE(i2, i3); break; } case 20: { __ZN4wasm16PrintSExpression9visitHostEPNS_4HostE(i2, i3); break; } case 21: { __ZN4wasm16PrintSExpression8visitNopEPNS_3NopE(i2, i3); break; } case 22: { __ZN4wasm16PrintSExpression16visitUnreachableEPNS_11UnreachableE(i2, i3); break; } default: {} } while (0); STACKTOP = i4; return; } function __ZN4wasm17WasmBinaryBuilder16readDataSegmentsEv(i7) { i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0; i19 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i6 = i19 + 52 | 0; i5 = i19 + 48 | 0; i8 = i19 + 44 | 0; i9 = i19 + 40 | 0; i14 = i19 + 24 | 0; i15 = i19 + 20 | 0; i16 = i19 + 16 | 0; i17 = i19 + 4 | 0; i18 = i19; if (HEAP8[i7 + 12 >> 0] | 0) { i13 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21430) | 0; i12 = __ZNKSt3__28ios_base6getlocEv(i13 + (HEAP32[(HEAP32[i13 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i12; i12 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i12 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 28 >> 2] & 31](i12, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i13, i12) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i13) | 0; } i10 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i7) | 0; i11 = i17 + 4 | 0; i12 = i17 + 8 | 0; i13 = i14 + 4 | 0; i4 = 0; while (1) { if (i4 >>> 0 >= i10 >>> 0) break; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; HEAP32[i14 + 8 >> 2] = 0; HEAP32[i14 + 12 >> 2] = 0; i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i7) | 0; HEAP32[i15 >> 2] = i1; i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i7) | 0; HEAP32[i16 >> 2] = i1; HEAP32[i17 >> 2] = 0; HEAP32[i11 >> 2] = 0; HEAP32[i12 >> 2] = 0; __ZNSt3__26vectorIcNS_9allocatorIcEEE6resizeEj(i17, i1); i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i16 >> 2] | 0) >>> 0) break; i3 = __ZN4wasm17WasmBinaryBuilder7getInt8Ev(i7) | 0; HEAP8[(HEAP32[i17 >> 2] | 0) + i1 >> 0] = i3; i1 = i1 + 1 | 0; } i1 = HEAP32[i7 >> 2] | 0; HEAP32[i18 >> 2] = HEAP32[i17 >> 2]; i2 = i1 + 84 | 0; i3 = HEAP32[i2 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i1 + 88 >> 2] | 0) >>> 0) { __ZN4wasm7AddressC2Ey(i8, HEAP32[i15 >> 2] | 0, 0); i1 = HEAP32[i18 >> 2] | 0; __ZN4wasm7AddressC2Ey(i9, HEAP32[i16 >> 2] | 0, 0); HEAP32[i5 >> 2] = HEAP32[i8 >> 2]; HEAP32[i6 >> 2] = HEAP32[i9 >> 2]; __ZN4wasm6Memory7SegmentC2ENS_7AddressEPKcS2_(i3, i5, i1, i6); HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 16; } else __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRjPKcS8_EEEvDpOT_(i1 + 80 | 0, i15, i18, i16); __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i17); __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i13); i4 = i4 + 1 | 0; } STACKTOP = i19; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIwEE(i1, i5, i6, i7, i4) { i1 = i1 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0, i8 = 0; L1 : while (1) { i1 = HEAP32[i5 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i5 >> 2] = 0; i3 = 1; break; } else { i3 = (HEAP32[i5 >> 2] | 0) == 0; break; } } else i3 = 1; while (0); i2 = HEAP32[i6 >> 2] | 0; do if (i2) { i1 = HEAP32[i2 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i3) { i3 = i2; break; } else { i3 = i2; break L1; } else { HEAP32[i6 >> 2] = 0; i8 = 15; break; } } else i8 = 15; while (0); if ((i8 | 0) == 15) { i8 = 0; if (i3) { i3 = 0; break; } else i3 = 0; } i1 = HEAP32[i5 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if (!(FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] & 31](i4, 8192, i1) | 0)) break; i1 = HEAP32[i5 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i2 >> 2] = i3 + 4; continue; } } i1 = HEAP32[i5 >> 2] | 0; do if (i1) { i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { HEAP32[i5 >> 2] = 0; i2 = 1; break; } else { i2 = (HEAP32[i5 >> 2] | 0) == 0; break; } } else i2 = 1; while (0); do if (i3) { i1 = HEAP32[i3 + 12 >> 2] | 0; if ((i1 | 0) == (HEAP32[i3 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 127](i3) | 0; else i1 = HEAP32[i1 >> 2] | 0; if ((i1 | 0) != -1) if (i2) break; else { i8 = 39; break; } else { HEAP32[i6 >> 2] = 0; i8 = 37; break; } } else i8 = 37; while (0); if ((i8 | 0) == 37 ? i2 : 0) i8 = 39; if ((i8 | 0) == 39) HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 2; return; } function __ZN4wasm22SExpressionWasmBuilder9makeStoreERNS_7ElementENS_8WasmTypeE(i7, i8, i1) { i7 = i7 | 0; i8 = i8 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i10 = i11; i3 = _strchr(__ZN4wasm7Element5c_strEv(__ZN4wasm7ElementixEj(i8, 0) | 0) | 0, 46) | 0; i9 = __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(HEAP32[i7 + 4 >> 2] | 0) | 0; HEAP32[i9 + 4 >> 2] = i1; i1 = (__ZN4wasm15getWasmTypeSizeENS_8WasmTypeE(i1) | 0) & 255; i2 = i9 + 8 | 0; HEAP8[i2 >> 0] = i1; L1 : do switch (HEAP8[i3 + 6 >> 0] | 0) { case 56: { HEAP8[i2 >> 0] = 1; i4 = 1; break; } case 49: { if ((HEAP8[i3 + 7 >> 0] | 0) == 54) { HEAP8[i2 >> 0] = 2; i4 = 2; break L1; } else ___assert_fail(18185, 17152, 1064, 18259); break; } case 51: { if ((HEAP8[i3 + 7 >> 0] | 0) == 50) { HEAP8[i2 >> 0] = 4; i4 = 4; break L1; } else ___assert_fail(18210, 17152, 1068, 18259); break; } default: i4 = i1; } while (0); i5 = i9 + 12 | 0; HEAP32[i5 >> 2] = 0; i6 = i9 + 16 | 0; __ZN4wasm7AddressaSEy(i6, i4 & 255, 0) | 0; i3 = 1; L12 : while (1) { i4 = __ZN4wasm7ElementixEj(i8, i3) | 0; i4 = (HEAP8[i4 >> 0] | 0) == 0; i2 = __ZN4wasm7ElementixEj(i8, i3) | 0; if (!i4) { i1 = 18; break; } i2 = __ZN4wasm7Element5c_strEv(i2) | 0; i1 = _strchr(i2, 61) | 0; if (!i1) { i1 = 12; break; } i1 = i1 + 1 | 0; switch (HEAP8[i2 >> 0] | 0) { case 97: { i4 = _atoi(i1) | 0; __ZN4wasm7AddressaSEy(i6, i4, ((i4 | 0) < 0) << 31 >> 31) | 0; break; } case 111: { i4 = _atoi(i1) | 0; __ZN4wasm7AddressaSEy(i5, i4, ((i4 | 0) < 0) << 31 >> 31) | 0; break; } default: { i1 = 16; break L12; } } i3 = i3 + 1 | 0; } if ((i1 | 0) == 12) ___assert_fail(18226, 17152, 1078, 18259); else if ((i1 | 0) == 16) { i11 = ___cxa_allocate_exception(20) | 0; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i10, 18269, 19); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i11, i10); ___cxa_throw(i11 | 0, 8, 154); } else if ((i1 | 0) == 18) { i10 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i7, i2) | 0; HEAP32[i9 + 20 >> 2] = i10; i10 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i7, __ZN4wasm7ElementixEj(i8, i3 + 1 | 0) | 0) | 0; HEAP32[i9 + 24 >> 2] = i10; STACKTOP = i11; return i9 | 0; } return 0; } function _load_asm2wasm(i1) { i1 = i1 | 0; var i2 = 0, d3 = 0.0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i9 + 24 | 0; i6 = i9 + 28 | 0; i8 = i9 + 4 | 0; i7 = i9; __ZL12prepare2wasmv(); HEAP8[i6 >> 0] = 0; i1 = __ZN4wasm20Asm2WasmPreProcessor7processEPc(i6, i1) | 0; if (HEAP8[49408] | 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 12635) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEEC2Ev(i8); i4 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseToplevelEPc(i8, i1) | 0; i1 = __Znwj(188) | 0; __ZN4wasm6ModuleC2Ev(i1); HEAP32[11250] = i1; i1 = _emscripten_asm_const_i(0) | 0; if (i1 & 65535 | 0) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 12693) | 0; _exit(1); } i2 = HEAP32[11250] | 0; __ZN4wasm7AddressC2Ey(i5, i1 >>> 16, 0); HEAP32[i2 + 72 >> 2] = HEAP32[i5 >> 2]; i2 = HEAP32[11250] | 0; if (!(HEAP8[i6 >> 0] | 0)) i1 = HEAP32[i2 + 72 >> 2] | 0; else i1 = 65535; HEAP32[i2 + 76 >> 2] = i1; if (HEAP8[49408] | 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 12761) | 0; i2 = __Znwj(132) | 0; __ZN4wasm15Asm2WasmBuilderC2ERNS_6ModuleEbbbb(i2, HEAP32[11250] | 0, (HEAP8[i6 >> 0] | 0) != 0, (HEAP32[11245] | 0) != 0, 0, 0); HEAP32[11246] = i2; HEAP32[i7 >> 2] = i4; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; __ZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefE(i2, i5); if (HEAP8[49408] | 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 12773) | 0; i1 = HEAP32[11246] | 0; i2 = i1 + 44 | 0; i1 = HEAP32[i1 + 40 >> 2] | 0; L16 : while (1) { if ((i1 | 0) == (i2 | 0)) { i1 = 13; break; } L19 : do if (HEAP8[i1 + 28 >> 0] | 0) { d3 = +_emscripten_asm_const_dii(1, HEAP32[i1 + 32 >> 2] | 0, HEAP32[i1 + 36 >> 2] | 0); i4 = HEAP32[i1 + 20 >> 2] | 0; switch (HEAP32[i1 + 24 >> 2] | 0) { case 1: { _emscripten_asm_const_iid(2, i4 | 0, +d3) | 0; break L19; } case 3: { _emscripten_asm_const_iid(3, i4 | 0, +d3) | 0; break L19; } case 4: { _emscripten_asm_const_iid(4, i4 | 0, +d3) | 0; break L19; } default: { i1 = 19; break L16; } } } while (0); i1 = __ZNSt3__211__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0; } if ((i1 | 0) == 13) { __ZNSt3__213__vector_baseINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEENS8_ISA_EEED2Ev(i8); STACKTOP = i9; return; } else if ((i1 | 0) == 19) _abort(); } function __ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEce(i1, i17, i18, i19, d9) { i1 = i1 | 0; i17 = i17 | 0; i18 = i18 | 0; i19 = i19 | 0; d9 = +d9; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 176 | 0; i12 = i16 + 72 | 0; i8 = i16 + 48 | 0; i7 = i16 + 32 | 0; i4 = i16 + 24 | 0; i2 = i16 + 8 | 0; i6 = i16; i10 = i16 + 134 | 0; i11 = i16 + 68 | 0; i3 = i16 + 76 | 0; i15 = i16 + 64 | 0; i13 = i16 + 60 | 0; i14 = i16 + 56 | 0; i5 = i6; HEAP32[i5 >> 2] = 37; HEAP32[i5 + 4 >> 2] = 0; i5 = __ZNSt3__214__num_put_base14__format_floatEPcPKcj(i6 + 1 | 0, 39068, HEAP32[i18 + 4 >> 2] | 0) | 0; HEAP32[i11 >> 2] = i10; i1 = __ZNSt3__26__clocEv() | 0; if (i5) { HEAP32[i2 >> 2] = HEAP32[i18 + 8 >> 2]; HEAPF64[i2 + 8 >> 3] = d9; i1 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i6, i2) | 0; } else { HEAPF64[i4 >> 3] = d9; i1 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i6, i4) | 0; } if ((i1 | 0) > 29) { i1 = __ZNSt3__26__clocEv() | 0; if (i5) { HEAP32[i7 >> 2] = HEAP32[i18 + 8 >> 2]; HEAPF64[i7 + 8 >> 3] = d9; i1 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i11, i1, i6, i7) | 0; } else { HEAPF64[i8 >> 3] = d9; i1 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i11, i1, i6, i8) | 0; } i2 = HEAP32[i11 >> 2] | 0; if (!i2) { i4 = HEAP32[i11 >> 2] | 0; i7 = i4; } else { i7 = i2; i4 = i2; } } else { i7 = 0; i4 = HEAP32[i11 >> 2] | 0; } i5 = i4 + i1 | 0; i6 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i4, i5, i18) | 0; if ((i4 | 0) != (i10 | 0)) { i1 = _malloc(i1 << 1) | 0; if (!i1) { i3 = 0; i2 = 0; i1 = HEAP32[i11 >> 2] | 0; } else { i3 = i1; i2 = i1; i1 = i4; } } else { i2 = 0; i1 = i10; } i11 = __ZNKSt3__28ios_base6getlocEv(i18) | 0; HEAP32[i12 >> 2] = i11; __ZNSt3__29__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i1, i6, i5, i3, i15, i13, i12); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i12 >> 2] | 0) | 0; HEAP32[i14 >> 2] = HEAP32[i17 >> 2]; i15 = HEAP32[i15 >> 2] | 0; i17 = HEAP32[i13 >> 2] | 0; HEAP32[i12 >> 2] = HEAP32[i14 >> 2]; i19 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i12, i3, i15, i17, i18, i19) | 0; _free(i2); _free(i7); STACKTOP = i16; return i19 | 0; } function __ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcd(i1, i17, i18, i19, d9) { i1 = i1 | 0; i17 = i17 | 0; i18 = i18 | 0; i19 = i19 | 0; d9 = +d9; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 176 | 0; i12 = i16 + 72 | 0; i8 = i16 + 48 | 0; i7 = i16 + 32 | 0; i4 = i16 + 24 | 0; i2 = i16 + 8 | 0; i6 = i16; i10 = i16 + 134 | 0; i11 = i16 + 68 | 0; i3 = i16 + 76 | 0; i15 = i16 + 64 | 0; i13 = i16 + 60 | 0; i14 = i16 + 56 | 0; i5 = i6; HEAP32[i5 >> 2] = 37; HEAP32[i5 + 4 >> 2] = 0; i5 = __ZNSt3__214__num_put_base14__format_floatEPcPKcj(i6 + 1 | 0, 53494, HEAP32[i18 + 4 >> 2] | 0) | 0; HEAP32[i11 >> 2] = i10; i1 = __ZNSt3__26__clocEv() | 0; if (i5) { HEAP32[i2 >> 2] = HEAP32[i18 + 8 >> 2]; HEAPF64[i2 + 8 >> 3] = d9; i1 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i6, i2) | 0; } else { HEAPF64[i4 >> 3] = d9; i1 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i10, 30, i1, i6, i4) | 0; } if ((i1 | 0) > 29) { i1 = __ZNSt3__26__clocEv() | 0; if (i5) { HEAP32[i7 >> 2] = HEAP32[i18 + 8 >> 2]; HEAPF64[i7 + 8 >> 3] = d9; i1 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i11, i1, i6, i7) | 0; } else { HEAPF64[i8 >> 3] = d9; i1 = __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i11, i1, i6, i8) | 0; } i2 = HEAP32[i11 >> 2] | 0; if (!i2) { i4 = HEAP32[i11 >> 2] | 0; i7 = i4; } else { i7 = i2; i4 = i2; } } else { i7 = 0; i4 = HEAP32[i11 >> 2] | 0; } i5 = i4 + i1 | 0; i6 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i4, i5, i18) | 0; if ((i4 | 0) != (i10 | 0)) { i1 = _malloc(i1 << 1) | 0; if (!i1) { i3 = 0; i2 = 0; i1 = HEAP32[i11 >> 2] | 0; } else { i3 = i1; i2 = i1; i1 = i4; } } else { i2 = 0; i1 = i10; } i11 = __ZNKSt3__28ios_base6getlocEv(i18) | 0; HEAP32[i12 >> 2] = i11; __ZNSt3__29__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i1, i6, i5, i3, i15, i13, i12); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i12 >> 2] | 0) | 0; HEAP32[i14 >> 2] = HEAP32[i17 >> 2]; i15 = HEAP32[i15 >> 2] | 0; i17 = HEAP32[i13 >> 2] | 0; HEAP32[i12 >> 2] = HEAP32[i14 >> 2]; i19 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i12, i3, i15, i17, i18, i19) | 0; _free(i2); _free(i7); STACKTOP = i16; return i19 | 0; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE17doVisitCallImportEPS4_PPNS_10ExpressionE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i3 = __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; i7 = i2 + 40 | 0; i1 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE4findIS3_EENS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEEiEERKT_((HEAP32[i7 >> 2] | 0) + 108 | 0, i3 + 24 | 0) | 0; L1 : do if ((i1 | 0) != ((HEAP32[i7 >> 2] | 0) + 112 | 0)) { i5 = HEAP32[i1 + 20 >> 2] | 0; i4 = i5 + 8 | 0; i5 = i5 + 12 | 0; i6 = i3 + 8 | 0; i2 = i3 + 16 | 0; i1 = 0; L3 : while (1) { if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2 >>> 0) break L1; L6 : do if (i1 >>> 0 < (HEAP32[i2 >> 2] | 0) >>> 0) { i8 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i6, i1) | 0; i3 = HEAP32[(HEAP32[i4 >> 2] | 0) + (i1 << 2) >> 2] | 0; if ((HEAP32[(HEAP32[i8 >> 2] | 0) + 4 >> 2] | 0) != (i3 | 0)) { if ((i3 | 0) != 4) break L3; i8 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i6, i1) | 0; switch (HEAP32[(HEAP32[i8 >> 2] | 0) + 4 >> 2] | 0) { case 1: { i8 = (HEAP32[i7 >> 2] | 0) + 8 | 0; i3 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i6, i1) | 0; i3 = __ZN4wasm7Builder9makeUnaryENS_7UnaryOpEPNS_10ExpressionE(i8, 36, HEAP32[i3 >> 2] | 0) | 0; i8 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i6, i1) | 0; HEAP32[i8 >> 2] = i3; break L6; } case 3: { i8 = (HEAP32[i7 >> 2] | 0) + 8 | 0; i3 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i6, i1) | 0; i3 = __ZN4wasm7Builder9makeUnaryENS_7UnaryOpEPNS_10ExpressionE(i8, 43, HEAP32[i3 >> 2] | 0) | 0; i8 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i6, i1) | 0; HEAP32[i8 >> 2] = i3; break L6; } default: break L6; } } } else { i8 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[(HEAP32[i7 >> 2] | 0) + 4 >> 2] | 0) | 0; i3 = HEAP32[(HEAP32[i4 >> 2] | 0) + (i1 << 2) >> 2] | 0; HEAP32[i8 + 8 >> 2] = i3; HEAP32[i8 + 4 >> 2] = i3; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i6, i8); } while (0); i1 = i1 + 1 | 0; } ___assert_fail(26828, 11743, 771, 20349); } while (0); return; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner10visitStoreEPNS_5StoreE(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i8 = i9 + 48 | 0; i1 = i9 + 68 | 0; i5 = i9 + 24 | 0; i6 = i9; i7 = i9 + 64 | 0; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i5, i3, HEAP32[i4 + 20 >> 2] | 0); if (!(HEAP32[i5 + 16 >> 2] | 0)) { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i6, i3, HEAP32[i4 + 24 >> 2] | 0); if (!(HEAP32[i6 + 16 >> 2] | 0)) { i11 = HEAP32[i3 + 4 >> 2] | 0; i3 = HEAP32[i11 + 36 >> 2] | 0; i10 = HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i5 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i8 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; i5 = __ZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEENS_7AddressEPT_NS_7LiteralE(i11, i4, i8) | 0; HEAP32[i7 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; HEAP32[i8 >> 2] = HEAP32[i6 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i8 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; FUNCTION_TABLE_viiii[i10 & 15](i3, i4, i1, i8); HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = HEAP32[i6 + 16 >> 2]; HEAP32[i2 + 20 >> 2] = HEAP32[i6 + 20 >> 2]; } else { HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = HEAP32[i6 + 16 >> 2]; HEAP32[i2 + 20 >> 2] = HEAP32[i6 + 20 >> 2]; } } else { HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = HEAP32[i5 + 16 >> 2]; HEAP32[i2 + 20 >> 2] = HEAP32[i5 + 20 >> 2]; } STACKTOP = i9; return; } function __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i14, i15, i5) { i14 = i14 | 0; i15 = i15 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i16; HEAP8[i14 >> 0] = 0; i1 = i15 + (HEAP32[(HEAP32[i15 >> 2] | 0) + -12 >> 2] | 0) | 0; i2 = i1 + 16 | 0; i3 = HEAP32[i2 >> 2] | 0; if (!i3) { i1 = HEAP32[i1 + 72 >> 2] | 0; if (i1 | 0) __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) | 0; do if (!i5 ? (i4 = i15 + (HEAP32[(HEAP32[i15 >> 2] | 0) + -12 >> 2] | 0) | 0, HEAP32[i4 + 4 >> 2] & 4096 | 0) : 0) { i4 = __ZNKSt3__28ios_base6getlocEv(i4) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; __ZNSt3__26localeD2Ev(i6); i1 = HEAP32[i15 + (HEAP32[(HEAP32[i15 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0; i4 = i4 + 8 | 0; i5 = i1; i6 = (i1 | 0) == 0; i7 = i5 + 12 | 0; i8 = i5 + 16 | 0; i9 = i1; i2 = i1; i10 = i2 + 12 | 0; i11 = i2 + 16 | 0; i12 = i1; i13 = i1; while (1) { if (i6) { i2 = 0; i1 = 0; break; } if ((HEAP32[i7 >> 2] | 0) == (HEAP32[i8 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i9 >> 2] | 0) + 36 >> 2] & 127](i5) | 0) == -1 : 0) { i2 = 0; i1 = 0; break; } i3 = HEAP32[i10 >> 2] | 0; if ((i3 | 0) == (HEAP32[i11 >> 2] | 0)) i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i12 >> 2] | 0) + 36 >> 2] & 127](i2) | 0; else i3 = HEAPU8[i3 >> 0] | 0; if ((i3 & 255) << 24 >> 24 <= -1) break; if (!(HEAP16[(HEAP32[i4 >> 2] | 0) + (i3 << 24 >> 24 << 1) >> 1] & 8192)) break; i3 = HEAP32[i10 >> 2] | 0; if ((i3 | 0) == (HEAP32[i11 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i13 >> 2] | 0) + 40 >> 2] & 127](i2) | 0; continue; } else { HEAP32[i10 >> 2] = i3 + 1; continue; } } if (i1 | 0) { if ((HEAP32[i2 + 12 >> 2] | 0) != (HEAP32[i2 + 16 >> 2] | 0)) break; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) != -1) break; } i12 = i15 + (HEAP32[(HEAP32[i15 >> 2] | 0) + -12 >> 2] | 0) | 0; i13 = i12 + 16 | 0; HEAP32[i13 >> 2] = HEAP32[i13 >> 2] | (HEAP32[i12 + 24 >> 2] | 0) == 0 | 6; } while (0); HEAP8[i14 >> 0] = (HEAP32[i15 + (HEAP32[(HEAP32[i15 >> 2] | 0) + -12 >> 2] | 0) + 16 >> 2] | 0) == 0 & 1; } else HEAP32[i2 >> 2] = i3 | (HEAP32[i1 + 24 >> 2] | 0) == 0 | 4; STACKTOP = i16; return; } function __ZNSt3__210__stdinbufIcE9__getcharEb(i10, i14) { i10 = i10 | 0; i14 = i14 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i12 = i16 + 16 | 0; i13 = i16 + 8 | 0; i8 = i16 + 4 | 0; i9 = i16; i3 = i10 + 52 | 0; if (HEAP8[i3 >> 0] | 0) { i2 = i10 + 48 | 0; i1 = HEAP32[i2 >> 2] | 0; if (i14) { HEAP32[i2 >> 2] = -1; HEAP8[i3 >> 0] = 0; } } else { i1 = HEAP32[i10 + 44 >> 2] | 0; i1 = (i1 | 0) > 1 ? i1 : 1; i11 = i10 + 32 | 0; i2 = 0; while (1) { if ((i2 | 0) >= (i1 | 0)) { i15 = 8; break; } i3 = _getc(HEAP32[i11 >> 2] | 0) | 0; if ((i3 | 0) == -1) { i1 = -1; break; } HEAP8[i12 + i2 >> 0] = i3; i2 = i2 + 1 | 0; } if ((i15 | 0) == 8) { do if (!(HEAP8[i10 + 53 >> 0] | 0)) { i5 = i10 + 40 | 0; i6 = i10 + 36 | 0; i7 = i13 + 1 | 0; L11 : while (1) { i17 = HEAP32[i5 >> 2] | 0; i3 = i17; i2 = HEAP32[i3 >> 2] | 0; i3 = HEAP32[i3 + 4 >> 2] | 0; i18 = HEAP32[i6 >> 2] | 0; i4 = i12 + i1 | 0; switch (FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i18 >> 2] | 0) + 16 >> 2] & 15](i18, i17, i12, i4, i8, i13, i7, i9) | 0) { case 3: { i15 = 15; break L11; } case 2: { i15 = 17; break L11; } case 1: break; default: break L11; } i18 = HEAP32[i5 >> 2] | 0; HEAP32[i18 >> 2] = i2; HEAP32[i18 + 4 >> 2] = i3; if ((i1 | 0) == 8) { i15 = 17; break; } i2 = _getc(HEAP32[i11 >> 2] | 0) | 0; if ((i2 | 0) == -1) { i15 = 17; break; } HEAP8[i4 >> 0] = i2; i1 = i1 + 1 | 0; } if ((i15 | 0) == 15) HEAP8[i13 >> 0] = HEAP8[i12 >> 0] | 0; else if ((i15 | 0) == 17) { i1 = -1; break; } i15 = 18; } else { HEAP8[i13 >> 0] = HEAP8[i12 >> 0] | 0; i15 = 18; } while (0); L21 : do if ((i15 | 0) == 18) { if (i14) { i1 = HEAP8[i13 >> 0] | 0; HEAP32[i10 + 48 >> 2] = i1 & 255; } else { while (1) { if ((i1 | 0) <= 0) break; i1 = i1 + -1 | 0; if ((_ungetc(HEAPU8[i12 + i1 >> 0] | 0, HEAP32[i11 >> 2] | 0) | 0) == -1) { i1 = -1; break L21; } } i1 = HEAP8[i13 >> 0] | 0; } i1 = i1 & 255; } while (0); } } STACKTOP = i16; return i1 | 0; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i7, i8, i3) { i1 = i1 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; i3 = i3 | 0; var i2 = 0, i4 = 0, i5 = 0; i1 = HEAP32[i6 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i6 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i6 >> 2] | 0; break; } } else i1 = 0; while (0); i2 = (i1 | 0) == 0; i1 = HEAP32[i7 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1 : 0) { HEAP32[i7 >> 2] = 0; i5 = 11; break; } if (i2) { i4 = i1; i5 = 13; } else i5 = 12; } else i5 = 11; while (0); if ((i5 | 0) == 11) if (i2) i5 = 12; else { i4 = 0; i5 = 13; } L16 : do if ((i5 | 0) == 12) HEAP32[i8 >> 2] = HEAP32[i8 >> 2] | 6; else if ((i5 | 0) == 13) { i1 = HEAP32[i6 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if ((i2 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i2 >> 0] | 0; if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] & 31](i3, i1 & 255, 0) | 0) << 24 >> 24 != 37) { HEAP32[i8 >> 2] = HEAP32[i8 >> 2] | 4; break; } i1 = HEAP32[i6 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; i1 = HEAP32[i6 >> 2] | 0; if (!i1) i1 = 0; else i5 = 21; } else { HEAP32[i2 >> 2] = i3 + 1; i5 = 21; } do if ((i5 | 0) == 21) if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i6 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i6 >> 2] | 0; break; } while (0); i1 = (i1 | 0) == 0; do if (i4) { if ((HEAP32[i4 + 12 >> 2] | 0) == (HEAP32[i4 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] & 127](i4) | 0) == -1 : 0) { HEAP32[i7 >> 2] = 0; i5 = 30; break; } if (i1) break L16; } else i5 = 30; while (0); if ((i5 | 0) == 30 ? !i1 : 0) break; HEAP32[i8 >> 2] = HEAP32[i8 >> 2] | 2; } while (0); return; } function __ZN4wasm14ModuleInstance18printFunctionStackEv(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i7 = i11 + 24 | 0; i8 = i11 + 12 | 0; i9 = i11; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 26111, 39); i10 = i1 + 20 | 0; i5 = i7 + 11 | 0; i6 = i7 + 4 | 0; i1 = (HEAP32[i1 + 24 >> 2] | 0) - (HEAP32[i10 >> 2] | 0) >> 2; while (1) { i3 = i1 + -1 | 0; if ((i1 | 0) <= 0) break; HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i9, 26151, 3); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i9, HEAP32[(HEAP32[i10 >> 2] | 0) + (i3 << 2) >> 2] | 0) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i8, 31522) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = HEAP8[i5 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i4, i2 ? HEAP32[i7 >> 2] | 0 : i7, i2 ? HEAP32[i6 >> 2] | 0 : i1 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9); i1 = i3; } HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, 26155, 4); i10 = HEAP8[i7 + 11 >> 0] | 0; i9 = i10 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i4, i9 ? HEAP32[i7 >> 2] | 0 : i7, i9 ? HEAP32[i7 + 4 >> 2] | 0 : i10 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); STACKTOP = i11; return; } function __ZN4wasm17WasmBinaryBuilder15visitCallImportEPNS_10CallImportE(i6, i7) { i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i10 + 8 | 0; i2 = i10 + 4 | 0; i4 = i10; i5 = i6 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20329) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } i8 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i6) | 0; i9 = HEAP32[i6 >> 2] | 0; i9 = __ZN4wasm6Module9getImportEj(i9, __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i6) | 0) | 0; i3 = i7 + 24 | 0; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; i9 = HEAP32[i9 + 12 >> 2] | 0; if (!i9) ___assert_fail(34993, 18854, 1872, 20349); if (((HEAP32[i9 + 12 >> 2] | 0) - (HEAP32[i9 + 8 >> 2] | 0) >> 2 | 0) != (i8 | 0)) ___assert_fail(20316, 18854, 1874, 20349); if (HEAP8[i5 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20365) | 0; HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i1) | 0, 20386) | 0; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i1) | 0, 20398) | 0, i8) | 0, 20404) | 0; } i2 = i7 + 8 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE6resizeEj(i2, i8); i3 = i8 + -1 | 0; i1 = 0; while (1) { if ((i1 | 0) == (i8 | 0)) break; i4 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i6) | 0; i5 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i2, i3 - i1 | 0) | 0; HEAP32[i5 >> 2] = i4; i1 = i1 + 1 | 0; } HEAP32[i7 + 4 >> 2] = HEAP32[i9 + 4 >> 2]; STACKTOP = i10; return; } function __ZNKSt3__28messagesIwE6do_getEiiiRKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEE(i17, i1, i7, i8, i9, i2) { i17 = i17 | 0; i1 = i1 | 0; i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 176 | 0; i12 = i16 + 168 | 0; i13 = i16 + 40 | 0; i14 = i16 + 36 | 0; i15 = i16 + 32 | 0; i10 = i16; i6 = i16 + 24 | 0; i11 = i16 + 16 | 0; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i6 + 4 >> 2] = 0; HEAP32[i6 >> 2] = 10160; i4 = HEAP8[i2 + 8 + 3 >> 0] | 0; i5 = i4 << 24 >> 24 < 0; i1 = i5 ? HEAP32[i2 >> 2] | 0 : i2; i4 = i1 + ((i5 ? HEAP32[i2 + 4 >> 2] | 0 : i4 & 255) << 2) | 0; i5 = i13 + 32 | 0; i2 = i1; i1 = 0; while (1) { if (!((i1 | 0) != 2 & i2 >>> 0 < i4 >>> 0)) break; HEAP32[i15 >> 2] = i2; i3 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i6 >> 2] | 0) + 12 >> 2] & 15](i6, i12, i2, i4, i15, i13, i5, i14) | 0; i1 = i13; while (1) { if (i1 >>> 0 >= (HEAP32[i14 >> 2] | 0) >>> 0) break; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i10, HEAP8[i1 >> 0] | 0); i1 = i1 + 1 | 0; } i2 = HEAP32[i15 >> 2] | 0; i1 = i3; } i2 = _catgets((i7 | 0) == -1 ? -1 : i7 << 1, i8, i9, (HEAP8[i10 + 11 >> 0] | 0) < 0 ? HEAP32[i10 >> 2] | 0 : i10) | 0; HEAP32[i17 >> 2] = 0; HEAP32[i17 + 4 >> 2] = 0; HEAP32[i17 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i17 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i11 + 4 >> 2] = 0; HEAP32[i11 >> 2] = 10208; i4 = i2 + (_strlen(i2) | 0) | 0; i5 = i4; i6 = i13 + 128 | 0; i1 = 0; while (1) { if (!((i1 | 0) != 2 & i2 >>> 0 < i4 >>> 0)) break; HEAP32[i15 >> 2] = i2; i3 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 16 >> 2] & 15](i11, i12, i2, (i5 - i2 | 0) > 32 ? i2 + 32 | 0 : i4, i15, i13, i6, i14) | 0; i1 = i13; while (1) { if (i1 >>> 0 >= (HEAP32[i14 >> 2] | 0) >>> 0) break; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i17, HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } i2 = HEAP32[i15 >> 2] | 0; i1 = i3; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); STACKTOP = i16; return; } function __ZN4wasm22SExpressionWasmBuilder13getLocalIndexERNS_7ElementE(i1, i8) { i1 = i1 | 0; i8 = i8 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i3 = i9 + 40 | 0; i2 = i9 + 28 | 0; i4 = i9 + 16 | 0; i5 = i9 + 12 | 0; i6 = i9; i7 = i1 + 44 | 0; if (!(HEAP32[i7 >> 2] | 0)) { i9 = ___cxa_allocate_exception(20) | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 18414, 34); i7 = HEAP32[i8 + 28 >> 2] | 0; i8 = HEAP32[i8 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i9, i2); HEAP32[i9 + 12 >> 2] = i7; HEAP32[i9 + 16 >> 2] = i8; ___cxa_throw(i9 | 0, 8, 154); } do if (!(HEAP8[i8 + 24 >> 0] | 0)) { i1 = _atoi(__ZN4wasm7Element5c_strEv(i8) | 0) | 0; if (i1 >>> 0 >= (__ZN4wasm8Function12getNumLocalsEv(HEAP32[i7 >> 2] | 0) | 0) >>> 0) { i9 = ___cxa_allocate_exception(20) | 0; HEAP32[i6 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; HEAP32[i6 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i6, 18464, 15); i7 = HEAP32[i8 + 28 >> 2] | 0; i8 = HEAP32[i8 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i9, i6); HEAP32[i9 + 12 >> 2] = i7; HEAP32[i9 + 16 >> 2] = i8; ___cxa_throw(i9 | 0, 8, 154); } } else { i1 = __ZN4wasm7Element3strEv(i8) | 0; i6 = HEAP32[i7 >> 2] | 0; HEAP32[i3 >> 2] = i1; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE14__count_uniqueIS3_EEjRKT_(i6 + 52 | 0, i3) | 0)) { i9 = ___cxa_allocate_exception(20) | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 18449, 14); i7 = HEAP32[i8 + 28 >> 2] | 0; i8 = HEAP32[i8 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i9, i4); HEAP32[i9 + 12 >> 2] = i7; HEAP32[i9 + 16 >> 2] = i8; ___cxa_throw(i9 | 0, 8, 154); } else { i8 = HEAP32[i7 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; i1 = __ZN4wasm8Function13getLocalIndexENS_4NameE(i8, i3) | 0; break; } } while (0); STACKTOP = i9; return i1 | 0; } function __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i1, i5, i6, i7, i8, i9) { i1 = i1 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; var i2 = 0, i3 = 0, i4 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 176 | 0; i10 = i13 + 160 | 0; i11 = i13 + 16 | 0; i12 = i13; i4 = HEAP32[i1 >> 2] | 0; if (i6 >>> 0 > i8 >>> 0 | (i6 | 0) == (i8 | 0) & i5 >>> 0 > i7 >>> 0) { i1 = i11 + 64 | 0; i2 = i11 + 8 | 0; HEAP32[i2 >> 2] = 2576; i3 = i11 + 12 | 0; HEAP32[i11 >> 2] = 2716; HEAP32[i1 >> 2] = 2736; HEAP32[i11 + 4 >> 2] = 0; __ZNSt3__28ios_base4initEPv(i11 + 64 | 0, i3); HEAP32[i11 + 136 >> 2] = 0; HEAP32[i11 + 140 >> 2] = -1; HEAP32[i11 >> 2] = 2556; HEAP32[i1 >> 2] = 2596; HEAP32[i2 >> 2] = 2576; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i3); HEAP32[i3 >> 2] = 2240; i2 = i11 + 44 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i11 + 56 >> 2] = 0; HEAP32[i11 + 60 >> 2] = 24; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i3, i10); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEy(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEy(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11 + 8 | 0, i9) | 0, 14763) | 0, i5, i6) | 0, 25939) | 0, i7, i8) | 0; i10 = HEAP32[i4 + 36 >> 2] | 0; i9 = HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] | 0; __ZNKSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv(i12, i3); FUNCTION_TABLE_vii[i9 & 255](i10, (HEAP8[i12 + 11 >> 0] | 0) < 0 ? HEAP32[i12 >> 2] | 0 : i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12); __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i11); } STACKTOP = i13; return; } function __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i1, i5, i6, i7, i8, i9) { i1 = i1 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; var i2 = 0, i3 = 0, i4 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 176 | 0; i10 = i13 + 160 | 0; i11 = i13 + 16 | 0; i12 = i13; i4 = HEAP32[i1 >> 2] | 0; if (i6 >>> 0 > i8 >>> 0 | (i6 | 0) == (i8 | 0) & i5 >>> 0 > i7 >>> 0) { i1 = i11 + 64 | 0; i2 = i11 + 8 | 0; HEAP32[i2 >> 2] = 2576; i3 = i11 + 12 | 0; HEAP32[i11 >> 2] = 2716; HEAP32[i1 >> 2] = 2736; HEAP32[i11 + 4 >> 2] = 0; __ZNSt3__28ios_base4initEPv(i11 + 64 | 0, i3); HEAP32[i11 + 136 >> 2] = 0; HEAP32[i11 + 140 >> 2] = -1; HEAP32[i11 >> 2] = 2556; HEAP32[i1 >> 2] = 2596; HEAP32[i2 >> 2] = 2576; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i3); HEAP32[i3 >> 2] = 2240; i2 = i11 + 44 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i11 + 56 >> 2] = 0; HEAP32[i11 + 60 >> 2] = 24; HEAP32[i10 >> 2] = 0; HEAP32[i10 + 4 >> 2] = 0; HEAP32[i10 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i10 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i3, i10); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEy(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEy(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i11 + 8 | 0, i9) | 0, 14763) | 0, i5, i6) | 0, 25939) | 0, i7, i8) | 0; i10 = HEAP32[i4 + 36 >> 2] | 0; i9 = HEAP32[(HEAP32[i10 >> 2] | 0) + 20 >> 2] | 0; __ZNKSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv(i12, i3); FUNCTION_TABLE_vii[i9 & 255](i10, (HEAP8[i12 + 11 >> 0] | 0) < 0 ? HEAP32[i12 >> 2] | 0 : i12); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i12); __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i11); } STACKTOP = i13; return; } function __ZNSt3__213unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERSB_(i15, i1) { i15 = i15 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, d4 = 0.0, d5 = 0.0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i10 = HEAP32[i1 >> 2] | 0; i14 = i10 * 33 ^ 5381; i12 = i15 + 4 | 0; i6 = HEAP32[i12 >> 2] | 0; i13 = (i6 | 0) == 0; i8 = i10; L1 : do if (!i13) { i9 = i6 + -1 | 0; i7 = (i9 & i6 | 0) == 0; if (i7) i2 = i9 & i14; else i2 = (i14 >>> 0) % (i6 >>> 0) | 0; i1 = HEAP32[(HEAP32[i15 >> 2] | 0) + (i2 << 2) >> 2] | 0; if (!i1) i11 = 12; else do { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i11 = 12; break L1; } i3 = HEAP32[i1 + 4 >> 2] | 0; if (i7) i3 = i3 & i9; else i3 = (i3 >>> 0) % (i6 >>> 0) | 0; if ((i3 | 0) != (i2 | 0)) { i11 = 12; break L1; } } while ((HEAP32[i1 + 8 >> 2] | 0) != (i8 | 0)); } else { i2 = 0; i11 = 12; } while (0); if ((i11 | 0) == 12) { i1 = __Znwj(20) | 0; HEAP32[i1 + 8 >> 2] = i10; HEAP32[i1 + 4 >> 2] = i14; HEAP32[i1 >> 2] = 0; i7 = i15 + 12 | 0; d4 = +(((HEAP32[i7 >> 2] | 0) + 1 | 0) >>> 0); d5 = +HEAPF32[i15 + 16 >> 2]; do if (i13 | d4 > +(i6 >>> 0) * d5) { i2 = (i6 >>> 0 > 2 & (i6 + -1 & i6 | 0) == 0 & 1 | i6 << 1) ^ 1; i3 = ~~+Math_ceil(+(d4 / d5)) >>> 0; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE6rehashEj(i15, i2 >>> 0 < i3 >>> 0 ? i3 : i2); i2 = HEAP32[i12 >> 2] | 0; i3 = i2 + -1 | 0; if (!(i3 & i2)) { i6 = i2; i2 = i3 & i14; break; } else { i6 = i2; i2 = (i14 >>> 0) % (i2 >>> 0) | 0; break; } } while (0); i2 = (HEAP32[i15 >> 2] | 0) + (i2 << 2) | 0; i3 = HEAP32[i2 >> 2] | 0; if (!i3) { i14 = i15 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i14 >> 2]; HEAP32[i14 >> 2] = i1; HEAP32[i2 >> 2] = i14; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i2 = HEAP32[i2 + 4 >> 2] | 0; i3 = i6 + -1 | 0; if (!(i3 & i6)) i2 = i2 & i3; else i2 = (i2 >>> 0) % (i6 >>> 0) | 0; HEAP32[(HEAP32[i15 >> 2] | 0) + (i2 << 2) >> 2] = i1; } } else { HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i3 >> 2] = i1; } HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 1; } return i1 + 12 | 0; } function __ZN4wasm13WasmValidator11visitModuleEPNS_6ModuleE(i14, i15) { i14 = i14 | 0; i15 = i15 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i16 = 0, i17 = 0, i18 = 0, i19 = 0, i20 = 0, i21 = 0; i20 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i13 = i20 + 32 | 0; i16 = i20 + 8 | 0; i10 = i20 + 28 | 0; i11 = i20; i12 = i20 + 24 | 0; i18 = i20 + 20 | 0; i19 = i20 + 4 | 0; HEAP32[i16 + 4 >> 2] = 0; HEAP32[i16 + 8 >> 2] = 0; HEAP32[i16 >> 2] = i16 + 4; i6 = HEAP32[i15 + 28 >> 2] | 0; i7 = i15 + 36 | 0; i8 = i15 + 40 | 0; i5 = HEAP32[i15 + 24 >> 2] | 0; while (1) { if ((i5 | 0) == (i6 | 0)) break; i9 = HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0; i3 = HEAP32[i8 >> 2] | 0; i4 = i9; i1 = 0; i2 = HEAP32[i7 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i21 = (HEAP32[HEAP32[i2 >> 2] >> 2] | 0) == (i4 | 0); i1 = i1 | i21; if (i21) break; else i2 = i2 + 4 | 0; } HEAP32[i10 >> 2] = i9; HEAP32[i13 >> 2] = HEAP32[i10 >> 2]; __ZN4wasm13WasmValidator12shouldBeTrueINS_4NameEEEbbT_PKc(i14, i1, i13, 16468) | 0; HEAP32[i11 >> 2] = HEAP32[HEAP32[i5 >> 2] >> 2]; i21 = (__ZNKSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE14__count_uniqueIS2_EEjRKT_(i16, i11) | 0) != 0; HEAP32[i12 >> 2] = HEAP32[i11 >> 2]; HEAP32[i13 >> 2] = HEAP32[i12 >> 2]; __ZN4wasm13WasmValidator13shouldBeFalseINS_4NameEEEbbT_PKc(i14, i21, i13, 16497) | 0; __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE25__emplace_unique_key_argsIS2_JRKS2_EEENS_4pairINS_15__tree_iteratorIS2_PNS_11__tree_nodeIS2_PvEEiEEbEERKT_DpOT0_(i13, i16, i11, i11); i5 = i5 + 4 | 0; } i1 = i15 + 96 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0 ? (HEAP32[i18 >> 2] = i2, HEAP32[i13 >> 2] = HEAP32[i18 >> 2], i17 = __ZN4wasm6Module13checkFunctionENS_4NameE(i15, i13) | 0, HEAP32[i19 >> 2] = HEAP32[i1 >> 2], HEAP32[i13 >> 2] = HEAP32[i19 >> 2], __ZN4wasm13WasmValidator12shouldBeTrueINS_4NameEEEbbT_PKc(i14, (i17 | 0) != 0, i13, 16527) | 0) : 0) { __ZN4wasm13WasmValidator12shouldBeTrueIPNS_6ModuleEEEbbT_PKc(i14, (HEAP32[i17 + 12 >> 2] | 0) == (HEAP32[i17 + 8 >> 2] | 0), i15, 16547) | 0; __ZN4wasm13WasmValidator12shouldBeTrueIPNS_6ModuleEEEbbT_PKc(i14, (HEAP32[i17 + 4 >> 2] | 0) == 0, i15, 16572) | 0; } __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev(i16); STACKTOP = i20; return; } function __ZNSt3__210__stdinbufIwE9__getcharEb(i10, i14) { i10 = i10 | 0; i14 = i14 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i12 = i16 + 16 | 0; i13 = i16 + 8 | 0; i8 = i16 + 4 | 0; i9 = i16; i3 = i10 + 52 | 0; if (HEAP8[i3 >> 0] | 0) { i2 = i10 + 48 | 0; i1 = HEAP32[i2 >> 2] | 0; if (i14) { HEAP32[i2 >> 2] = -1; HEAP8[i3 >> 0] = 0; } } else { i1 = HEAP32[i10 + 44 >> 2] | 0; i1 = (i1 | 0) > 1 ? i1 : 1; i11 = i10 + 32 | 0; i2 = 0; while (1) { if ((i2 | 0) >= (i1 | 0)) { i15 = 8; break; } i3 = _getc(HEAP32[i11 >> 2] | 0) | 0; if ((i3 | 0) == -1) { i1 = -1; break; } HEAP8[i12 + i2 >> 0] = i3; i2 = i2 + 1 | 0; } if ((i15 | 0) == 8) { do if (!(HEAP8[i10 + 53 >> 0] | 0)) { i5 = i10 + 40 | 0; i6 = i10 + 36 | 0; i7 = i13 + 4 | 0; L11 : while (1) { i17 = HEAP32[i5 >> 2] | 0; i3 = i17; i2 = HEAP32[i3 >> 2] | 0; i3 = HEAP32[i3 + 4 >> 2] | 0; i18 = HEAP32[i6 >> 2] | 0; i4 = i12 + i1 | 0; switch (FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i18 >> 2] | 0) + 16 >> 2] & 15](i18, i17, i12, i4, i8, i13, i7, i9) | 0) { case 3: { i15 = 15; break L11; } case 2: { i15 = 17; break L11; } case 1: break; default: break L11; } i18 = HEAP32[i5 >> 2] | 0; HEAP32[i18 >> 2] = i2; HEAP32[i18 + 4 >> 2] = i3; if ((i1 | 0) == 8) { i15 = 17; break; } i2 = _getc(HEAP32[i11 >> 2] | 0) | 0; if ((i2 | 0) == -1) { i15 = 17; break; } HEAP8[i4 >> 0] = i2; i1 = i1 + 1 | 0; } if ((i15 | 0) == 15) HEAP32[i13 >> 2] = HEAP8[i12 >> 0]; else if ((i15 | 0) == 17) { i1 = -1; break; } i15 = 18; } else { HEAP32[i13 >> 2] = HEAP8[i12 >> 0]; i15 = 18; } while (0); L21 : do if ((i15 | 0) == 18) { if (i14) { i1 = HEAP32[i13 >> 2] | 0; HEAP32[i10 + 48 >> 2] = i1; break; } while (1) { if ((i1 | 0) <= 0) break; i1 = i1 + -1 | 0; if ((_ungetc(HEAP8[i12 + i1 >> 0] | 0, HEAP32[i11 >> 2] | 0) | 0) == -1) { i1 = -1; break L21; } } i1 = HEAP32[i13 >> 2] | 0; } while (0); } } STACKTOP = i16; return i1 | 0; } function __ZNSt3__213unordered_mapIN6cashew7IStringEiNS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS9_(i15, i1) { i15 = i15 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, d4 = 0.0, d5 = 0.0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i10 = HEAP32[i1 >> 2] | 0; i14 = i10 * 33 ^ 5381; i12 = i15 + 4 | 0; i6 = HEAP32[i12 >> 2] | 0; i13 = (i6 | 0) == 0; i8 = i10; L1 : do if (!i13) { i9 = i6 + -1 | 0; i7 = (i9 & i6 | 0) == 0; if (i7) i2 = i9 & i14; else i2 = (i14 >>> 0) % (i6 >>> 0) | 0; i1 = HEAP32[(HEAP32[i15 >> 2] | 0) + (i2 << 2) >> 2] | 0; if (!i1) i11 = 12; else do { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i11 = 12; break L1; } i3 = HEAP32[i1 + 4 >> 2] | 0; if (i7) i3 = i3 & i9; else i3 = (i3 >>> 0) % (i6 >>> 0) | 0; if ((i3 | 0) != (i2 | 0)) { i11 = 12; break L1; } } while ((HEAP32[i1 + 8 >> 2] | 0) != (i8 | 0)); } else { i2 = 0; i11 = 12; } while (0); if ((i11 | 0) == 12) { i1 = __Znwj(16) | 0; HEAP32[i1 + 8 >> 2] = i10; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 4 >> 2] = i14; HEAP32[i1 >> 2] = 0; i7 = i15 + 12 | 0; d4 = +(((HEAP32[i7 >> 2] | 0) + 1 | 0) >>> 0); d5 = +HEAPF32[i15 + 16 >> 2]; do if (i13 | d4 > +(i6 >>> 0) * d5) { i2 = (i6 >>> 0 > 2 & (i6 + -1 & i6 | 0) == 0 & 1 | i6 << 1) ^ 1; i3 = ~~+Math_ceil(+(d4 / d5)) >>> 0; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE6rehashEj(i15, i2 >>> 0 < i3 >>> 0 ? i3 : i2); i2 = HEAP32[i12 >> 2] | 0; i3 = i2 + -1 | 0; if (!(i3 & i2)) { i6 = i2; i2 = i3 & i14; break; } else { i6 = i2; i2 = (i14 >>> 0) % (i2 >>> 0) | 0; break; } } while (0); i2 = (HEAP32[i15 >> 2] | 0) + (i2 << 2) | 0; i3 = HEAP32[i2 >> 2] | 0; if (!i3) { i14 = i15 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i14 >> 2]; HEAP32[i14 >> 2] = i1; HEAP32[i2 >> 2] = i14; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i2 = HEAP32[i2 + 4 >> 2] | 0; i3 = i6 + -1 | 0; if (!(i3 & i6)) i2 = i2 & i3; else i2 = (i2 >>> 0) % (i6 >>> 0) | 0; HEAP32[(HEAP32[i15 >> 2] | 0) + (i2 << 2) >> 2] = i1; } } else { HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i3 >> 2] = i1; } HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 1; } return i1 + 12 | 0; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11visitSelectEPNS_6SelectE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i4 = i7 + 48 | 0; i5 = i7 + 24 | 0; i6 = i7; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i4, i2, HEAP32[i3 + 8 >> 2] | 0); if (!(HEAP32[i4 + 16 >> 2] | 0)) { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i5, i2, HEAP32[i3 + 12 >> 2] | 0); if (!(HEAP32[i5 + 16 >> 2] | 0)) { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i6, i2, HEAP32[i3 + 16 >> 2] | 0); if (!(HEAP32[i6 + 16 >> 2] | 0)) { i6 = (__ZNK4wasm7Literal6geti32Ev(i6) | 0) != 0; i6 = i6 ? i4 : i5; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = HEAP32[i6 + 16 >> 2]; HEAP32[i1 + 20 >> 2] = HEAP32[i6 + 20 >> 2]; } else { HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = HEAP32[i6 + 16 >> 2]; HEAP32[i1 + 20 >> 2] = HEAP32[i6 + 20 >> 2]; } } else { HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = HEAP32[i5 + 16 >> 2]; HEAP32[i1 + 20 >> 2] = HEAP32[i5 + 20 >> 2]; } } else { HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i4 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i4 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i4 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = HEAP32[i4 + 16 >> 2]; HEAP32[i1 + 20 >> 2] = HEAP32[i4 + 20 >> 2]; } STACKTOP = i7; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterCurlyERPc(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i4 = i16 + 36 | 0; i3 = i16 + 32 | 0; i2 = i16 + 28 | 0; i10 = i16; i11 = i16 + 24 | 0; i13 = i16 + 20 | 0; i14 = i16 + 16 | 0; __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i5, (((HEAP32[i5 + 4 >> 2] | 0) - (HEAP32[i5 >> 2] | 0) | 0) / 12 | 0) + 1 | 0); i7 = __ZN6cashew12ValueBuilder10makeObjectEv() | 0; i8 = i10 + 12 | 0; i9 = i10 + 8 | 0; L1 : while (1) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i6); i1 = HEAP32[i6 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 0: { i15 = 3; break L1; } case 125: { i12 = i1; break L1; } default: {} } __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i10, i1); if ((HEAP32[i8 >> 2] & -2 | 0) != 2) { i15 = 5; break; } HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + (HEAP32[i9 >> 2] | 0); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i6); i1 = HEAP32[i6 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 58) { i15 = 7; break; } HEAP32[i6 >> 2] = i1 + 1; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i5, i6, 29628) | 0; HEAP32[i11 >> 2] = i7; HEAP32[i13 >> 2] = HEAP32[i10 >> 2]; HEAP32[i14 >> 2] = i1; HEAP32[i2 >> 2] = HEAP32[i11 >> 2]; HEAP32[i3 >> 2] = HEAP32[i13 >> 2]; HEAP32[i4 >> 2] = HEAP32[i14 >> 2]; __ZN6cashew12ValueBuilder14appendToObjectENS_3RefENS_7IStringES1_(i2, i3, i4); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i6); i1 = HEAP32[i6 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 125: { i15 = 11; break L1; } case 44: break; default: { i15 = 10; break L1; } } HEAP32[i6 >> 2] = i1 + 1; } if ((i15 | 0) == 3) ___assert_fail(29516, 28546, 695, 29572); else if ((i15 | 0) == 5) ___assert_fail(29588, 28546, 698, 29572); else if ((i15 | 0) == 7) ___assert_fail(29060, 28546, 701, 29572); else if ((i15 | 0) == 10) _abort(); else if ((i15 | 0) == 11) i12 = i1; HEAP32[i6 >> 2] = i12 + 1; STACKTOP = i16; return i7 | 0; } function __ZN4wasm15Asm2WasmBuilder13detectAsmTypeEN6cashew3RefEP7AsmData(i9, i2, i3) { i9 = i9 | 0; i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i11 + 12 | 0; i1 = i11 + 8 | 0; i4 = i11 + 4 | 0; i6 = i11; do if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45056) | 0) { i5 = __ZN6cashew3RefixEj(i2, 1) | 0; i5 = __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0; HEAP32[i8 >> 2] = HEAP32[i5 >> 2]; if (__ZNKSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i3, i8) | 0) { i10 = 11; break; } i1 = i9 + 40 | 0; if ((__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i1, i8) | 0) == (i9 + 44 | 0)) ___assert_fail(27094, 11743, 296, 27803); else { i7 = (__ZNSt3__23mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i8) | 0) + 4 | 0; i7 = __ZN4wasm13wasmToAsmTypeENS_8WasmTypeE(HEAP32[i7 >> 2] | 0) | 0; break; } } else if ((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45104) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i2, 1) | 0, 0) | 0, 45056) | 0 : 0) ? (i5 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i2, 1) | 0, 1) | 0, i5 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i9 + 52 | 0, __ZN6cashew5Value10getIStringEv(HEAP32[i5 >> 2] | 0) | 0) | 0, (i5 | 0) != (i9 + 56 | 0)) : 0) i7 = HEAP32[i5 + 28 >> 2] | 0; else i10 = 11; while (0); if ((i10 | 0) == 11) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = HEAP32[i9 + 72 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; HEAP32[i8 >> 2] = HEAP32[i6 >> 2]; i7 = __Z10detectTypeN6cashew3RefEP7AsmDatabNS_7IStringE(i1, i3, 0, i8) | 0; } STACKTOP = i11; return i7 | 0; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIcEE(i1, i5, i6, i7, i2) { i1 = i1 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i8 = 0; i4 = i2 + 8 | 0; L1 : while (1) { i1 = HEAP32[i5 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i5 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i5 >> 2] | 0; break; } } else i1 = 0; while (0); i1 = (i1 | 0) == 0; i2 = HEAP32[i6 >> 2] | 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) != (HEAP32[i2 + 16 >> 2] | 0)) if (i1) break; else break L1; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) != -1) if (i1) break; else break L1; else { HEAP32[i6 >> 2] = 0; i8 = 12; break; } } else i8 = 12; while (0); if ((i8 | 0) == 12) { i8 = 0; if (i1) { i2 = 0; break; } else i2 = 0; } i1 = HEAP32[i5 >> 2] | 0; i3 = HEAP32[i1 + 12 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0; else i1 = HEAPU8[i3 >> 0] | 0; if ((i1 & 255) << 24 >> 24 <= -1) break; if (!(HEAP16[(HEAP32[i4 >> 2] | 0) + (i1 << 24 >> 24 << 1) >> 1] & 8192)) break; i1 = HEAP32[i5 >> 2] | 0; i2 = i1 + 12 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 16 >> 2] | 0)) { FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 40 >> 2] & 127](i1) | 0; continue; } else { HEAP32[i2 >> 2] = i3 + 1; continue; } } i1 = HEAP32[i5 >> 2] | 0; do if (i1) { if ((HEAP32[i1 + 12 >> 2] | 0) == (HEAP32[i1 + 16 >> 2] | 0)) if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) { HEAP32[i5 >> 2] = 0; i1 = 0; break; } else { i1 = HEAP32[i5 >> 2] | 0; break; } } else i1 = 0; while (0); i1 = (i1 | 0) == 0; do if (i2) { if ((HEAP32[i2 + 12 >> 2] | 0) == (HEAP32[i2 + 16 >> 2] | 0) ? (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 36 >> 2] & 127](i2) | 0) == -1 : 0) { HEAP32[i6 >> 2] = 0; i8 = 32; break; } if (!i1) i8 = 33; } else i8 = 32; while (0); if ((i8 | 0) == 32 ? i1 : 0) i8 = 33; if ((i8 | 0) == 33) HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 2; return; } function __ZNSt3__28ios_base4InitC2Ev(i1) { i1 = i1 | 0; var i2 = 0; i1 = HEAP32[865] | 0; __ZNSt3__210__stdinbufIcEC2EP8_IO_FILEP11__mbstate_t(47108, i1, 47164); HEAP32[11607] = 7556; HEAP32[11609] = 7576; HEAP32[11608] = 0; __ZNSt3__28ios_base4initEPv(46436, 47108); HEAP32[11627] = 0; HEAP32[11628] = -1; __ZNSt3__210__stdinbufIwEC2EP8_IO_FILEP11__mbstate_t(47172, i1, 47228); HEAP32[11629] = 7596; HEAP32[11631] = 7616; HEAP32[11630] = 0; __ZNSt3__28ios_base4initEPv(46524, 47172); HEAP32[11649] = 0; HEAP32[11650] = -1; i1 = HEAP32[835] | 0; __ZNSt3__211__stdoutbufIcEC2EP8_IO_FILEP11__mbstate_t(47236, i1, 47284); HEAP32[11651] = 7636; HEAP32[11652] = 7656; __ZNSt3__28ios_base4initEPv(46608, 47236); HEAP32[11670] = 0; HEAP32[11671] = -1; __ZNSt3__211__stdoutbufIwEC2EP8_IO_FILEP11__mbstate_t(47292, i1, 47340); HEAP32[11672] = 7676; HEAP32[11673] = 7696; __ZNSt3__28ios_base4initEPv(46692, 47292); HEAP32[11691] = 0; HEAP32[11692] = -1; i1 = HEAP32[806] | 0; __ZNSt3__211__stdoutbufIcEC2EP8_IO_FILEP11__mbstate_t(47348, i1, 47396); HEAP32[11693] = 7636; HEAP32[11694] = 7656; __ZNSt3__28ios_base4initEPv(46776, 47348); HEAP32[11712] = 0; HEAP32[11713] = -1; i2 = HEAP32[46772 + (HEAP32[(HEAP32[11693] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0; HEAP32[11735] = 7636; HEAP32[11736] = 7656; __ZNSt3__28ios_base4initEPv(46944, i2); HEAP32[11754] = 0; HEAP32[11755] = -1; __ZNSt3__211__stdoutbufIwEC2EP8_IO_FILEP11__mbstate_t(47404, i1, 47452); HEAP32[11714] = 7676; HEAP32[11715] = 7696; __ZNSt3__28ios_base4initEPv(46860, 47404); HEAP32[11733] = 0; HEAP32[11734] = -1; i1 = HEAP32[46856 + (HEAP32[(HEAP32[11714] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0; HEAP32[11756] = 7676; HEAP32[11757] = 7696; __ZNSt3__28ios_base4initEPv(47028, i1); HEAP32[11775] = 0; HEAP32[11776] = -1; HEAP32[46428 + (HEAP32[(HEAP32[11607] | 0) + -12 >> 2] | 0) + 72 >> 2] = 46604; HEAP32[46516 + (HEAP32[(HEAP32[11629] | 0) + -12 >> 2] | 0) + 72 >> 2] = 46688; i1 = 46772 + (HEAP32[(HEAP32[11693] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i1 >> 2] = HEAP32[i1 >> 2] | 8192; i1 = 46856 + (HEAP32[(HEAP32[11714] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i1 >> 2] = HEAP32[i1 >> 2] | 8192; HEAP32[46772 + (HEAP32[(HEAP32[11693] | 0) + -12 >> 2] | 0) + 72 >> 2] = 46604; HEAP32[46856 + (HEAP32[(HEAP32[11714] | 0) + -12 >> 2] | 0) + 72 >> 2] = 46688; return; } function __GLOBAL__sub_I_shared_constants_cpp() { __ZN6cashew7IString3setEPKcb(45528, 35026, 1); __ZN6cashew7IString3setEPKcb(45532, 35188, 1); __ZN6cashew7IString3setEPKcb(45536, 35192, 1); __ZN6cashew7IString3setEPKcb(45540, 36167, 1); __ZN6cashew7IString3setEPKcb(45544, 35634, 1); __ZN6cashew7IString3setEPKcb(45548, 34572, 1); __ZN6cashew7IString3setEPKcb(45552, 34580, 1); __ZN6cashew7IString3setEPKcb(45556, 34590, 1); __ZN6cashew7IString3setEPKcb(45560, 34601, 1); __ZN6cashew7IString3setEPKcb(45564, 34612, 1); __ZN6cashew7IString3setEPKcb(45568, 34623, 1); __ZN6cashew7IString3setEPKcb(45572, 34635, 1); __ZN6cashew7IString3setEPKcb(45576, 34647, 1); __ZN6cashew7IString3setEPKcb(45580, 34660, 1); __ZN6cashew7IString3setEPKcb(45584, 34673, 1); __ZN6cashew7IString3setEPKcb(45588, 34693, 1); __ZN6cashew7IString3setEPKcb(45592, 34698, 1); __ZN6cashew7IString3setEPKcb(45596, 34703, 1); __ZN6cashew7IString3setEPKcb(45600, 34709, 1); __ZN6cashew7IString3setEPKcb(45604, 34716, 1); __ZN6cashew7IString3setEPKcb(45608, 34725, 1); __ZN6cashew7IString3setEPKcb(45612, 34733, 1); __ZN6cashew7IString3setEPKcb(45616, 34744, 1); __ZN6cashew7IString3setEPKcb(45620, 34753, 1); __ZN6cashew7IString3setEPKcb(45624, 34762, 1); __ZN6cashew7IString3setEPKcb(45628, 34771, 1); __ZN6cashew7IString3setEPKcb(45632, 34780, 1); __ZN6cashew7IString3setEPKcb(45636, 34792, 1); __ZN6cashew7IString3setEPKcb(45640, 34796, 1); __ZN6cashew7IString3setEPKcb(45644, 34802, 1); __ZN6cashew7IString3setEPKcb(45648, 34807, 1); __ZN6cashew7IString3setEPKcb(45652, 34812, 1); __ZN6cashew7IString3setEPKcb(45656, 34830, 1); __ZN6cashew7IString3setEPKcb(45660, 34839, 1); __ZN6cashew7IString3setEPKcb(45664, 34847, 1); __ZN6cashew7IString3setEPKcb(45668, 34854, 1); __ZN6cashew7IString3setEPKcb(45672, 34858, 1); __ZN6cashew7IString3setEPKcb(45676, 34868, 1); __ZN6cashew7IString3setEPKcb(45680, 34879, 1); __ZN6cashew7IString3setEPKcb(45684, 34890, 1); __ZN6cashew7IString3setEPKcb(45688, 34904, 1); __ZN6cashew7IString3setEPKcb(45692, 34913, 1); __ZN6cashew7IString3setEPKcb(45696, 34923, 1); __ZN6cashew7IString3setEPKcb(45700, 34934, 1); __ZN6cashew7IString3setEPKcb(45704, 34945, 1); __ZN6cashew7IString3setEPKcb(45708, 34958, 1); __ZN6cashew7IString3setEPKcb(45712, 34968, 1); __ZN6cashew7IString3setEPKcb(45716, 34977, 1); return; } function __ZNSt3__2L12ucs4_to_utf8EPKjS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i1, i7, i8, i3, i2, i9, i10, i4) { i1 = i1 | 0; i7 = i7 | 0; i8 = i8 | 0; i3 = i3 | 0; i2 = i2 | 0; i9 = i9 | 0; i10 = i10 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; HEAP32[i8 >> 2] = i1; HEAP32[i9 >> 2] = i3; i6 = i2; if (i4 & 2) if ((i6 - i3 | 0) < 3) i1 = 1; else { HEAP32[i9 >> 2] = i3 + 1; HEAP8[i3 >> 0] = -17; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = -69; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = -65; i5 = 4; } else i5 = 4; L4 : do if ((i5 | 0) == 4) { i1 = HEAP32[i8 >> 2] | 0; while (1) { if (i1 >>> 0 >= i7 >>> 0) { i1 = 0; break L4; } i3 = HEAP32[i1 >> 2] | 0; if (i3 >>> 0 > i10 >>> 0 | (i3 & -2048 | 0) == 55296) { i1 = 2; break L4; } do if (i3 >>> 0 >= 128) { if (i3 >>> 0 < 2048) { i1 = HEAP32[i9 >> 2] | 0; if ((i6 - i1 | 0) < 2) { i1 = 1; break L4; } HEAP32[i9 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i3 >>> 6 | 192; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i3 & 63 | 128; break; } i1 = HEAP32[i9 >> 2] | 0; i2 = i6 - i1 | 0; if (i3 >>> 0 < 65536) { if ((i2 | 0) < 3) { i1 = 1; break L4; } HEAP32[i9 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i3 >>> 12 | 224; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i3 >>> 6 & 63 | 128; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i3 & 63 | 128; break; } else { if ((i2 | 0) < 4) { i1 = 1; break L4; } HEAP32[i9 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i3 >>> 18 | 240; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i3 >>> 12 & 63 | 128; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i3 >>> 6 & 63 | 128; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i3 & 63 | 128; break; } } else { i1 = HEAP32[i9 >> 2] | 0; if ((i6 - i1 | 0) < 1) { i1 = 1; break L4; } HEAP32[i9 >> 2] = i1 + 1; HEAP8[i1 >> 0] = i3; } while (0); i1 = (HEAP32[i8 >> 2] | 0) + 4 | 0; HEAP32[i8 >> 2] = i1; } } while (0); return i1 | 0; } function _pop_arg_529(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, d6 = 0.0; L1 : do if (i2 >>> 0 <= 20) do switch (i2 | 0) { case 9: { i4 = (HEAP32[i3 >> 2] | 0) + (4 - 1) & ~(4 - 1); i2 = HEAP32[i4 >> 2] | 0; HEAP32[i3 >> 2] = i4 + 4; HEAP32[i1 >> 2] = i2; break L1; } case 10: { i4 = (HEAP32[i3 >> 2] | 0) + (4 - 1) & ~(4 - 1); i2 = HEAP32[i4 >> 2] | 0; HEAP32[i3 >> 2] = i4 + 4; i4 = i1; HEAP32[i4 >> 2] = i2; HEAP32[i4 + 4 >> 2] = ((i2 | 0) < 0) << 31 >> 31; break L1; } case 11: { i4 = (HEAP32[i3 >> 2] | 0) + (4 - 1) & ~(4 - 1); i2 = HEAP32[i4 >> 2] | 0; HEAP32[i3 >> 2] = i4 + 4; i4 = i1; HEAP32[i4 >> 2] = i2; HEAP32[i4 + 4 >> 2] = 0; break L1; } case 12: { i4 = (HEAP32[i3 >> 2] | 0) + (8 - 1) & ~(8 - 1); i2 = i4; i5 = HEAP32[i2 >> 2] | 0; i2 = HEAP32[i2 + 4 >> 2] | 0; HEAP32[i3 >> 2] = i4 + 8; i4 = i1; HEAP32[i4 >> 2] = i5; HEAP32[i4 + 4 >> 2] = i2; break L1; } case 13: { i5 = (HEAP32[i3 >> 2] | 0) + (4 - 1) & ~(4 - 1); i4 = HEAP32[i5 >> 2] | 0; HEAP32[i3 >> 2] = i5 + 4; i4 = (i4 & 65535) << 16 >> 16; i5 = i1; HEAP32[i5 >> 2] = i4; HEAP32[i5 + 4 >> 2] = ((i4 | 0) < 0) << 31 >> 31; break L1; } case 14: { i5 = (HEAP32[i3 >> 2] | 0) + (4 - 1) & ~(4 - 1); i4 = HEAP32[i5 >> 2] | 0; HEAP32[i3 >> 2] = i5 + 4; i5 = i1; HEAP32[i5 >> 2] = i4 & 65535; HEAP32[i5 + 4 >> 2] = 0; break L1; } case 15: { i5 = (HEAP32[i3 >> 2] | 0) + (4 - 1) & ~(4 - 1); i4 = HEAP32[i5 >> 2] | 0; HEAP32[i3 >> 2] = i5 + 4; i4 = (i4 & 255) << 24 >> 24; i5 = i1; HEAP32[i5 >> 2] = i4; HEAP32[i5 + 4 >> 2] = ((i4 | 0) < 0) << 31 >> 31; break L1; } case 16: { i5 = (HEAP32[i3 >> 2] | 0) + (4 - 1) & ~(4 - 1); i4 = HEAP32[i5 >> 2] | 0; HEAP32[i3 >> 2] = i5 + 4; i5 = i1; HEAP32[i5 >> 2] = i4 & 255; HEAP32[i5 + 4 >> 2] = 0; break L1; } case 17: { i5 = (HEAP32[i3 >> 2] | 0) + (8 - 1) & ~(8 - 1); d6 = +HEAPF64[i5 >> 3]; HEAP32[i3 >> 2] = i5 + 8; HEAPF64[i1 >> 3] = d6; break L1; } case 18: { i5 = (HEAP32[i3 >> 2] | 0) + (8 - 1) & ~(8 - 1); d6 = +HEAPF64[i5 >> 3]; HEAP32[i3 >> 2] = i5 + 8; HEAPF64[i1 >> 3] = d6; break L1; } default: break L1; } while (0); while (0); return; } function __ZZN4wasm22SExpressionWasmBuilder6makeIfERNS_7ElementEENKUlPKcS2_E_clES4_S2_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i10 + 20 | 0; i8 = i10 + 16 | 0; i5 = i10 + 4 | 0; i9 = i10; i6 = HEAP32[i1 >> 2] | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, i2, _strlen(i2) | 0); i4 = __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i6, i5) | 0; HEAP32[i8 >> 2] = i4; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); i5 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i3, 0) | 0) | 0; if ((i5 | 0) != (HEAP32[11451] | 0) ? (i5 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i3, 0) | 0) | 0, (i5 | 0) != (HEAP32[11452] | 0)) : 0) i4 = 0; else { i5 = __ZN4wasm7ElementixEj(i3, 1) | 0; if ((HEAP8[i5 >> 0] | 0) == 0 ? (i5 = (__ZN4wasm7ElementixEj(i3, 1) | 0) + 24 | 0, (HEAP8[i5 >> 0] | 0) != 0) : 0) { i4 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i3, 1) | 0) | 0; HEAP32[i8 >> 2] = i4; i4 = 1; } else i4 = 1; } i5 = i6 + 72 | 0; i1 = HEAP32[i5 >> 2] | 0; if ((i1 | 0) == (HEAP32[i6 + 76 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i6 + 68 | 0, i8); else { HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 4; } i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i6, i3) | 0; i3 = HEAP32[i5 >> 2] | 0; i2 = 0; while (1) { if ((i2 | 0) == -1) break; i11 = i2 + -1 | 0; HEAP32[i5 >> 2] = i3 + (i11 << 2); i2 = i11; } if (!i4) { HEAP32[i9 >> 2] = HEAP32[i8 >> 2]; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; if (__ZN4wasm11BreakSeeker3hasEPNS_10ExpressionENS_4NameE(i1, i7) | 0) { i11 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i6 + 4 >> 2] | 0) | 0; HEAP32[i11 + 8 >> 2] = HEAP32[i8 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i11 + 12 | 0, i1); __ZN4wasm5Block8finalizeEv(i11); i1 = i11; } } else HEAP32[((HEAP32[i1 >> 2] | 0) == 1 ? i1 : 0) + 8 >> 2] = HEAP32[i8 >> 2]; STACKTOP = i10; return i1 | 0; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11visitSwitchEPNS_6SwitchE(i10, i2, i6) { i10 = i10 | 0; i2 = i2 | 0; i6 = i6 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i15; HEAP32[i10 >> 2] = 0; i12 = i10 + 8 | 0; i14 = i12; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; i14 = i10 + 16 | 0; HEAP32[i14 >> 2] = 0; i3 = HEAP32[i6 + 32 >> 2] | 0; if (i3) { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i4, i2, i3); HEAP32[i10 >> 2] = HEAP32[i4 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i4 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i4 + 8 >> 2]; HEAP32[i10 + 12 >> 2] = HEAP32[i4 + 12 >> 2]; HEAP32[i10 + 16 >> 2] = HEAP32[i4 + 16 >> 2]; if (!(HEAP32[i14 >> 2] | 0)) { i13 = i12; i7 = i10; i1 = i2; i8 = HEAP32[i10 >> 2] | 0; i9 = HEAP32[i10 + 4 >> 2] | 0; i11 = HEAP32[i13 >> 2] | 0; i13 = HEAP32[i13 + 4 >> 2] | 0; i5 = 5; } } else { i7 = i10; i1 = i2; i8 = 0; i9 = 0; i11 = 0; i13 = 0; i5 = 5; } if ((i5 | 0) == 5 ? (__ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i4, i1, HEAP32[i6 + 28 >> 2] | 0), HEAP32[i7 >> 2] = HEAP32[i4 >> 2], HEAP32[i7 + 4 >> 2] = HEAP32[i4 + 4 >> 2], HEAP32[i7 + 8 >> 2] = HEAP32[i4 + 8 >> 2], HEAP32[i7 + 12 >> 2] = HEAP32[i4 + 12 >> 2], HEAP32[i7 + 16 >> 2] = HEAP32[i4 + 16 >> 2], (HEAP32[i14 >> 2] | 0) == 0) : 0) { i2 = __ZN4wasm7Literal10getIntegerEv(i10) | 0; i5 = tempRet0; i1 = HEAP32[i6 + 24 >> 2] | 0; if ((i5 | 0) > -1 | (i5 | 0) == -1 & i2 >>> 0 > 4294967295 ? i2 >>> 0 < (HEAP32[i6 + 16 >> 2] | 0) >>> 0 : 0) { i1 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i6 + 8 | 0, i2) | 0; i1 = HEAP32[i1 >> 2] | 0; } HEAP32[i14 >> 2] = i1; HEAP32[i10 >> 2] = i8; HEAP32[i7 + 4 >> 2] = i9; i14 = i12; HEAP32[i14 >> 2] = i11; HEAP32[i14 + 4 >> 2] = i13; } STACKTOP = i15; return; } function __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i1, i3, i6, i4) { i1 = i1 | 0; i3 = i3 | 0; i6 = i6 | 0; i4 = i4 | 0; var i2 = 0, i5 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i7; i1 = HEAP8[i3 >> 0] | 0; L1 : do switch (i1 << 24 >> 24) { case 105: { switch (HEAP8[i3 + 1 >> 0] | 0) { case 51: break; case 54: { if ((HEAP8[i3 + 2 >> 0] | 0) != 52) { i2 = 17; break L1; } if (i4) { i1 = 2; i2 = 19; break L1; } i1 = (HEAP8[i3 + 3 >> 0] | 0) == 0; if (i1 | i6) { i1 = i1 ? 2 : 0; i2 = 19; break L1; } else { i2 = 18; break L1; } } default: { i2 = 17; break L1; } } if ((HEAP8[i3 + 2 >> 0] | 0) == 50) if (!i4 ? (HEAP8[i3 + 3 >> 0] | 0) != 0 : 0) if (i1 << 24 >> 24 == 102) i2 = 10; else i2 = 17; else { i1 = 1; i2 = 19; } else i2 = 17; break; } case 102: { i2 = 10; break; } default: i2 = 17; } while (0); L11 : do if ((i2 | 0) == 10) switch (HEAP8[i3 + 1 >> 0] | 0) { case 51: { if ((HEAP8[i3 + 2 >> 0] | 0) != 50) { i2 = 17; break L11; } if (i4) { i1 = 3; i2 = 19; break L11; } i1 = (HEAP8[i3 + 3 >> 0] | 0) == 0; if (i1 | i6) { i1 = i1 ? 3 : 0; i2 = 19; break L11; } else { i2 = 18; break L11; } } case 54: { if ((HEAP8[i3 + 2 >> 0] | 0) != 52) { i2 = 17; break L11; } if (i4) { i1 = 4; i2 = 19; break L11; } i1 = (HEAP8[i3 + 3 >> 0] | 0) == 0; if (i1 | i6) { i1 = i1 ? 4 : 0; i2 = 19; break L11; } else { i2 = 18; break L11; } } default: { i2 = 17; break L11; } } while (0); if ((i2 | 0) == 17) if (i6) { i1 = 0; i2 = 19; } else i2 = 18; if ((i2 | 0) == 18) { i7 = ___cxa_allocate_exception(20) | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 17453, 12); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i7, i5); ___cxa_throw(i7 | 0, 8, 154); } else if ((i2 | 0) == 19) { STACKTOP = i7; return i1 | 0; } return 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17parseAfterKeywordERNS3_4FragERPcPKc(i3, i1, i4, i5) { i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; var i2 = 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i4); i1 = HEAP32[i1 >> 2] | 0; do if ((i1 | 0) != (HEAP32[11328] | 0)) { if ((i1 | 0) == (HEAP32[11265] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseVarERPcPKcb(i3, i4, i5, 0) | 0; break; } if ((i1 | 0) == (HEAP32[11266] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseVarERPcPKcb(i3, i4, i5, 1) | 0; break; } if ((i1 | 0) == (HEAP32[11269] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseReturnERPcPKc(i3, i4, i5) | 0; break; } if ((i1 | 0) == (HEAP32[11270] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseIfERPcPKc(i3, i4, i5) | 0; break; } if ((i1 | 0) == (HEAP32[11273] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseDoERPcPKc(i3, i4, i5) | 0; break; } if ((i1 | 0) == (HEAP32[11272] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseWhileERPcPKc(i3, i4, i5) | 0; break; } if ((i1 | 0) == (HEAP32[11280] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBreakERPcPKc(i3, i4, i5) | 0; break; } if ((i1 | 0) == (HEAP32[11281] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseContinueERPcPKc(i3, i4, i5) | 0; break; } if ((i1 | 0) == (HEAP32[11282] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseSwitchERPcPKc(i3, i4, i5) | 0; break; } if ((i1 | 0) == (HEAP32[11340] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseNewERPcPKc(i3, i4, i5) | 0; break; } if ((i1 | 0) == (HEAP32[11274] | 0)) { i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseForERPcPKc(i3, i4, i5) | 0; break; } else { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(i1, HEAP32[i4 >> 2] | 0); _abort(); } } else i2 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseFunctionERPcPKc(i3, i4, i5) | 0; while (0); return i2 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_114parse_decltypeINS0_2DbEEEPKcS4_S4_RT_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i6 = i10 + 40 | 0; i7 = i10 + 12 | 0; i8 = i10 + 24 | 0; i9 = i10; L1 : do if ((i2 - i1 | 0) > 3 ? (HEAP8[i1 >> 0] | 0) == 68 : 0) { switch (HEAP8[i1 + 1 >> 0] | 0) { case 84: case 116: break; default: break L1; } i11 = i1 + 2 | 0; i5 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i11, i2, i3) | 0; if ((!((i5 | 0) == (i11 | 0) | (i5 | 0) == (i2 | 0)) ? (HEAP8[i5 >> 0] | 0) == 69 : 0) ? (i4 = HEAP32[i3 + 4 >> 2] | 0, (HEAP32[i3 >> 2] | 0) != (i4 | 0)) : 0) { i3 = i4 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i9, i3); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i9, 0, 42542) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; HEAP32[i8 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i8 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i8, 42358) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i7 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i7 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i6, i7); __ZN10__cxxabiv112_GLOBAL__N_111string_pairaSEOS1_(i3, i6); __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i6); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i9); i1 = i5 + 1 | 0; } } while (0); STACKTOP = i10; return i1 | 0; } function __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi(i12, i13) { i12 = i12 | 0; i13 = i13 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0, i18 = 0; i18 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i11 = i18; do if ((i13 | 0) != -1) { i14 = i12 + 12 | 0; i15 = i12 + 8 | 0; i16 = (HEAP32[i14 >> 2] | 0) - (HEAP32[i15 >> 2] | 0) | 0; i17 = i12 + 24 | 0; i7 = HEAP32[i17 >> 2] | 0; i9 = i12 + 28 | 0; i1 = HEAP32[i9 >> 2] | 0; if ((i7 | 0) == (i1 | 0)) { i6 = i12 + 48 | 0; if (!(HEAP32[i6 >> 2] & 16)) { i1 = -1; break; } i4 = i12 + 20 | 0; i5 = HEAP32[i4 >> 2] | 0; i10 = i12 + 44 | 0; i8 = (HEAP32[i10 >> 2] | 0) - i5 | 0; i3 = i12 + 32 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i3, 0); i1 = i3 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) i2 = (HEAP32[i12 + 40 >> 2] & 2147483647) + -1 | 0; else i2 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i3, i2, 0); i1 = HEAP8[i1 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i2 = HEAP32[i3 >> 2] | 0; i1 = HEAP32[i12 + 36 >> 2] | 0; } else { i2 = i3; i1 = i1 & 255; } i1 = i2 + i1 | 0; HEAP32[i4 >> 2] = i2; HEAP32[i9 >> 2] = i1; i7 = i2 + (i7 - i5) | 0; HEAP32[i17 >> 2] = i7; i2 = i2 + i8 | 0; HEAP32[i10 >> 2] = i2; i8 = i10; i3 = i10; i5 = i1; } else { i2 = i12 + 44 | 0; i8 = i2; i6 = i12 + 48 | 0; i3 = i2; i2 = HEAP32[i2 >> 2] | 0; i5 = i1; } i4 = i7 + 1 | 0; HEAP32[i11 >> 2] = i4; i2 = HEAP32[(i4 >>> 0 < i2 >>> 0 ? i3 : i11) >> 2] | 0; HEAP32[i8 >> 2] = i2; if (HEAP32[i6 >> 2] & 8 | 0) { i1 = i12 + 32 | 0; if ((HEAP8[i1 + 11 >> 0] | 0) < 0) i1 = HEAP32[i1 >> 2] | 0; HEAP32[i15 >> 2] = i1; HEAP32[i14 >> 2] = i1 + i16; HEAP32[i12 + 16 >> 2] = i2; } if ((i7 | 0) == (i5 | 0)) { i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i12 >> 2] | 0) + 52 >> 2] & 31](i12, i13 & 255) | 0; break; } else { HEAP32[i17 >> 2] = i4; HEAP8[i7 >> 0] = i13; i1 = i13 & 255; break; } } else i1 = 0; while (0); STACKTOP = i18; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder16processFunctionsEv(i7) { i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i2 = HEAP32[i7 + 44 >> 2] | 0; i1 = HEAP32[i7 + 40 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZN4wasm6Module11addFunctionEPNS_8FunctionE(HEAP32[i7 >> 2] | 0, HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } i1 = HEAP32[i7 + 20 >> 2] | 0; if ((i1 | 0) != -1 ? (i3 = HEAP32[i7 >> 2] | 0, i4 = HEAP32[i3 + 36 >> 2] | 0, i1 >>> 0 < (HEAP32[i3 + 40 >> 2] | 0) - i4 >> 2 >>> 0) : 0) HEAP32[i3 + 96 >> 2] = HEAP32[HEAP32[i4 + (i1 << 2) >> 2] >> 2]; i2 = i7 + 76 | 0; i1 = HEAP32[i7 + 72 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i6 = HEAP32[i1 + 16 >> 2] | 0; HEAP32[i6 + 4 >> 2] = HEAP32[HEAP32[(HEAP32[(HEAP32[i7 >> 2] | 0) + 36 >> 2] | 0) + (HEAP32[i1 + 20 >> 2] << 2) >> 2] >> 2]; __ZN4wasm6Module9addExportEPNS_6ExportE(HEAP32[i7 >> 2] | 0, i6); i1 = __ZNSt3__211__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0; } i3 = i7 + 56 | 0; i2 = HEAP32[i7 + 52 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = HEAP32[i2 + 16 >> 2] | 0; i5 = HEAP32[i2 + 24 >> 2] | 0; i1 = HEAP32[i2 + 20 >> 2] | 0; while (1) { if ((i1 | 0) == (i5 | 0)) break; HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] = HEAP32[HEAP32[(HEAP32[(HEAP32[i7 >> 2] | 0) + 36 >> 2] | 0) + (i4 << 2) >> 2] >> 2]; i1 = i1 + 4 | 0; } i2 = __ZNSt3__211__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) | 0; } i5 = HEAP32[i7 + 116 >> 2] | 0; i4 = HEAP32[i7 + 112 >> 2] | 0; while (1) { if ((i4 | 0) == (i5 | 0)) { i1 = 18; break; } i1 = HEAP32[i4 >> 2] | 0; i6 = HEAP32[i7 >> 2] | 0; i2 = HEAP32[i6 + 36 >> 2] | 0; if (i1 >>> 0 >= (HEAP32[i6 + 40 >> 2] | 0) - i2 >> 2 >>> 0) { i1 = 20; break; } i1 = HEAP32[i2 + (i1 << 2) >> 2] | 0; i2 = i6 + 64 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i6 + 68 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i6 + 60 | 0, i1); else { HEAP32[i3 >> 2] = HEAP32[i1 >> 2]; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; } i4 = i4 + 4 | 0; } if ((i1 | 0) == 18) return; else if ((i1 | 0) == 20) ___assert_fail(21533, 18854, 1642, 21563); } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj(i5, i1, i2) { i5 = i5 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i4 = i12 + 24 | 0; i6 = i12 + 56 | 0; i7 = i12 + 8 | 0; i8 = i12 + 44 | 0; i9 = i12 + 40 | 0; i10 = i12; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i10 >> 2] = HEAP32[i1 >> 2]; i1 = HEAP32[i5 + 4 >> 2] | 0; i2 = __ZN4wasm15Asm2WasmBuilder12bytesToShiftEj(i1, i2) | 0; if (((__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i10, 0) | 0, 45072) | 0 ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i10, 1) | 0, 45256) | 0 : 0) ? __ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i10, 3) | 0, 0) | 0, 45112) | 0 : 0) ? (i13 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i10, 3) | 0, 1) | 0, (__ZN6cashew5Value10getIntegerEv(HEAP32[i13 >> 2] | 0) | 0) == (i2 | 0)) : 0) { i3 = HEAP32[i5 + 8 >> 2] | 0; i13 = __ZN6cashew3RefixEj(i10, 2) | 0; HEAP32[i6 >> 2] = HEAP32[i13 >> 2]; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; i3 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i3, i4) | 0; } else i11 = 6; do if ((i11 | 0) == 6) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i10, 0) | 0, 45112) | 0) { i3 = __ZN6cashew3RefixEj(i10, 1) | 0; i3 = (__ZN6cashew5Value10getIntegerEv(HEAP32[i3 >> 2] | 0) | 0) << i2; HEAP32[i7 >> 2] = 1; HEAP32[i7 + 8 >> 2] = i3; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i7 + 12 >> 2]; i3 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i1 + 8 | 0, i4) | 0; break; } else { HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i8, 28237, 20); HEAP32[i9 >> 2] = HEAP32[i10 >> 2]; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i8, i4); } while (0); STACKTOP = i12; return i3 | 0; } function _scanexp(i5, i3) { i5 = i5 | 0; i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0, i6 = 0, i7 = 0; i6 = i5 + 4 | 0; i1 = HEAP32[i6 >> 2] | 0; i7 = i5 + 100 | 0; if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i6 >> 2] = i1 + 1; i1 = HEAPU8[i1 >> 0] | 0; } else i1 = ___shgetc(i5) | 0; switch (i1 | 0) { case 43: case 45: { i2 = (i1 | 0) == 45 & 1; i1 = HEAP32[i6 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i6 >> 2] = i1 + 1; i1 = HEAPU8[i1 >> 0] | 0; } else i1 = ___shgetc(i5) | 0; if ((i3 | 0) != 0 & (i1 + -48 | 0) >>> 0 > 9 ? (HEAP32[i7 >> 2] | 0) != 0 : 0) HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -1; break; } default: i2 = 0; } if ((i1 + -48 | 0) >>> 0 > 9) if (!(HEAP32[i7 >> 2] | 0)) { i2 = -2147483648; i1 = 0; } else { HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -1; i2 = -2147483648; i1 = 0; } else { i4 = 0; do { i4 = i1 + -48 + (i4 * 10 | 0) | 0; i1 = HEAP32[i6 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i6 >> 2] = i1 + 1; i1 = HEAPU8[i1 >> 0] | 0; } else i1 = ___shgetc(i5) | 0; } while ((i1 + -48 | 0) >>> 0 < 10 & (i4 | 0) < 214748364); i3 = ((i4 | 0) < 0) << 31 >> 31; if ((i1 + -48 | 0) >>> 0 < 10) do { i3 = ___muldi3(i4 | 0, i3 | 0, 10, 0) | 0; i4 = tempRet0; i1 = _i64Add(i1 | 0, ((i1 | 0) < 0) << 31 >> 31 | 0, -48, -1) | 0; i4 = _i64Add(i1 | 0, tempRet0 | 0, i3 | 0, i4 | 0) | 0; i3 = tempRet0; i1 = HEAP32[i6 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i6 >> 2] = i1 + 1; i1 = HEAPU8[i1 >> 0] | 0; } else i1 = ___shgetc(i5) | 0; } while ((i1 + -48 | 0) >>> 0 < 10 & ((i3 | 0) < 21474836 | (i3 | 0) == 21474836 & i4 >>> 0 < 2061584302)); if ((i1 + -48 | 0) >>> 0 < 10) do { i1 = HEAP32[i6 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i6 >> 2] = i1 + 1; i1 = HEAPU8[i1 >> 0] | 0; } else i1 = ___shgetc(i5) | 0; } while ((i1 + -48 | 0) >>> 0 < 10); if (HEAP32[i7 >> 2] | 0) HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -1; i7 = (i2 | 0) != 0; i1 = _i64Subtract(0, 0, i4 | 0, i3 | 0) | 0; i2 = i7 ? tempRet0 : i3; i1 = i7 ? i1 : i4; } tempRet0 = i2; return i1 | 0; } function __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i3, i13) { i3 = i3 | 0; i13 = i13 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i12 = i14 + 24 | 0; i2 = i14 + 8 | 0; i10 = i14 + 12 | 0; i11 = i14 + 4 | 0; i1 = i14; __ZNSt3__2plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EEPKS6_RKS9_(i10, 34563, i3); __ZN6cashew7IStringC2EPKcb(i2, (HEAP8[i10 + 11 >> 0] | 0) < 0 ? HEAP32[i10 >> 2] | 0 : i10, 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i10); HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i12 >> 2] = HEAP32[i11 >> 2]; if (!(__ZN4wasm6Module17checkFunctionTypeENS_4NameE(i13, i12) | 0)) { i1 = __Znwj(20) | 0; i11 = i1 + 4 | 0; HEAP32[i11 >> 2] = 0; HEAP32[i11 + 4 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; HEAP32[i11 + 12 >> 2] = 0; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; i11 = i3 + 11 | 0; if ((HEAP8[i11 >> 0] | 0) < 0) { i9 = i3; i10 = i3; i2 = HEAP32[i3 >> 2] | 0; } else { i9 = i3; i10 = i3; i2 = i3; } i5 = __ZN4wasm13sigToWasmTypeEc(HEAP8[i2 >> 0] | 0) | 0; HEAP32[i1 + 4 >> 2] = i5; i5 = i3 + 4 | 0; i6 = i1 + 8 | 0; i7 = i1 + 12 | 0; i8 = i1 + 16 | 0; i4 = 1; while (1) { i2 = HEAP8[i11 >> 0] | 0; i3 = i2 << 24 >> 24 < 0; if (i3) i2 = HEAP32[i5 >> 2] | 0; else i2 = i2 & 255; if (i4 >>> 0 >= i2 >>> 0) break; if (i3) i2 = HEAP32[i10 >> 2] | 0; else i2 = i9; i2 = __ZN4wasm13sigToWasmTypeEc(HEAP8[i2 + i4 >> 0] | 0) | 0; HEAP32[i12 >> 2] = i2; i3 = HEAP32[i7 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i8 >> 2] | 0) >>> 0) { HEAP32[i3 >> 2] = i2; HEAP32[i7 >> 2] = i3 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i6, i12); i4 = i4 + 1 | 0; } __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(i13, i1); } else { HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; HEAP32[i12 >> 2] = HEAP32[i1 >> 2]; i1 = __ZN4wasm6Module15getFunctionTypeENS_4NameE(i13, i12) | 0; } STACKTOP = i14; return i1 | 0; } function __ZNSt3__29__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_(i7, i9, i12, i13, i14, i2, i3, i4, i5, i8) { i7 = i7 | 0; i9 = i9 | 0; i12 = i12 | 0; i13 = i13 | 0; i14 = i14 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i8 = i8 | 0; var i1 = 0, i6 = 0, i10 = 0, i11 = 0; i10 = HEAP32[i13 >> 2] | 0; i11 = (i10 | 0) == (i12 | 0); do if (i11) { i1 = (HEAP8[i8 + 24 >> 0] | 0) == i7 << 24 >> 24; if (!i1 ? (HEAP8[i8 + 25 >> 0] | 0) != i7 << 24 >> 24 : 0) { i6 = 5; break; } HEAP32[i13 >> 2] = i12 + 1; HEAP8[i12 >> 0] = i1 ? 43 : 45; HEAP32[i14 >> 2] = 0; i1 = 0; } else i6 = 5; while (0); L6 : do if ((i6 | 0) == 5) { i6 = HEAP8[i3 + 11 >> 0] | 0; if (i7 << 24 >> 24 == i2 << 24 >> 24 ? ((i6 << 24 >> 24 < 0 ? HEAP32[i3 + 4 >> 2] | 0 : i6 & 255) | 0) != 0 : 0) { i1 = HEAP32[i5 >> 2] | 0; if ((i1 - i4 | 0) >= 160) { i1 = 0; break; } i13 = HEAP32[i14 >> 2] | 0; HEAP32[i5 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i13; HEAP32[i14 >> 2] = 0; i1 = 0; break; } i3 = i8 + 26 | 0; i2 = 0; while (1) { i1 = i8 + i2 | 0; if ((i2 | 0) == 26) { i1 = i3; break; } if ((HEAP8[i1 >> 0] | 0) == i7 << 24 >> 24) break; else i2 = i2 + 1 | 0; } i1 = i1 - i8 | 0; if ((i1 | 0) > 23) i1 = -1; else { switch (i9 | 0) { case 10: case 8: { if ((i1 | 0) >= (i9 | 0)) { i1 = -1; break L6; } break; } case 16: { if ((i1 | 0) >= 22) { if (i11) { i1 = -1; break L6; } if ((i10 - i12 | 0) >= 3) { i1 = -1; break L6; } if ((HEAP8[i10 + -1 >> 0] | 0) != 48) { i1 = -1; break L6; } HEAP32[i14 >> 2] = 0; i1 = HEAP8[38819 + i1 >> 0] | 0; HEAP32[i13 >> 2] = i10 + 1; HEAP8[i10 >> 0] = i1; i1 = 0; break L6; } break; } default: {} } i1 = HEAP8[38819 + i1 >> 0] | 0; HEAP32[i13 >> 2] = i10 + 1; HEAP8[i10 >> 0] = i1; HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + 1; i1 = 0; } } while (0); return i1 | 0; } function __ZNSt3__29__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw(i7, i9, i12, i13, i14, i2, i3, i4, i5, i8) { i7 = i7 | 0; i9 = i9 | 0; i12 = i12 | 0; i13 = i13 | 0; i14 = i14 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i8 = i8 | 0; var i1 = 0, i6 = 0, i10 = 0, i11 = 0; i10 = HEAP32[i13 >> 2] | 0; i11 = (i10 | 0) == (i12 | 0); do if (i11) { i1 = (HEAP32[i8 + 96 >> 2] | 0) == (i7 | 0); if (!i1 ? (HEAP32[i8 + 100 >> 2] | 0) != (i7 | 0) : 0) { i6 = 5; break; } HEAP32[i13 >> 2] = i12 + 1; HEAP8[i12 >> 0] = i1 ? 43 : 45; HEAP32[i14 >> 2] = 0; i1 = 0; } else i6 = 5; while (0); L6 : do if ((i6 | 0) == 5) { i6 = HEAP8[i3 + 11 >> 0] | 0; if ((i7 | 0) == (i2 | 0) ? ((i6 << 24 >> 24 < 0 ? HEAP32[i3 + 4 >> 2] | 0 : i6 & 255) | 0) != 0 : 0) { i1 = HEAP32[i5 >> 2] | 0; if ((i1 - i4 | 0) >= 160) { i1 = 0; break; } i13 = HEAP32[i14 >> 2] | 0; HEAP32[i5 >> 2] = i1 + 4; HEAP32[i1 >> 2] = i13; HEAP32[i14 >> 2] = 0; i1 = 0; break; } i3 = i8 + 104 | 0; i2 = 0; while (1) { i1 = i8 + (i2 << 2) | 0; if ((i2 | 0) == 26) { i1 = i3; break; } if ((HEAP32[i1 >> 2] | 0) == (i7 | 0)) break; else i2 = i2 + 1 | 0; } i1 = i1 - i8 | 0; i2 = i1 >> 2; if ((i1 | 0) > 92) i1 = -1; else { switch (i9 | 0) { case 10: case 8: { if ((i2 | 0) >= (i9 | 0)) { i1 = -1; break L6; } break; } case 16: { if ((i1 | 0) >= 88) { if (i11) { i1 = -1; break L6; } if ((i10 - i12 | 0) >= 3) { i1 = -1; break L6; } if ((HEAP8[i10 + -1 >> 0] | 0) != 48) { i1 = -1; break L6; } HEAP32[i14 >> 2] = 0; i1 = HEAP8[38819 + i2 >> 0] | 0; HEAP32[i13 >> 2] = i10 + 1; HEAP8[i10 >> 0] = i1; i1 = 0; break L6; } break; } default: {} } i1 = HEAP8[38819 + i2 >> 0] | 0; HEAP32[i13 >> 2] = i10 + 1; HEAP8[i10 >> 0] = i1; HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + 1; i1 = 0; } } while (0); return i1 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRb(i2, i3, i4, i5, i6, i7) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i1 = i13 + 40 | 0; i12 = i13 + 16 | 0; i8 = i13 + 8 | 0; i9 = i13 + 12 | 0; i10 = i13 + 4 | 0; i11 = i13; if (!(HEAP32[i5 + 4 >> 2] & 1)) { HEAP32[i8 >> 2] = -1; i11 = HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i10 >> 2] = HEAP32[i4 >> 2]; HEAP32[i12 >> 2] = HEAP32[i9 >> 2]; HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; i12 = FUNCTION_TABLE_iiiiiii[i11 & 63](i2, i12, i1, i5, i6, i8) | 0; HEAP32[i3 >> 2] = i12; switch (HEAP32[i8 >> 2] | 0) { case 0: { HEAP8[i7 >> 0] = 0; break; } case 1: { HEAP8[i7 >> 0] = 1; break; } default: { HEAP8[i7 >> 0] = 1; HEAP32[i6 >> 2] = 4; } } i1 = HEAP32[i3 >> 2] | 0; } else { i9 = __ZNKSt3__28ios_base6getlocEv(i5) | 0; HEAP32[i1 >> 2] = i9; i10 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47508) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i9) | 0; i9 = __ZNKSt3__28ios_base6getlocEv(i5) | 0; HEAP32[i1 >> 2] = i9; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47516) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i9) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i12, i2); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 255](i12 + 12 | 0, i2); HEAP32[i11 >> 2] = HEAP32[i4 >> 2]; i2 = i12 + 24 | 0; HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; i1 = (__ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i3, i1, i12, i2, i10, i6, 1) | 0) == (i12 | 0) & 1; HEAP8[i7 >> 0] = i1; i1 = HEAP32[i3 >> 2] | 0; do { i2 = i2 + -12 | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i2); } while ((i2 | 0) != (i12 | 0)); } STACKTOP = i13; return i1 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRb(i2, i3, i4, i5, i6, i7) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i1 = i13 + 40 | 0; i12 = i13 + 16 | 0; i8 = i13 + 8 | 0; i9 = i13 + 12 | 0; i10 = i13 + 4 | 0; i11 = i13; if (!(HEAP32[i5 + 4 >> 2] & 1)) { HEAP32[i8 >> 2] = -1; i11 = HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i10 >> 2] = HEAP32[i4 >> 2]; HEAP32[i12 >> 2] = HEAP32[i9 >> 2]; HEAP32[i1 >> 2] = HEAP32[i10 >> 2]; i12 = FUNCTION_TABLE_iiiiiii[i11 & 63](i2, i12, i1, i5, i6, i8) | 0; HEAP32[i3 >> 2] = i12; switch (HEAP32[i8 >> 2] | 0) { case 0: { HEAP8[i7 >> 0] = 0; break; } case 1: { HEAP8[i7 >> 0] = 1; break; } default: { HEAP8[i7 >> 0] = 1; HEAP32[i6 >> 2] = 4; } } i1 = HEAP32[i3 >> 2] | 0; } else { i9 = __ZNKSt3__28ios_base6getlocEv(i5) | 0; HEAP32[i1 >> 2] = i9; i10 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i9) | 0; i9 = __ZNKSt3__28ios_base6getlocEv(i5) | 0; HEAP32[i1 >> 2] = i9; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47492) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i9) | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 255](i12, i2); FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 255](i12 + 12 | 0, i2); HEAP32[i11 >> 2] = HEAP32[i4 >> 2]; i2 = i12 + 24 | 0; HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; i1 = (__ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i3, i1, i12, i2, i10, i6, 1) | 0) == (i12 | 0) & 1; HEAP8[i7 >> 0] = i1; i1 = HEAP32[i3 >> 2] | 0; do { i2 = i2 + -12 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i2); } while ((i2 | 0) != (i12 | 0)); } STACKTOP = i13; return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseCallES1_RPc(i6, i1, i7) { i6 = i6 | 0; i1 = i1 | 0; i7 = i7 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i14 + 16 | 0; i4 = i14 + 12 | 0; i3 = i14 + 8 | 0; i9 = i14 + 4 | 0; i10 = i14; i13 = i6 + 4 | 0; __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i6, (((HEAP32[i13 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) | 0) / 12 | 0) + 1 | 0); i2 = HEAP32[i7 >> 2] | 0; if ((HEAP8[i2 >> 0] | 0) != 40) ___assert_fail(28704, 28546, 614, 29191); HEAP32[i7 >> 2] = i2 + 1; HEAP32[i3 >> 2] = HEAP32[i1 >> 2]; HEAP32[i5 >> 2] = HEAP32[i3 >> 2]; i3 = __ZN6cashew12ValueBuilder8makeCallENS_3RefE(i5) | 0; L4 : while (1) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7); i1 = HEAP32[i7 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) == 41) { i8 = i1; break; } HEAP32[i9 >> 2] = i3; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i6, i7, 29201) | 0; HEAP32[i10 >> 2] = i1; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; __ZN6cashew12ValueBuilder12appendToCallENS_3RefES1_(i4, i5); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7); i1 = HEAP32[i7 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 41: { i8 = i1; break L4; } case 44: break; default: { i11 = 7; break L4; } } HEAP32[i7 >> 2] = i1 + 1; } if ((i11 | 0) == 7) _abort(); HEAP32[i7 >> 2] = i8 + 1; i1 = HEAP32[i13 >> 2] | 0; i2 = i1 + -12 | 0; if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i12 = i1; else ___assert_fail(29204, 28546, 630, 29191); while (1) { if ((i12 | 0) == (i2 | 0)) break; i11 = i12 + -12 | 0; HEAP32[i13 >> 2] = i11; __ZNSt3__213__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i11); i12 = HEAP32[i13 >> 2] | 0; } STACKTOP = i14; return i3 | 0; } function __ZN4wasm17WasmBinaryBuilder9visitCallEPNS_4CallE(i5, i1) { i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i8 + 4 | 0; i7 = i8; HEAP32[i7 >> 2] = i1; if (HEAP8[i5 + 12 >> 0] | 0) { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20263) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; } i4 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i5) | 0; i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i5) | 0; HEAP32[i6 >> 2] = i1; i2 = HEAP32[i5 + 24 >> 2] | 0; if (i1 >>> 0 >= (HEAP32[i5 + 28 >> 2] | 0) - i2 >> 2 >>> 0) ___assert_fail(20277, 18854, 1854, 20306); i3 = HEAP32[i2 + (i1 << 2) >> 2] | 0; if (((HEAP32[i3 + 12 >> 2] | 0) - (HEAP32[i3 + 8 >> 2] | 0) >> 2 | 0) != (i4 | 0)) ___assert_fail(20316, 18854, 1857, 20306); __ZN11ArenaVectorIPN4wasm10ExpressionEE6resizeEj((HEAP32[i7 >> 2] | 0) + 8 | 0, i4); i2 = i4 + -1 | 0; i1 = 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i10 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i5) | 0; i9 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj((HEAP32[i7 >> 2] | 0) + 8 | 0, i2 - i1 | 0) | 0; HEAP32[i9 >> 2] = i10; i1 = i1 + 1 | 0; } i4 = HEAP32[i7 >> 2] | 0; HEAP32[i4 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; i1 = __ZNSt3__23mapIjNS_6vectorIPN4wasm4CallENS_9allocatorIS4_EEEENS_4lessIjEENS5_INS_4pairIKjS7_EEEEEixERSB_(i5 + 52 | 0, i6) | 0; i2 = i1 + 4 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i1 + 8 >> 2] | 0)) __ZNSt3__26vectorIPN4wasm4CallENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1, i7); else { HEAP32[i3 >> 2] = i4; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; } STACKTOP = i8; return; } function __ZN4wasm15Asm2WasmBuilder22getBuiltinFunctionTypeENS_4NameES1_P11ArenaVectorIPNS_10ExpressionEE(i2, i3, i4, i5) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i6 = i9 + 24 | 0; i7 = i9 + 12 | 0; i8 = i9; L1 : do if ((HEAP32[i3 >> 2] | 0) == (HEAP32[11408] | 0) ? (HEAP32[i4 >> 2] | 0) == (HEAP32[11409] | 0) : 0) { if (i5 | 0 ? (HEAP32[i5 + 8 >> 2] | 0) == 1 : 0) { i5 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i5, 0) | 0; switch (HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0) { case 1: { HEAP32[i6 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; HEAP32[i6 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i6, 14633, 2); i1 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i6, HEAP32[i2 >> 2] | 0) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6); break L1; } case 3: { HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, 14636, 2); i1 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i7, HEAP32[i2 >> 2] | 0) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); break L1; } case 4: { HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i8, 14639, 2); i1 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i8, HEAP32[i2 >> 2] | 0) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8); break L1; } default: { i1 = 0; break L1; } } } ___assert_fail(14576, 11743, 427, 14610); } else i1 = 0; while (0); STACKTOP = i9; return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder9parseTypeERNS_7ElementE(i11, i2) { i11 = i11 | 0; i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i12 = i14; i13 = __ZN4wasm11make_uniqueINS_12FunctionTypeEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() | 0; i10 = __ZN4wasm7ElementixEj(i2, 1) | 0; if (!(HEAP8[i10 >> 0] | 0)) { i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i13 >> 2] = i1; i1 = 2; } else i1 = 1; i3 = __ZN4wasm7ElementixEj(i2, i1) | 0; if (!(HEAP8[i3 >> 0] | 0)) ___assert_fail(17429, 17152, 1418, 17443); i4 = i13 + 4 | 0; i5 = i13 + 8 | 0; i6 = i13 + 12 | 0; i7 = i13 + 16 | 0; i2 = 1; while (1) { i10 = (__ZN4wasm7Element4listEv(i3) | 0) + 8 | 0; if (i2 >>> 0 >= (HEAP32[i10 >> 2] | 0) >>> 0) break; i8 = __ZN4wasm7ElementixEj(i3, i2) | 0; i10 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i8, 0) | 0) | 0; L10 : do if ((i10 | 0) != (HEAP32[11437] | 0)) { i10 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i8, 0) | 0) | 0; if ((i10 | 0) == (HEAP32[11438] | 0)) { i10 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i11, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i8, 1) | 0) | 0, 0, 0) | 0; HEAP32[i4 >> 2] = i10; } } else { i1 = 1; while (1) { i10 = (__ZN4wasm7Element4listEv(i8) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i10 >> 2] | 0) >>> 0) break L10; i9 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i11, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i8, i1) | 0) | 0, 0, 0) | 0; HEAP32[i12 >> 2] = i9; i10 = HEAP32[i6 >> 2] | 0; if (i10 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i10 >> 2] = i9; HEAP32[i6 >> 2] = i10 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i5, i12); i1 = i1 + 1 | 0; } } while (0); i2 = i2 + 1 | 0; } __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(HEAP32[i11 >> 2] | 0, i13); STACKTOP = i14; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseForERPcPKc(i9, i10, i11) { i9 = i9 | 0; i10 = i10 | 0; i11 = i11 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i8 = i16 + 28 | 0; i7 = i16 + 24 | 0; i6 = i16 + 20 | 0; i5 = i16 + 16 | 0; i12 = i16 + 12 | 0; i13 = i16 + 8 | 0; i14 = i16 + 4 | 0; i15 = i16; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i10); i1 = HEAP32[i10 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 40) ___assert_fail(28704, 28546, 501, 29170); HEAP32[i10 >> 2] = i1 + 1; i4 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i9, i10, 28513) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i10); i1 = HEAP32[i10 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 59) ___assert_fail(29179, 28546, 505, 29170); HEAP32[i10 >> 2] = i1 + 1; i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i9, i10, 28513) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i10); i1 = HEAP32[i10 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 59) ___assert_fail(29179, 28546, 509, 29170); HEAP32[i10 >> 2] = i1 + 1; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i9, i10, 42358) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i10); i2 = HEAP32[i10 >> 2] | 0; if ((HEAP8[i2 >> 0] | 0) == 41) { HEAP32[i10 >> 2] = i2 + 1; i11 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i9, i10, i11) | 0; HEAP32[i12 >> 2] = i4; HEAP32[i13 >> 2] = i3; HEAP32[i14 >> 2] = i1; HEAP32[i15 >> 2] = i11; HEAP32[i5 >> 2] = HEAP32[i12 >> 2]; HEAP32[i6 >> 2] = HEAP32[i13 >> 2]; HEAP32[i7 >> 2] = HEAP32[i14 >> 2]; HEAP32[i8 >> 2] = HEAP32[i15 >> 2]; i15 = __ZN6cashew12ValueBuilder7makeForENS_3RefES1_S1_S1_(i5, i6, i7, i8) | 0; STACKTOP = i16; return i15 | 0; } else ___assert_fail(28926, 28546, 513, 29170); return 0; } function __ZN4wasm16PrintSExpression17visitFunctionTypeEPNS_12FunctionTypeEb(i5, i4, i6) { i5 = i5 | 0; i4 = i4 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i7 + 4 | 0; i2 = i7; if (i6) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i5 >> 2] | 0, 34993, 0) | 0, 32) | 0; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm16PrintSExpression9printNameENS_4NameE(i5, i1) | 0, 33259) | 0; } i2 = i4 + 8 | 0; i1 = i4 + 12 | 0; if ((HEAP32[i1 >> 2] | 0) != (HEAP32[i2 >> 2] | 0)) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i5 >> 2] | 0, HEAP32[i5 + 12 >> 2] | 0) | 0; __Z17printMinorOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i5 >> 2] | 0, 35108) | 0; i3 = HEAP32[i1 >> 2] | 0; i1 = HEAP32[i2 >> 2] | 0; while (1) { i2 = HEAP32[i5 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i2 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i2, 32) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[i1 >> 2] | 0) | 0) | 0; i1 = i1 + 4 | 0; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i2, 41) | 0; } i1 = i4 + 4 | 0; if (HEAP32[i1 >> 2] | 0) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i5 >> 2] | 0, HEAP32[i5 + 12 >> 2] | 0) | 0; i4 = __Z17printMinorOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i5 >> 2] | 0, 31613) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[i1 >> 2] | 0) | 0) | 0, 41) | 0; } if (i6) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i5 >> 2] | 0, 33266) | 0; STACKTOP = i7; return; } function _wcsrtombs(i3, i6, i1, i2) { i3 = i3 | 0; i6 = i6 | 0; i1 = i1 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i8; L1 : do if (!i3) { i1 = HEAP32[i6 >> 2] | 0; i2 = HEAP32[i1 >> 2] | 0; if (!i2) i1 = 0; else { i3 = i1; i1 = 0; do { if (i2 >>> 0 > 127) { i2 = _wcrtomb(i7, i2, 0) | 0; if ((i2 | 0) == -1) { i1 = -1; break L1; } } else i2 = 1; i1 = i2 + i1 | 0; i3 = i3 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; } while ((i2 | 0) != 0); } } else { L9 : do if (i1 >>> 0 > 3) { i2 = i1; i4 = HEAP32[i6 >> 2] | 0; while (1) { i5 = HEAP32[i4 >> 2] | 0; if ((i5 + -1 | 0) >>> 0 > 126) { if (!i5) break; i5 = _wcrtomb(i3, i5, 0) | 0; if ((i5 | 0) == -1) { i1 = -1; break L1; } i3 = i3 + i5 | 0; i2 = i2 - i5 | 0; } else { HEAP8[i3 >> 0] = i5; i3 = i3 + 1 | 0; i2 = i2 + -1 | 0; i4 = HEAP32[i6 >> 2] | 0; } i4 = i4 + 4 | 0; HEAP32[i6 >> 2] = i4; if (i2 >>> 0 <= 3) break L9; } HEAP8[i3 >> 0] = 0; HEAP32[i6 >> 2] = 0; i1 = i1 - i2 | 0; break L1; } else i2 = i1; while (0); if (i2) { i4 = HEAP32[i6 >> 2] | 0; while (1) { i5 = HEAP32[i4 >> 2] | 0; if ((i5 + -1 | 0) >>> 0 > 126) { if (!i5) { i4 = 19; break; } i5 = _wcrtomb(i7, i5, 0) | 0; if ((i5 | 0) == -1) { i1 = -1; break L1; } if (i2 >>> 0 < i5 >>> 0) { i4 = 22; break; } _wcrtomb(i3, HEAP32[i4 >> 2] | 0, 0) | 0; i3 = i3 + i5 | 0; i2 = i2 - i5 | 0; } else { HEAP8[i3 >> 0] = i5; i3 = i3 + 1 | 0; i2 = i2 + -1 | 0; i4 = HEAP32[i6 >> 2] | 0; } i4 = i4 + 4 | 0; HEAP32[i6 >> 2] = i4; if (!i2) break L1; } if ((i4 | 0) == 19) { HEAP8[i3 >> 0] = 0; HEAP32[i6 >> 2] = 0; i1 = i1 - i2 | 0; break; } else if ((i4 | 0) == 22) { i1 = i1 - i2 | 0; break; } } } while (0); STACKTOP = i8; return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseVarERPcPKcb(i13, i14, i1, i2) { i13 = i13 | 0; i14 = i14 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i15 = 0, i16 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i7 = i12 + 36 | 0; i6 = i12 + 32 | 0; i5 = i12 + 28 | 0; i8 = i12; i9 = i12 + 24 | 0; i10 = i12 + 20 | 0; i11 = i12 + 16 | 0; i3 = __ZN6cashew12ValueBuilder7makeVarEb(i2) | 0; i4 = i8 + 12 | 0; i2 = i8 + 8 | 0; L1 : while (1) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14); i1 = HEAP32[i14 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) == 59) { i15 = i1; break; } __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i8, i1); if ((HEAP32[i4 >> 2] | 0) != 2) { i16 = 4; break; } HEAP32[i14 >> 2] = (HEAP32[i14 >> 2] | 0) + (HEAP32[i2 >> 2] | 0); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14); i1 = HEAP32[i14 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) == 61) { HEAP32[i14 >> 2] = i1 + 1; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14); i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i13, i14, 28851) | 0; } else i1 = 0; HEAP32[i9 >> 2] = i3; HEAP32[i10 >> 2] = HEAP32[i8 >> 2]; HEAP32[i11 >> 2] = i1; HEAP32[i5 >> 2] = HEAP32[i9 >> 2]; HEAP32[i6 >> 2] = HEAP32[i10 >> 2]; HEAP32[i7 >> 2] = HEAP32[i11 >> 2]; __ZN6cashew12ValueBuilder11appendToVarENS_3RefENS_7IStringES1_(i5, i6, i7); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i14); i1 = HEAP32[i14 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 59: { i16 = 10; break L1; } case 44: break; default: { i16 = 9; break L1; } } HEAP32[i14 >> 2] = i1 + 1; } if ((i16 | 0) == 4) ___assert_fail(28823, 28546, 437, 28842); else if ((i16 | 0) == 9) _abort(); else if ((i16 | 0) == 10) i15 = i1; HEAP32[i14 >> 2] = i15 + 1; STACKTOP = i12; return i3 | 0; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE8__rehashEj(i11, i10) { i11 = i11 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i2 = i11 + 4 | 0; L1 : do if (i10) { if (i10 >>> 0 > 1073741823) { i11 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i11); ___cxa_throw(i11 | 0, 2024, 148); } i9 = __Znwj(i10 << 2) | 0; i1 = HEAP32[i11 >> 2] | 0; HEAP32[i11 >> 2] = i9; if (i1 | 0) __ZdlPv(i1); HEAP32[i2 >> 2] = i10; i1 = 0; while (1) { if ((i1 | 0) == (i10 | 0)) break; HEAP32[(HEAP32[i11 >> 2] | 0) + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i3 = i11 + 8 | 0; i1 = HEAP32[i3 >> 2] | 0; if (i1 | 0) { i2 = HEAP32[i1 + 4 >> 2] | 0; i8 = i10 + -1 | 0; i9 = (i8 & i10 | 0) == 0; if (i9) i2 = i2 & i8; else i2 = (i2 >>> 0) % (i10 >>> 0) | 0; HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] = i3; while (1) { i7 = i1; L24 : while (1) while (1) { i1 = HEAP32[i7 >> 2] | 0; if (!i1) break L1; i3 = HEAP32[i1 + 4 >> 2] | 0; if (i9) i6 = i3 & i8; else i6 = (i3 >>> 0) % (i10 >>> 0) | 0; if ((i6 | 0) == (i2 | 0)) { i7 = i1; continue L24; } i3 = (HEAP32[i11 >> 2] | 0) + (i6 << 2) | 0; if (!(HEAP32[i3 >> 2] | 0)) break L24; i4 = i1 + 8 | 0; i3 = i1; while (1) { i5 = HEAP32[i3 >> 2] | 0; if (!i5) break; if ((HEAP32[i4 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) i3 = i5; else break; } HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2]; HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2] = i1; } HEAP32[i3 >> 2] = i7; i2 = i6; } } } else { i1 = HEAP32[i11 >> 2] | 0; HEAP32[i11 >> 2] = 0; if (i1 | 0) __ZdlPv(i1); HEAP32[i2 >> 2] = 0; } while (0); return; } function __ZN4wasm17WasmBinaryBuilder15maybeVisitConstERPNS_10ExpressionEh(i3, i4, i1) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i5 = 0, i6 = 0, i7 = 0, d8 = 0.0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i7; switch (i1 << 24 >> 24) { case 16: { i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0; i2 = __ZN4wasm17WasmBinaryBuilder9getS32LEBEv(i3) | 0; HEAP32[i1 + 8 >> 2] = 1; HEAP32[i1 + 16 >> 2] = i2; i2 = 1; i6 = 6; break; } case 17: { i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0; i6 = __ZN4wasm17WasmBinaryBuilder9getS64LEBEv(i3) | 0; HEAP32[i1 + 8 >> 2] = 2; i2 = i1 + 16 | 0; HEAP32[i2 >> 2] = i6; HEAP32[i2 + 4 >> 2] = tempRet0; i2 = 2; i6 = 6; break; } case 19: { i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0; d8 = +__ZN4wasm17WasmBinaryBuilder10getFloat32Ev(i3); HEAP32[i1 + 8 >> 2] = 3; HEAPF32[i1 + 16 >> 2] = d8; i2 = 3; i6 = 6; break; } case 18: { i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0; d8 = +__ZN4wasm17WasmBinaryBuilder10getFloat64Ev(i3); HEAP32[i1 + 8 >> 2] = 4; HEAPF64[i1 + 16 >> 3] = d8; i2 = 4; i6 = 6; break; } default: i1 = 0; } if ((i6 | 0) == 6) { HEAP32[i1 + 4 >> 2] = i2; HEAP32[i4 >> 2] = i1; if (!(HEAP8[i3 + 12 >> 0] | 0)) i1 = 1; else { i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20792) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i1, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) | 0; i1 = 1; } } STACKTOP = i7; return i1 | 0; } function ___stdio_write(i12, i2, i1) { i12 = i12 | 0; i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i11 = i15 + 16 | 0; i10 = i15; i7 = i15 + 32 | 0; i13 = i12 + 28 | 0; i6 = HEAP32[i13 >> 2] | 0; HEAP32[i7 >> 2] = i6; i14 = i12 + 20 | 0; i6 = (HEAP32[i14 >> 2] | 0) - i6 | 0; HEAP32[i7 + 4 >> 2] = i6; HEAP32[i7 + 8 >> 2] = i2; HEAP32[i7 + 12 >> 2] = i1; i8 = i12 + 60 | 0; i9 = i12 + 44 | 0; i5 = 2; i2 = i6 + i1 | 0; while (1) { if (!(HEAP32[11467] | 0)) { HEAP32[i11 >> 2] = HEAP32[i8 >> 2]; HEAP32[i11 + 4 >> 2] = i7; HEAP32[i11 + 8 >> 2] = i5; i4 = ___syscall_ret(___syscall146(146, i11 | 0) | 0) | 0; } else { _pthread_cleanup_push(165, i12 | 0); HEAP32[i10 >> 2] = HEAP32[i8 >> 2]; HEAP32[i10 + 4 >> 2] = i7; HEAP32[i10 + 8 >> 2] = i5; i4 = ___syscall_ret(___syscall146(146, i10 | 0) | 0) | 0; _pthread_cleanup_pop(0); } if ((i2 | 0) == (i4 | 0)) { i2 = 6; break; } if ((i4 | 0) < 0) { i2 = 8; break; } i2 = i2 - i4 | 0; i3 = HEAP32[i7 + 4 >> 2] | 0; if (i4 >>> 0 <= i3 >>> 0) if ((i5 | 0) == 2) { HEAP32[i13 >> 2] = (HEAP32[i13 >> 2] | 0) + i4; i5 = 2; i6 = i7; } else i6 = i7; else { i6 = HEAP32[i9 >> 2] | 0; HEAP32[i13 >> 2] = i6; HEAP32[i14 >> 2] = i6; i4 = i4 - i3 | 0; i5 = i5 + -1 | 0; i6 = i7 + 8 | 0; i3 = HEAP32[i7 + 12 >> 2] | 0; } HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + i4; HEAP32[i6 + 4 >> 2] = i3 - i4; i7 = i6; } if ((i2 | 0) == 6) { i11 = HEAP32[i9 >> 2] | 0; HEAP32[i12 + 16 >> 2] = i11 + (HEAP32[i12 + 48 >> 2] | 0); i12 = i11; HEAP32[i13 >> 2] = i12; HEAP32[i14 >> 2] = i12; } else if ((i2 | 0) == 8) { HEAP32[i12 + 16 >> 2] = 0; HEAP32[i13 >> 2] = 0; HEAP32[i14 >> 2] = 0; HEAP32[i12 >> 2] = HEAP32[i12 >> 2] | 32; if ((i5 | 0) == 2) i1 = 0; else i1 = i1 - (HEAP32[i7 + 4 >> 2] | 0) | 0; } STACKTOP = i15; return i1 | 0; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE8__rehashEj(i11, i10) { i11 = i11 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i2 = i11 + 4 | 0; L1 : do if (i10) { if (i10 >>> 0 > 1073741823) { i11 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i11); ___cxa_throw(i11 | 0, 2024, 148); } i9 = __Znwj(i10 << 2) | 0; i1 = HEAP32[i11 >> 2] | 0; HEAP32[i11 >> 2] = i9; if (i1 | 0) __ZdlPv(i1); HEAP32[i2 >> 2] = i10; i1 = 0; while (1) { if ((i1 | 0) == (i10 | 0)) break; HEAP32[(HEAP32[i11 >> 2] | 0) + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i3 = i11 + 8 | 0; i1 = HEAP32[i3 >> 2] | 0; if (i1 | 0) { i2 = HEAP32[i1 + 4 >> 2] | 0; i8 = i10 + -1 | 0; i9 = (i8 & i10 | 0) == 0; if (i9) i2 = i2 & i8; else i2 = (i2 >>> 0) % (i10 >>> 0) | 0; HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] = i3; while (1) { i7 = i1; L24 : while (1) while (1) { i1 = HEAP32[i7 >> 2] | 0; if (!i1) break L1; i3 = HEAP32[i1 + 4 >> 2] | 0; if (i9) i6 = i3 & i8; else i6 = (i3 >>> 0) % (i10 >>> 0) | 0; if ((i6 | 0) == (i2 | 0)) { i7 = i1; continue L24; } i3 = (HEAP32[i11 >> 2] | 0) + (i6 << 2) | 0; if (!(HEAP32[i3 >> 2] | 0)) break L24; i4 = i1 + 8 | 0; i3 = i1; while (1) { i5 = HEAP32[i3 >> 2] | 0; if (!i5) break; if ((HEAP32[i4 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) i3 = i5; else break; } HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2]; HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2] = i1; } HEAP32[i3 >> 2] = i7; i2 = i6; } } } else { i1 = HEAP32[i11 >> 2] | 0; HEAP32[i11 >> 2] = 0; if (i1 | 0) __ZdlPv(i1); HEAP32[i2 >> 2] = 0; } while (0); return; } function __ZN4wasm17WasmBinaryBuilder9visitLoopEPNS_4LoopE(i5, i7) { i5 = i5 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i8; if (HEAP8[i5 + 12 >> 0] | 0) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20106) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; } i3 = __ZN4wasm17WasmBinaryBuilder12getNextLabelEv(i5) | 0; HEAP32[i7 + 8 >> 2] = i3; i3 = __ZN4wasm17WasmBinaryBuilder12getNextLabelEv(i5) | 0; HEAP32[i7 + 12 >> 2] = i3; i3 = i5 + 84 | 0; i1 = i7 + 8 | 0; i6 = i5 + 88 | 0; i2 = HEAP32[i6 >> 2] | 0; i4 = i5 + 92 | 0; if ((i2 | 0) == (HEAP32[i4 >> 2] | 0)) { __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i3, i1); i2 = HEAP32[i6 >> 2] | 0; } else { HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; i2 = (HEAP32[i6 >> 2] | 0) + 4 | 0; HEAP32[i6 >> 2] = i2; } i1 = i7 + 12 | 0; if ((i2 | 0) == (HEAP32[i4 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i3, i1); else { HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; } i2 = __ZN4wasm17WasmBinaryBuilder13getMaybeBlockEv(i5) | 0; HEAP32[i7 + 16 >> 2] = i2; i2 = HEAP32[i6 >> 2] | 0; i1 = 0; i3 = i2; while (1) { if ((i1 | 0) == -1) { i1 = 0; break; } i5 = i1 + -1 | 0; i3 = i2 + (i5 << 2) | 0; HEAP32[i6 >> 2] = i3; i1 = i5; } while (1) { if ((i1 | 0) == -1) break; i5 = i1 + -1 | 0; HEAP32[i6 >> 2] = i3 + (i5 << 2); i1 = i5; } __ZN4wasm4Loop8finalizeEv(i7); STACKTOP = i8; return; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEESN_RKT_(i1, i8, i7) { i1 = i1 | 0; i8 = i8 | 0; i7 = i7 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { i5 = i7 + 11 | 0; i6 = i7 + 4 | 0; while (1) { i4 = i1 + 16 | 0; i11 = HEAP8[i5 >> 0] | 0; i12 = i11 << 24 >> 24 < 0; i11 = i12 ? HEAP32[i6 >> 2] | 0 : i11 & 255; i2 = i4 + 11 | 0; i10 = HEAP8[i2 >> 0] | 0; i9 = i10 << 24 >> 24 < 0; i3 = i1 + 20 | 0; i10 = i9 ? HEAP32[i3 >> 2] | 0 : i10 & 255; i9 = __ZNSt3__211char_traitsIcE7compareEPKcS3_j(i12 ? HEAP32[i7 >> 2] | 0 : i7, i9 ? HEAP32[i4 >> 2] | 0 : i4, i10 >>> 0 < i11 >>> 0 ? i10 : i11) | 0; if ((((i9 | 0) == 0 ? (i11 >>> 0 < i10 >>> 0 ? -2147483648 : 0) : i9) | 0) < 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { i10 = HEAP8[i2 >> 0] | 0; i9 = i10 << 24 >> 24 < 0; i10 = i9 ? HEAP32[i3 >> 2] | 0 : i10 & 255; i11 = HEAP8[i5 >> 0] | 0; i12 = i11 << 24 >> 24 < 0; i11 = i12 ? HEAP32[i6 >> 2] | 0 : i11 & 255; i12 = __ZNSt3__211char_traitsIcE7compareEPKcS3_j(i9 ? HEAP32[i4 >> 2] | 0 : i4, i12 ? HEAP32[i7 >> 2] | 0 : i7, i11 >>> 0 < i10 >>> 0 ? i11 : i10) | 0; if ((((i12 | 0) == 0 ? (i10 >>> 0 < i11 >>> 0 ? -2147483648 : 0) : i12) | 0) >= 0) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i8 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i8 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i8 >> 2] = i1; i1 = i8; break; } } else { HEAP32[i8 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZN4wasm14ModuleInstanceC2ERNS_6ModuleEPNS0_17ExternalInterfaceE(i12, i3, i7) { i12 = i12 | 0; i3 = i3 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i11 = i16 + 16 | 0; i8 = i16 + 56 | 0; i13 = i16 + 44 | 0; i14 = i16 + 40 | 0; i15 = i16; HEAP32[i12 >> 2] = i3; i9 = i12 + 4 | 0; HEAP32[i9 >> 2] = 0; i10 = i12 + 8 | 0; HEAP32[i10 >> 2] = 0; HEAP32[i12 + 12 >> 2] = 0; i4 = i12 + 20 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; HEAP32[i4 + 12 >> 2] = 0; HEAP32[i12 + 36 >> 2] = i7; HEAP32[i12 + 32 >> 2] = HEAP32[i3 + 72 >> 2]; i4 = i3 + 48 | 0; i5 = i3 + 52 | 0; i6 = i12 + 12 | 0; i2 = 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if (i2 >>> 0 >= (HEAP32[i5 >> 2] | 0) - i1 >> 2 >>> 0) break; HEAP32[i8 >> 2] = 2528; __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i11, i8, HEAP32[(HEAP32[i1 + (i2 << 2) >> 2] | 0) + 8 >> 2] | 0); i1 = HEAP32[i10 >> 2] | 0; if (i1 >>> 0 < (HEAP32[i6 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i11 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i11 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i11 + 12 >> 2]; HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + 16; } else __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i9, i11); i2 = i2 + 1 | 0; } FUNCTION_TABLE_vii[HEAP32[HEAP32[i7 >> 2] >> 2] & 255](i7, i3); i1 = HEAP32[i3 + 96 >> 2] | 0; if (i1 | 0) { HEAP32[i13 >> 2] = 0; HEAP32[i13 + 4 >> 2] = 0; HEAP32[i13 + 8 >> 2] = 0; HEAP32[i14 >> 2] = i1; HEAP32[i11 >> 2] = HEAP32[i14 >> 2]; __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i15, i12, i11, i13); __ZNSt3__213__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i13); } STACKTOP = i16; return; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11visitSwitchEPNS_6SwitchE(i10, i2, i6) { i10 = i10 | 0; i2 = i2 | 0; i6 = i6 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i15 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i15; HEAP32[i10 >> 2] = 0; i12 = i10 + 8 | 0; i14 = i12; HEAP32[i14 >> 2] = 0; HEAP32[i14 + 4 >> 2] = 0; i14 = i10 + 16 | 0; HEAP32[i14 >> 2] = 0; i3 = HEAP32[i6 + 32 >> 2] | 0; if (i3) { __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i4, i2, i3); HEAP32[i10 >> 2] = HEAP32[i4 >> 2]; HEAP32[i10 + 4 >> 2] = HEAP32[i4 + 4 >> 2]; HEAP32[i10 + 8 >> 2] = HEAP32[i4 + 8 >> 2]; HEAP32[i10 + 12 >> 2] = HEAP32[i4 + 12 >> 2]; HEAP32[i10 + 16 >> 2] = HEAP32[i4 + 16 >> 2]; if (!(HEAP32[i14 >> 2] | 0)) { i13 = i12; i7 = i10; i1 = i2; i8 = HEAP32[i10 >> 2] | 0; i9 = HEAP32[i10 + 4 >> 2] | 0; i11 = HEAP32[i13 >> 2] | 0; i13 = HEAP32[i13 + 4 >> 2] | 0; i5 = 5; } } else { i7 = i10; i1 = i2; i8 = 0; i9 = 0; i11 = 0; i13 = 0; i5 = 5; } if ((i5 | 0) == 5 ? (__ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i4, i1, HEAP32[i6 + 28 >> 2] | 0), HEAP32[i7 >> 2] = HEAP32[i4 >> 2], HEAP32[i7 + 4 >> 2] = HEAP32[i4 + 4 >> 2], HEAP32[i7 + 8 >> 2] = HEAP32[i4 + 8 >> 2], HEAP32[i7 + 12 >> 2] = HEAP32[i4 + 12 >> 2], HEAP32[i7 + 16 >> 2] = HEAP32[i4 + 16 >> 2], (HEAP32[i14 >> 2] | 0) == 0) : 0) { i2 = __ZN4wasm7Literal10getIntegerEv(i10) | 0; i5 = tempRet0; i1 = HEAP32[i6 + 24 >> 2] | 0; if ((i5 | 0) > -1 | (i5 | 0) == -1 & i2 >>> 0 > 4294967295 ? i2 >>> 0 < (HEAP32[i6 + 16 >> 2] | 0) >>> 0 : 0) { i1 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i6 + 8 | 0, i2) | 0; i1 = HEAP32[i1 >> 2] | 0; } HEAP32[i14 >> 2] = i1; HEAP32[i10 >> 2] = i8; HEAP32[i7 + 4 >> 2] = i9; i14 = i12; HEAP32[i14 >> 2] = i11; HEAP32[i14 + 4 >> 2] = i13; } STACKTOP = i15; return; } function __ZZN4wasm10PassRunner3runEvENK3__0clEv(i7) { i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i8 = i13 + 32 | 0; i9 = i13 + 28 | 0; i10 = i13 + 24 | 0; i11 = i13; i12 = HEAP32[i7 + 4 >> 2] | 0; i1 = HEAP32[i7 >> 2] | 0; i3 = HEAP32[i1 + 4 >> 2] | 0; if ((i3 | 0) != (HEAP32[i1 >> 2] | 0)) { i2 = __ZN4wasm10ThreadPool4sizeEv(__ZN4wasm10ThreadPool3getEv() | 0) | 0; HEAP32[i8 >> 2] = 0; i3 = i8 + 4 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; HEAP32[i9 >> 2] = 0; i4 = HEAP32[i12 >> 2] | 0; HEAP32[i10 >> 2] = (HEAP32[i4 + 40 >> 2] | 0) - (HEAP32[i4 + 36 >> 2] | 0) >> 2; i4 = i11 + 16 | 0; i5 = i8 + 8 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= i2 >>> 0) break; i14 = HEAP32[i7 >> 2] | 0; i6 = __Znwj(20) | 0; HEAP32[i6 >> 2] = 3016; HEAP32[i6 + 4 >> 2] = i9; HEAP32[i6 + 8 >> 2] = i10; HEAP32[i6 + 12 >> 2] = i12; HEAP32[i6 + 16 >> 2] = i14; HEAP32[i4 >> 2] = i6; i6 = HEAP32[i3 >> 2] | 0; if (i6 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) { __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEC2EOS4_(i6, i11); HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 24; } else __ZNSt3__26vectorINS_8functionIFN4wasm15ThreadWorkStateEvEEENS_9allocatorIS5_EEE21__push_back_slow_pathIS5_EEvOT_(i8, i11); __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEED2Ev(i11); i1 = i1 + 1 | 0; } __ZN4wasm10ThreadPool4workERNSt3__26vectorINS1_8functionIFNS_15ThreadWorkStateEvEEENS1_9allocatorIS6_EEEE(__ZN4wasm10ThreadPool3getEv() | 0, i8); __ZNSt3__213__vector_baseINS_8functionIFN4wasm15ThreadWorkStateEvEEENS_9allocatorIS5_EEED2Ev(i8); i1 = HEAP32[i7 >> 2] | 0; i3 = HEAP32[i1 + 4 >> 2] | 0; } i4 = HEAP32[i1 >> 2] | 0; i2 = i1 + 4 | 0; i1 = i3; while (1) { if ((i1 | 0) == (i4 | 0)) break; i14 = i1 + -4 | 0; HEAP32[i2 >> 2] = i14; i1 = i14; } STACKTOP = i13; return; } function __ZN4wasm16PrintSExpression10visitStoreEPNS_5StoreE(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i3 >> 2] | 0, 40) | 0; i5 = __Z12prepareColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(HEAP32[i3 >> 2] | 0) | 0; i6 = i4 + 4 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[i6 >> 2] | 0) | 0) | 0, 33002) | 0; i5 = i4 + 8 | 0; i1 = HEAP8[i5 >> 0] | 0; if (!((i1 & 255) >= 4 ? !((i1 & 255) < 8 & (HEAP32[i6 >> 2] | 0) == 2) : 0)) i2 = 3; L3 : do if ((i2 | 0) == 3) switch (i1 << 24 >> 24) { case 1: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i3 >> 2] | 0, 56) | 0; break L3; } case 2: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i3 >> 2] | 0, 33009) | 0; break L3; } case 4: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i3 >> 2] | 0, 33012) | 0; break L3; } default: _abort(); } while (0); i1 = i4 + 12 | 0; if (HEAP32[i1 >> 2] | 0) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i3 >> 2] | 0, 33015) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i6, HEAP32[i1 >> 2] | 0) | 0; } i1 = i4 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) != (HEAPU8[i5 >> 0] | 0 | 0)) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i3 >> 2] | 0, 33024) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i6, HEAP32[i1 >> 2] | 0) | 0; } __ZN4wasm16PrintSExpression9incIndentEv(i3); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i3, HEAP32[i4 + 20 >> 2] | 0); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i3, HEAP32[i4 + 24 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i3); return; } function __ZNKSt3__220__time_get_c_storageIcE7__weeksEv(i1) { i1 = i1 | 0; var i2 = 0; if ((HEAP8[44376] | 0) == 0 ? ___cxa_guard_acquire(44376) | 0 : 0) { if ((HEAP8[44384] | 0) == 0 ? ___cxa_guard_acquire(44384) | 0 : 0) { i2 = 48180; do { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = i2 + 12 | 0; } while ((i2 | 0) != 48348); ___cxa_atexit(170, 0, ___dso_handle | 0) | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48180, 39468) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48192, 39475) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48204, 39482) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48216, 39490) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48228, 39500) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48240, 39509) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48252, 39516) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48264, 39525) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48276, 39529) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48288, 39533) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48300, 39537) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48312, 39541) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48324, 39545) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(48336, 39549) | 0; HEAP32[12087] = 48180; } return HEAP32[12087] | 0; } function __ZN4wasm16PrintSExpression9visitLoadEPNS_4LoadE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i2 >> 2] | 0, 40) | 0; i4 = __Z12prepareColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(HEAP32[i2 >> 2] | 0) | 0; i5 = i3 + 4 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[i5 >> 2] | 0) | 0) | 0, 33032) | 0; i4 = i3 + 8 | 0; i1 = HEAP8[i4 >> 0] | 0; if (!((i1 & 255) >= 4 ? !((i1 & 255) < 8 & (HEAP32[i5 >> 2] | 0) == 2) : 0)) { switch (i1 << 24 >> 24) { case 1: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i2 >> 2] | 0, 56) | 0; break; } case 2: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i2 >> 2] | 0, 33009) | 0; break; } case 4: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i2 >> 2] | 0, 33012) | 0; break; } default: _abort(); } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i2 >> 2] | 0, HEAP8[i3 + 9 >> 0] | 0 ? 33038 : 33041) | 0; } i1 = i3 + 12 | 0; if (HEAP32[i1 >> 2] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i2 >> 2] | 0, 33015) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i5, HEAP32[i1 >> 2] | 0) | 0; } i1 = i3 + 16 | 0; if ((HEAP32[i1 >> 2] | 0) != (HEAPU8[i4 >> 0] | 0)) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i2 >> 2] | 0, 33024) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i5, HEAP32[i1 >> 2] | 0) | 0; } __ZN4wasm16PrintSExpression9incIndentEv(i2); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i2, HEAP32[i3 + 20 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i2); return; } function __ZN4wasm12PassRegistry12registerPassEPKcS2_NSt3__28functionIFPNS_4PassEvEEE(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i5 = i9 + 76 | 0; i6 = i9 + 24 | 0; i7 = i9 + 64 | 0; i8 = i9; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, i2, _strlen(i2) | 0); if ((__ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE4findIS7_EENS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEERKT_(i1, i5) | 0) == (i1 + 4 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, i2, _strlen(i2) | 0); i2 = __ZNSt3__23mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixEOS6_(i1, i5) | 0; HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, i3, _strlen(i3) | 0); __ZNSt3__28functionIFPN4wasm4PassEvEEC2ERKS5_(i8, i4); __ZN4wasm12PassRegistry8PassInfoC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_8functionIFPNS_4PassEvEEE(i6, i7, i8); __ZN4wasm12PassRegistry8PassInfoaSEOS1_(i2, i6) | 0; __ZN4wasm12PassRegistry8PassInfoD2Ev(i6); __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i8); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); STACKTOP = i9; return; } else ___assert_fail(30979, 31019, 37, 31039); } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11visitSelectEPNS_6SelectE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i4 = i7 + 48 | 0; i5 = i7 + 24 | 0; i6 = i7; __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i4, i2, HEAP32[i3 + 8 >> 2] | 0); if (!(HEAP32[i4 + 16 >> 2] | 0)) { __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i5, i2, HEAP32[i3 + 12 >> 2] | 0); if (!(HEAP32[i5 + 16 >> 2] | 0)) { __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i6, i2, HEAP32[i3 + 16 >> 2] | 0); if (!(HEAP32[i6 + 16 >> 2] | 0)) { i6 = (__ZNK4wasm7Literal6geti32Ev(i6) | 0) != 0; i6 = i6 ? i4 : i5; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = HEAP32[i6 + 16 >> 2]; HEAP32[i1 + 20 >> 2] = HEAP32[i6 + 20 >> 2]; } else { HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = HEAP32[i6 + 16 >> 2]; HEAP32[i1 + 20 >> 2] = HEAP32[i6 + 20 >> 2]; } } else { HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = HEAP32[i5 + 16 >> 2]; HEAP32[i1 + 20 >> 2] = HEAP32[i5 + 20 >> 2]; } } else { HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i4 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i4 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i4 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = HEAP32[i4 + 16 >> 2]; HEAP32[i1 + 20 >> 2] = HEAP32[i4 + 20 >> 2]; } STACKTOP = i7; return; } function __ZNKSt3__220__time_get_c_storageIwE7__weeksEv(i1) { i1 = i1 | 0; var i2 = 0; if ((HEAP8[44456] | 0) == 0 ? ___cxa_guard_acquire(44456) | 0 : 0) { if ((HEAP8[44464] | 0) == 0 ? ___cxa_guard_acquire(44464) | 0 : 0) { i2 = 48992; do { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = i2 + 12 | 0; } while ((i2 | 0) != 49160); ___cxa_atexit(174, 0, ___dso_handle | 0) | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48992, 9172) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49004, 9200) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49016, 9228) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49028, 9260) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49040, 9300) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49052, 9336) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49064, 9364) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49076, 9400) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49088, 9416) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49100, 9432) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49112, 9448) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49124, 9464) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49136, 9480) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(49148, 9496) | 0; HEAP32[12290] = 48992; } return HEAP32[12290] | 0; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE10visitBreakEPNS_5BreakE(i12, i11, i10) { i12 = i12 | 0; i11 = i11 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i13; i8 = i10 + 8 | 0; i1 = HEAP32[i10 + 12 >> 2] | 0; if (i1) { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i11, i1); i2 = HEAP32[i3 >> 2] | 0; i4 = HEAP32[i3 + 4 >> 2] | 0; i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i6 = HEAP32[i6 + 4 >> 2] | 0; i1 = HEAP32[i3 + 16 >> 2] | 0; if (!i1) { i7 = i2; i3 = i6; i9 = 4; } else { HEAP32[i12 >> 2] = i2; HEAP32[i12 + 4 >> 2] = i4; i11 = i12 + 8 | 0; HEAP32[i11 >> 2] = i5; HEAP32[i11 + 4 >> 2] = i6; HEAP32[i12 + 16 >> 2] = i1; } } else { i7 = 0; i4 = 0; i5 = 0; i3 = 0; i9 = 4; } do if ((i9 | 0) == 4) { i2 = HEAP32[i8 >> 2] | 0; i1 = HEAP32[i10 + 16 >> 2] | 0; if (i1 | 0) { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i12, i11, i1); i1 = i12 + 16 | 0; if (HEAP32[i1 >> 2] | 0) break; i11 = __ZN4wasm7Literal10getIntegerEv(i12) | 0; if ((i11 | 0) == 0 & (tempRet0 | 0) == 0) { HEAP32[i12 >> 2] = 0; i12 = i12 + 8 | 0; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; HEAP32[i1 >> 2] = 0; break; } } HEAP32[i12 >> 2] = i7; HEAP32[i12 + 4 >> 2] = i4; i11 = i12 + 8 | 0; HEAP32[i11 >> 2] = i5; HEAP32[i11 + 4 >> 2] = i3; HEAP32[i12 + 16 >> 2] = i2; } while (0); STACKTOP = i13; return; } function __ZN4wasm7Literal11printDoubleERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEd(i5, d3) { i5 = i5 | 0; d3 = +d3; var i1 = 0, i2 = 0, i4 = 0, i6 = 0; HEAPF64[tempDoublePtr >> 3] = d3; i1 = HEAP32[tempDoublePtr >> 2] | 0; i2 = HEAP32[tempDoublePtr + 4 >> 2] | 0; i4 = (i2 | 0) < 0; do if (d3 == 0.0 & i4) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 26274) | 0; else { i6 = i2 & 2147483647; if (i6 >>> 0 > 2146435072 | (i6 | 0) == 2146435072 & i1 >>> 0 > 0) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i4 ? 43728 : 53494) | 0, 36167) | 0; i1 = __ZN4wasm7Literal10NaNPayloadEd(d3) | 0; i2 = tempRet0; if ((i1 | 0) == 0 & (i2 | 0) == 0) break; i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 26259) | 0; i5 = i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i5 >> 2] = HEAP32[i5 >> 2] & -75 | 8; i6 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEy(i6, i1, i2) | 0; i6 = i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i6 >> 2] = HEAP32[i6 >> 2] & -75 | 2; break; } i6 = i2 & 2146435072; if (!(i6 >>> 0 < 2146435072 | (i6 | 0) == 2146435072 & 0 < 0)) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i4 ? 35201 : 35634) | 0; break; } i1 = __ZN6cashew9JSPrinter11numToStringEdb(d3, 1) | 0; switch (HEAP8[i1 >> 0] | 0) { case 46: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i5, 48) | 0; break; } case 45: { i2 = i1 + 1 | 0; if ((HEAP8[i2 >> 0] | 0) == 46) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, 26274) | 0; i1 = i2; } break; } default: {} } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i5, i1) | 0; } while (0); return; } function __ZNSt3__212__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE8__rehashEj(i11, i10) { i11 = i11 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i2 = i11 + 4 | 0; L1 : do if (i10) { if (i10 >>> 0 > 1073741823) { i11 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i11); ___cxa_throw(i11 | 0, 2024, 148); } i9 = __Znwj(i10 << 2) | 0; i1 = HEAP32[i11 >> 2] | 0; HEAP32[i11 >> 2] = i9; if (i1 | 0) __ZdlPv(i1); HEAP32[i2 >> 2] = i10; i1 = 0; while (1) { if ((i1 | 0) == (i10 | 0)) break; HEAP32[(HEAP32[i11 >> 2] | 0) + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i3 = i11 + 8 | 0; i1 = HEAP32[i3 >> 2] | 0; if (i1 | 0) { i2 = HEAP32[i1 + 4 >> 2] | 0; i8 = i10 + -1 | 0; i9 = (i8 & i10 | 0) == 0; if (i9) i2 = i2 & i8; else i2 = (i2 >>> 0) % (i10 >>> 0) | 0; HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] = i3; while (1) { i7 = i1; L24 : while (1) while (1) { i1 = HEAP32[i7 >> 2] | 0; if (!i1) break L1; i3 = HEAP32[i1 + 4 >> 2] | 0; if (i9) i6 = i3 & i8; else i6 = (i3 >>> 0) % (i10 >>> 0) | 0; if ((i6 | 0) == (i2 | 0)) { i7 = i1; continue L24; } i3 = (HEAP32[i11 >> 2] | 0) + (i6 << 2) | 0; if (!(HEAP32[i3 >> 2] | 0)) break L24; i4 = i1 + 8 | 0; i3 = i1; while (1) { i5 = HEAP32[i3 >> 2] | 0; if (!i5) break; if (!(_strcmp(HEAP32[i4 >> 2] | 0, HEAP32[i5 + 8 >> 2] | 0) | 0)) i3 = i5; else break; } HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2]; HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2] = i1; } HEAP32[i3 >> 2] = i7; i2 = i6; } } } else { i1 = HEAP32[i11 >> 2] | 0; HEAP32[i11 >> 2] = 0; if (i1 | 0) __ZdlPv(i1); HEAP32[i2 >> 2] = 0; } while (0); return; } function __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE8__rehashEj(i11, i10) { i11 = i11 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i2 = i11 + 4 | 0; L1 : do if (i10) { if (i10 >>> 0 > 1073741823) { i11 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i11); ___cxa_throw(i11 | 0, 2024, 148); } i9 = __Znwj(i10 << 2) | 0; i1 = HEAP32[i11 >> 2] | 0; HEAP32[i11 >> 2] = i9; if (i1 | 0) __ZdlPv(i1); HEAP32[i2 >> 2] = i10; i1 = 0; while (1) { if ((i1 | 0) == (i10 | 0)) break; HEAP32[(HEAP32[i11 >> 2] | 0) + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i3 = i11 + 8 | 0; i1 = HEAP32[i3 >> 2] | 0; if (i1 | 0) { i2 = HEAP32[i1 + 4 >> 2] | 0; i8 = i10 + -1 | 0; i9 = (i8 & i10 | 0) == 0; if (i9) i2 = i2 & i8; else i2 = (i2 >>> 0) % (i10 >>> 0) | 0; HEAP32[(HEAP32[i11 >> 2] | 0) + (i2 << 2) >> 2] = i3; while (1) { i7 = i1; L24 : while (1) while (1) { i1 = HEAP32[i7 >> 2] | 0; if (!i1) break L1; i3 = HEAP32[i1 + 4 >> 2] | 0; if (i9) i6 = i3 & i8; else i6 = (i3 >>> 0) % (i10 >>> 0) | 0; if ((i6 | 0) == (i2 | 0)) { i7 = i1; continue L24; } i3 = (HEAP32[i11 >> 2] | 0) + (i6 << 2) | 0; if (!(HEAP32[i3 >> 2] | 0)) break L24; i4 = i1 + 8 | 0; i3 = i1; while (1) { i5 = HEAP32[i3 >> 2] | 0; if (!i5) break; if ((HEAP32[i4 >> 2] | 0) == (HEAP32[i5 + 8 >> 2] | 0)) i3 = i5; else break; } HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2]; HEAP32[HEAP32[(HEAP32[i11 >> 2] | 0) + (i6 << 2) >> 2] >> 2] = i1; } HEAP32[i3 >> 2] = i7; i2 = i6; } } } else { i1 = HEAP32[i11 >> 2] | 0; HEAP32[i11 >> 2] = 0; if (i1 | 0) __ZdlPv(i1); HEAP32[i2 >> 2] = 0; } while (0); return; } function __ZN4wasm17SExpressionParser14skipWhitespaceEv(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0; i5 = i4 + 4 | 0; i6 = i4 + 8 | 0; i1 = HEAP32[i4 >> 2] | 0; L1 : while (1) { while (1) { i2 = HEAP8[i1 >> 0] | 0; if (!(_isspace(i2 << 24 >> 24) | 0)) break; if (i2 << 24 >> 24 == 10) { HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 1; i1 = i1 + 1 | 0; HEAP32[i6 >> 2] = i1; } else i1 = i1 + 1 | 0; HEAP32[i4 >> 2] = i1; } switch (i2 << 24 >> 24) { case 59: { if ((HEAP8[i1 + 1 >> 0] | 0) == 59) i2 = 59; else break L1; L13 : while (1) { switch (i2 << 24 >> 24) { case 10: case 0: break L13; default: {} } i2 = i1 + 1 | 0; HEAP32[i4 >> 2] = i2; i1 = i2; i2 = HEAP8[i2 >> 0] | 0; } HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 1; HEAP32[i6 >> 2] = i1; continue L1; } case 40: break; default: break L1; } if ((HEAP8[i1 + 1 >> 0] | 0) != 59) break; i1 = i1 + 2 | 0; HEAP32[i4 >> 2] = i1; i2 = 1; while (1) { L21 : while (1) { switch (HEAP8[i1 >> 0] | 0) { case 0: break L1; case 40: { if ((HEAP8[i1 + 1 >> 0] | 0) == 59) { i7 = 18; break L21; } else i7 = 19; break; } case 59: { i3 = i1 + 1 | 0; if ((HEAP8[i3 >> 0] | 0) == 41) { i7 = 21; break L21; } else i1 = i3; break; } default: i7 = 19; } if ((i7 | 0) == 19) { i7 = 0; i1 = i1 + 1 | 0; } HEAP32[i4 >> 2] = i1; } if ((i7 | 0) == 18) { i7 = 0; i1 = i1 + 2 | 0; HEAP32[i4 >> 2] = i1; i2 = i2 + 1 | 0; continue; } else if ((i7 | 0) == 21) { i7 = 0; i1 = i1 + 2 | 0; HEAP32[i4 >> 2] = i1; i2 = i2 + -1 | 0; if (!i2) continue L1; else continue; } } } return; } function __ZNK4wasm7Literal3divERKS0_(i6, i1, i4) { i6 = i6 | 0; i1 = i1 | 0; i4 = i4 | 0; var d2 = 0.0, d3 = 0.0, d5 = 0.0; L1 : do if ((HEAP32[i1 >> 2] | 0) == 3) { d5 = +__ZNK4wasm7Literal6getf32Ev(i1); d3 = +__ZNK4wasm7Literal6getf32Ev(i4); i4 = ((HEAPF32[tempDoublePtr >> 2] = d5, HEAP32[tempDoublePtr >> 2] | 0) | 0) < 0; d2 = i4 ^ ((HEAPF32[tempDoublePtr >> 2] = d3, HEAP32[tempDoublePtr >> 2] | 0) | 0) < 0 ? -0.0 : 0.0; if ((___fpclassifyf(d3) | 0) != 2) { HEAP32[i6 >> 2] = 3; HEAPF32[i6 + 8 >> 2] = d5 / d3; break; } switch (___fpclassifyf(d5) | 0) { case 0: { d5 = +__ZN4wasm7Literal11setQuietNaNEf(d5); HEAP32[i6 >> 2] = 3; HEAPF32[i6 + 8 >> 2] = d5; break L1; } case 2: { d5 = +_copysignf(nan, d2); HEAP32[i6 >> 2] = 3; HEAPF32[i6 + 8 >> 2] = d5; break L1; } case 1: case 3: case 4: { d5 = +_copysignf(inf, d2); HEAP32[i6 >> 2] = 3; HEAPF32[i6 + 8 >> 2] = d5; break L1; } default: {} } } else { d5 = +__ZNK4wasm7Literal6getf64Ev(i1); d2 = +__ZNK4wasm7Literal6getf64Ev(i4); HEAPF64[tempDoublePtr >> 3] = d5; i4 = (HEAP32[tempDoublePtr + 4 >> 2] | 0) < 0; HEAPF64[tempDoublePtr >> 3] = d2; d3 = i4 ^ (HEAP32[tempDoublePtr + 4 >> 2] | 0) < 0 ? -0.0 : 0.0; if ((___fpclassify(d2) | 0) != 2) { HEAP32[i6 >> 2] = 4; HEAPF64[i6 + 8 >> 3] = d5 / d2; break; } switch (___fpclassify(d5) | 0) { case 0: { d5 = +__ZN4wasm7Literal11setQuietNaNEd(d5); HEAP32[i6 >> 2] = 4; HEAPF64[i6 + 8 >> 3] = d5; break L1; } case 2: { d5 = +_copysign(nan, d3); HEAP32[i6 >> 2] = 4; HEAPF64[i6 + 8 >> 3] = d5; break L1; } case 1: case 3: case 4: { d5 = +_copysign(inf, d3); HEAP32[i6 >> 2] = 4; HEAPF64[i6 + 8 >> 3] = d5; break L1; } default: {} } } while (0); return; } function __ZZ11instantiateEN19JSExternalInterface10callImportEPN4wasm6ImportERNSt3__26vectorINS0_7LiteralENS3_9allocatorIS5_EEEE(i6, i2, i7, i4) { i6 = i6 | 0; i2 = i2 | 0; i7 = i7 | 0; i4 = i4 | 0; var d1 = 0.0, i3 = 0, i5 = 0; if (HEAP8[49408] | 0) { i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46604, 21871) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, HEAP32[i7 >> 2] | 0) | 0, 10) | 0; } _emscripten_asm_const_v(16); i3 = HEAP32[i4 + 4 >> 2] | 0; i2 = HEAP32[i4 >> 2] | 0; L4 : while (1) { if ((i2 | 0) == (i3 | 0)) break; switch (HEAP32[i2 >> 2] | 0) { case 1: { _emscripten_asm_const_ii(18, __ZNK4wasm7Literal6geti32Ev(i2) | 0) | 0; break; } case 3: { _emscripten_asm_const_id(18, +(+__ZNK4wasm7Literal6getf32Ev(i2))) | 0; break; } case 4: { _emscripten_asm_const_id(18, +(+__ZNK4wasm7Literal6getf64Ev(i2))) | 0; break; } default: { i5 = 10; break L4; } } i2 = i2 + 16 | 0; } if ((i5 | 0) == 10) _abort(); d1 = +_emscripten_asm_const_dii(17, HEAP32[i7 + 4 >> 2] | 0, HEAP32[i7 + 8 >> 2] | 0); if (HEAP8[49408] | 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEd(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46604, 22196) | 0, d1) | 0, 10) | 0; switch (HEAP32[(HEAP32[i7 + 12 >> 2] | 0) + 4 >> 2] | 0) { case 0: { HEAP32[i6 >> 2] = 1; HEAP32[i6 + 8 >> 2] = 0; break; } case 1: { HEAP32[i6 >> 2] = 1; HEAP32[i6 + 8 >> 2] = ~~d1; break; } case 3: { HEAP32[i6 >> 2] = 3; HEAPF32[i6 + 8 >> 2] = d1; break; } case 4: { HEAP32[i6 >> 2] = 4; HEAPF64[i6 + 8 >> 3] = d1; break; } default: _abort(); } return; } function __ZN4wasm16PrintSExpression9visitLoopEPNS_4LoopE(i6, i4) { i6 = i6 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i8 + 8 | 0; i1 = i8 + 4 | 0; i5 = i8; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i6 >> 2] | 0, 33144, 0) | 0; i2 = i4 + 8 | 0; do if (!(HEAP32[i2 >> 2] | 0)) { i1 = i4 + 12 | 0; if (HEAP32[i1 >> 2] | 0) i7 = 6; } else { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i6 >> 2] | 0, 32) | 0; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; HEAP32[i3 >> 2] = HEAP32[i1 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i9, i3) | 0; if (!(HEAP32[i4 + 12 >> 2] | 0)) ___assert_fail(33149, 33163, 156, 33184); else { i1 = i4 + 12 | 0; i7 = 6; break; } } while (0); if ((i7 | 0) == 6) { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i6 >> 2] | 0, 32) | 0; HEAP32[i5 >> 2] = HEAP32[i1 >> 2]; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i9, i3) | 0; } __ZN4wasm16PrintSExpression9incIndentEv(i6); i1 = HEAP32[i4 + 16 >> 2] | 0; i2 = (HEAP32[i1 >> 2] | 0) == 1 ? i1 : 0; L10 : do if ((HEAP8[i6 + 20 >> 0] | 0) == 0 & (i2 | 0) != 0 ? (HEAP32[i2 + 8 >> 2] | 0) == 0 : 0) { i3 = i2 + 12 | 0; i2 = HEAP32[i2 + 20 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L10; i9 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3, i1) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i6, HEAP32[i9 >> 2] | 0); i1 = i1 + 1 | 0; } } else i7 = 12; while (0); if ((i7 | 0) == 12) __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i6, i1); __ZN4wasm16PrintSExpression9decIndentEv(i6); STACKTOP = i8; return; } function __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (!i3) ___assert_fail(31628, 35330, 71, 31633); do switch (HEAP32[i3 >> 2] | 0) { case 1: { __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE10visitBlockEPNS_5BlockE(i1, i2, i3); break; } case 2: { __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE7visitIfEPNS_2IfE(i1, i2, i3); break; } case 22: { FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 31639); HEAP32[i1 >> 2] = 0; i3 = i1 + 8 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; break; } case 4: { __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE10visitBreakEPNS_5BreakE(i1, i2, i3); break; } case 5: { __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11visitSwitchEPNS_6SwitchE(i1, i2, i3); break; } case 21: { HEAP32[i1 >> 2] = 0; i3 = i1 + 8 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; break; } case 15: { i3 = i3 + 8 | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i3 + 12 >> 2]; HEAP32[i1 + 16 >> 2] = 0; break; } case 19: { __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11visitReturnEPNS_6ReturnE(i1, i2, i3); break; } case 18: { __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11visitSelectEPNS_6SelectE(i1, i2, i3); break; } case 17: { __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11visitBinaryEPNS_6BinaryE(i1, i2, i3); break; } case 16: { __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE10visitUnaryEPNS_5UnaryE(i1, i2, i3); break; } default: {} } while (0); return; } function __ZN4wasm17WasmBinaryBuilder7getInt8Ev(i3) { i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i8 + 12 | 0; i5 = i8; i7 = i3 + 16 | 0; i2 = HEAP32[i7 >> 2] | 0; i6 = i3 + 8 | 0; i1 = HEAP32[i6 >> 2] | 0; if (i2 >>> 0 >= ((HEAP32[i1 + 4 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) | 0) >>> 0) { i8 = ___cxa_allocate_exception(20) | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 18967, 23); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i8, i5); ___cxa_throw(i8 | 0, 8, 154); } if (HEAP8[i3 + 12 >> 0] | 0) { i2 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18991) | 0; i2 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(i2, HEAPU8[(HEAP32[HEAP32[i6 >> 2] >> 2] | 0) + (HEAP32[i7 >> 2] | 0) >> 0] | 0) | 0, 19001) | 0; i2 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i2, HEAP32[i7 >> 2] | 0) | 0, 42358) | 0; i1 = __ZNKSt3__28ios_base6getlocEv(i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i2, i1) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i2) | 0; i2 = HEAP32[i7 >> 2] | 0; i1 = HEAP32[i6 >> 2] | 0; } HEAP32[i7 >> 2] = i2 + 1; STACKTOP = i8; return HEAP8[(HEAP32[i1 >> 2] | 0) + i2 >> 0] | 0; } function __ZN4wasm17WasmBinaryBuilder9getS64LEBEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i3 = i6 + 32 | 0; i1 = i6; i4 = i6 + 8 | 0; i5 = i2 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } HEAP32[i4 >> 2] = 2412; HEAP32[i4 + 4 >> 2] = i2; HEAP32[i4 + 16 >> 2] = i4; __ZN4wasm3LEBIxaE4readENSt3__28functionIFavEEE(i1, i4); __ZNSt3__28functionIFavEED2Ev(i4); if (HEAP8[i5 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21043) | 0; i8 = i1; i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEx(i7, HEAP32[i8 >> 2] | 0, HEAP32[i8 + 4 >> 2] | 0) | 0, 18951) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; } i8 = i1; tempRet0 = HEAP32[i8 + 4 >> 2] | 0; STACKTOP = i6; return HEAP32[i8 >> 2] | 0; } function __GLOBAL__sub_I_wasm_cpp() { __ZN6cashew7IString3setEPKcb(45720, 35055, 0); __ZN6cashew7IString3setEPKcb(45724, 35060, 0); __ZN6cashew7IString3setEPKcb(45728, 35071, 0); __ZN6cashew7IString3setEPKcb(45732, 35088, 0); __ZN6cashew7IString3setEPKcb(45736, 35096, 0); __ZN6cashew7IString3setEPKcb(45740, 35049, 0); __ZN6cashew7IString3setEPKcb(45744, 35103, 0); __ZN6cashew7IString3setEPKcb(45748, 35108, 0); __ZN6cashew7IString3setEPKcb(45752, 35114, 0); __ZN6cashew7IString3setEPKcb(45756, 34986, 0); __ZN6cashew7IString3setEPKcb(45760, 35121, 0); __ZN6cashew7IString3setEPKcb(45764, 35019, 0); __ZN6cashew7IString3setEPKcb(45768, 34998, 0); __ZN6cashew7IString3setEPKcb(45772, 35038, 0); __ZN6cashew7IString3setEPKcb(45776, 35129, 0); __ZN6cashew7IString3setEPKcb(45780, 34993, 0); __ZN6cashew7IString3setEPKcb(45784, 35135, 0); __ZN6cashew7IString3setEPKcb(45788, 35140, 0); __ZN6cashew7IString3setEPKcb(45792, 35152, 0); __ZN6cashew7IString3setEPKcb(45796, 35166, 0); __ZN6cashew7IString3setEPKcb(45800, 35172, 0); __ZN6cashew7IString3setEPKcb(45804, 35178, 0); __ZN6cashew7IString3setEPKcb(45808, 35183, 0); __ZN6cashew7IString3setEPKcb(45812, 35188, 0); __ZN6cashew7IString3setEPKcb(45816, 35192, 0); __ZN6cashew7IString3setEPKcb(45820, 35201, 0); __ZN6cashew7IString3setEPKcb(45824, 35211, 0); __ZN6cashew7IString3setEPKcb(45828, 35216, 0); __ZN6cashew7IString3setEPKcb(45832, 35221, 0); __ZN6cashew7IString3setEPKcb(45836, 35224, 0); __ZN6cashew7IString3setEPKcb(45840, 35244, 0); __ZN6cashew7IString3setEPKcb(45844, 35258, 0); __ZN6cashew7IString3setEPKcb(45848, 35270, 0); __ZN6cashew7IString3setEPKcb(45852, 35285, 0); __ZN6cashew7IString3setEPKcb(45856, 35294, 0); __ZN6cashew7IString3setEPKcb(45860, 35300, 0); __ZN6cashew7IString3setEPKcb(45864, 35307, 0); return; } function __ZN4wasm34OptimizingIncrementalModuleBuilder10workerMainEPv(i3) { i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i16; i10 = i3 + 52 | 0; __ZNSt3__25mutex4lockEv(i10); i11 = i3 + 36 | 0; HEAP32[i11 >> 2] = (HEAP32[i11 >> 2] | 0) + 1; i12 = i3 + 40 | 0; HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 1; i13 = i3 + 80 | 0; __ZNSt3__218condition_variable10notify_allEv(i13); __ZNSt3__25mutex6unlockEv(i10); i14 = i3 + 4 | 0; i15 = i3 + 12 | 0; i5 = i3 + 8 | 0; i6 = i4 + 4 | 0; i7 = i3 + 128 | 0; i8 = i3 + 44 | 0; i9 = i3 + 48 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i14 >> 2] | 0) >>> 0) break; if ((HEAP32[(HEAP32[i15 >> 2] | 0) + (i1 << 2) >> 2] | 0) != (HEAP32[i5 >> 2] | 0)) { i17 = (HEAP32[i15 >> 2] | 0) + (i1 << 2) | 0; i2 = HEAP32[i17 >> 2] | 0; HEAP32[i17 >> 2] = 0; if (i2) { HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) - 1; __ZN4wasm34OptimizingIncrementalModuleBuilder16optimizeFunctionEPNS_8FunctionE(i3, i2); HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 1; } } else { HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) - 1; HEAP32[i4 >> 2] = i10; HEAP8[i6 >> 0] = 1; __ZNSt3__25mutex4lockEv(i10); if (!(HEAP8[i7 >> 0] | 0)) __ZNSt3__218condition_variable4waitERNS_11unique_lockINS_5mutexEEE(i13, i4); if (HEAP8[i6 >> 0] | 0) __ZNSt3__25mutex6unlockEv(HEAP32[i4 >> 2] | 0); HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 1; i1 = i1 + -1 | 0; } i1 = i1 + 1 | 0; } __ZNSt3__25mutex4lockEv(i10); HEAP32[i11 >> 2] = (HEAP32[i11 >> 2] | 0) - 1; __ZNSt3__218condition_variable10notify_allEv(i13); __ZNSt3__25mutex6unlockEv(i10); STACKTOP = i16; return; } function __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEE4swapERS7_(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i9; i7 = i5 + 16 | 0; i2 = HEAP32[i7 >> 2] | 0; i8 = i2; if ((i2 | 0) == (i5 | 0) ? (i3 = i6 + 16 | 0, (HEAP32[i3 >> 2] | 0) == (i6 | 0)) : 0) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 255](i2, i1); i8 = HEAP32[i7 >> 2] | 0; FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8); HEAP32[i7 >> 2] = 0; i8 = HEAP32[i3 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i8 >> 2] | 0) + 12 >> 2] & 255](i8, i5); i8 = HEAP32[i3 >> 2] | 0; FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8); HEAP32[i3 >> 2] = 0; HEAP32[i7 >> 2] = i5; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 12 >> 2] & 255](i1, i6); FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 255](i1); HEAP32[i3 >> 2] = i6; } else i4 = 4; do if ((i4 | 0) == 4) { if ((i2 | 0) == (i5 | 0)) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 255](i2, i6); i8 = HEAP32[i7 >> 2] | 0; FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8); i8 = i6 + 16 | 0; HEAP32[i7 >> 2] = HEAP32[i8 >> 2]; HEAP32[i8 >> 2] = i6; break; } i1 = i6 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) == (i6 | 0)) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 255](i2, i5); i8 = HEAP32[i1 >> 2] | 0; FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8); HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; break; } else { HEAP32[i7 >> 2] = i2; HEAP32[i1 >> 2] = i8; break; } } while (0); STACKTOP = i9; return; } function __ZN4wasm10ThreadPool4workERNSt3__26vectorINS1_8functionIFNS_15ThreadWorkStateEvEEENS1_9allocatorIS6_EEEE(i8, i7) { i8 = i8 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i9 = i11 + 24 | 0; i5 = i11; i10 = i8 + 4 | 0; i6 = (HEAP32[i10 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) >> 2; i1 = HEAP32[i7 >> 2] | 0; i2 = (HEAP32[i7 + 4 >> 2] | 0) - i1 | 0; L1 : do if (i6) { if (((i2 | 0) / 24 | 0 | 0) != (i6 | 0)) ___assert_fail(34530, 34381, 149, 34525); i3 = i8 + 12 | 0; if (HEAP8[i3 >> 0] | 0) ___assert_fail(34554, 34381, 150, 34525); HEAP8[i3 >> 0] = 1; i1 = i8 + 16 | 0; HEAP32[i9 >> 2] = i1; i4 = i9 + 4 | 0; HEAP8[i4 >> 0] = 1; __ZNSt3__25mutex4lockEv(i1); __ZN4wasm10ThreadPool20resetThreadsAreReadyEv(i8); i1 = 0; while (1) { if (i1 >>> 0 >= i6 >>> 0) break; i2 = HEAP32[(HEAP32[i8 >> 2] | 0) + (i1 << 2) >> 2] | 0; __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEC2ERKS4_(i5, (HEAP32[i7 >> 2] | 0) + (i1 * 24 | 0) | 0); __ZN4wasm6Thread4workENSt3__28functionIFNS_15ThreadWorkStateEvEEE(i2, i5); __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEED2Ev(i5); i1 = i1 + 1 | 0; } i1 = i8 + 44 | 0; i2 = i8 + 92 | 0; while (1) { if ((HEAP32[i2 >> 2] | 0) == ((HEAP32[i10 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) >> 2 | 0)) break; __ZNSt3__218condition_variable4waitERNS_11unique_lockINS_5mutexEEE(i1, i9); } HEAP8[i3 >> 0] = 0; if (HEAP8[i4 >> 0] | 0) __ZNSt3__25mutex6unlockEv(HEAP32[i9 >> 2] | 0); } else { if (!i2) ___assert_fail(34504, 34381, 142, 34525); while (1) { if (__ZNKSt3__28functionIFN4wasm15ThreadWorkStateEvEEclEv(i1) | 0) break L1; i1 = HEAP32[i7 >> 2] | 0; } } while (0); STACKTOP = i11; return; } function __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEE4swapERS4_(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i9; i7 = i5 + 16 | 0; i2 = HEAP32[i7 >> 2] | 0; i8 = i2; if ((i2 | 0) == (i5 | 0) ? (i3 = i6 + 16 | 0, (HEAP32[i3 >> 2] | 0) == (i6 | 0)) : 0) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 255](i2, i1); i8 = HEAP32[i7 >> 2] | 0; FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8); HEAP32[i7 >> 2] = 0; i8 = HEAP32[i3 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i8 >> 2] | 0) + 12 >> 2] & 255](i8, i5); i8 = HEAP32[i3 >> 2] | 0; FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8); HEAP32[i3 >> 2] = 0; HEAP32[i7 >> 2] = i5; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 12 >> 2] & 255](i1, i6); FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 255](i1); HEAP32[i3 >> 2] = i6; } else i4 = 4; do if ((i4 | 0) == 4) { if ((i2 | 0) == (i5 | 0)) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 255](i2, i6); i8 = HEAP32[i7 >> 2] | 0; FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8); i8 = i6 + 16 | 0; HEAP32[i7 >> 2] = HEAP32[i8 >> 2]; HEAP32[i8 >> 2] = i6; break; } i1 = i6 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) == (i6 | 0)) { FUNCTION_TABLE_vii[HEAP32[(HEAP32[i2 >> 2] | 0) + 12 >> 2] & 255](i2, i5); i8 = HEAP32[i1 >> 2] | 0; FUNCTION_TABLE_vi[HEAP32[(HEAP32[i8 >> 2] | 0) + 16 >> 2] & 255](i8); HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; break; } else { HEAP32[i7 >> 2] = i2; HEAP32[i1 >> 2] = i8; break; } } while (0); STACKTOP = i9; return; } function __ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcb(i1, i9, i2, i3, i5) { i1 = i1 | 0; i9 = i9 | 0; i2 = i2 | 0; i3 = i3 | 0; i5 = i5 | 0; var i4 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i10 + 4 | 0; i4 = i10; if (!(HEAP32[i2 + 4 >> 2] & 1)) { i7 = HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i4 >> 2]; i1 = FUNCTION_TABLE_iiiiii[i7 & 31](i1, i8, i2, i3, i5 & 1) | 0; } else { i2 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i8 >> 2] = i2; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47492) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i2) | 0; i2 = HEAP32[i1 >> 2] | 0; if (i5) FUNCTION_TABLE_vii[HEAP32[i2 + 24 >> 2] & 255](i8, i1); else FUNCTION_TABLE_vii[HEAP32[i2 + 28 >> 2] & 255](i8, i1); i6 = i8 + 11 | 0; i2 = HEAP8[i6 >> 0] | 0; if (i2 << 24 >> 24 < 0) { i1 = HEAP32[i8 >> 2] | 0; i7 = 8; } else i1 = i8; while (1) { i7 = i2 << 24 >> 24 < 0; if ((i1 | 0) == ((i7 ? HEAP32[i8 >> 2] | 0 : i8) + (i7 ? HEAP32[i8 + 4 >> 2] | 0 : i2 & 255) | 0)) break; i2 = HEAP8[i1 >> 0] | 0; i3 = HEAP32[i9 >> 2] | 0; do if (i3 | 0) { i4 = i3 + 24 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) != (HEAP32[i3 + 28 >> 2] | 0)) { HEAP32[i4 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i2; break; } if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 52 >> 2] & 31](i3, i2 & 255) | 0) == -1) HEAP32[i9 >> 2] = 0; } while (0); i2 = HEAP8[i6 >> 0] | 0; i1 = i1 + 1 | 0; i7 = 8; } i1 = HEAP32[i9 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8); } STACKTOP = i10; return i1 | 0; } function __ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwb(i1, i9, i2, i3, i5) { i1 = i1 | 0; i9 = i9 | 0; i2 = i2 | 0; i3 = i3 | 0; i5 = i5 | 0; var i4 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i10 + 4 | 0; i4 = i10; if (!(HEAP32[i2 + 4 >> 2] & 1)) { i7 = HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i4 >> 2]; i1 = FUNCTION_TABLE_iiiiii[i7 & 31](i1, i8, i2, i3, i5 & 1) | 0; } else { i2 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i8 >> 2] = i2; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47516) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i2) | 0; i2 = HEAP32[i1 >> 2] | 0; if (i5) FUNCTION_TABLE_vii[HEAP32[i2 + 24 >> 2] & 255](i8, i1); else FUNCTION_TABLE_vii[HEAP32[i2 + 28 >> 2] & 255](i8, i1); i6 = i8 + 8 + 3 | 0; i1 = HEAP8[i6 >> 0] | 0; i2 = HEAP32[i8 >> 2] | 0; i7 = i8 + 4 | 0; i5 = i1 << 24 >> 24 < 0 ? i2 : i8; while (1) { i4 = i1 << 24 >> 24 < 0; if ((i5 | 0) == ((i4 ? i2 : i8) + ((i4 ? HEAP32[i7 >> 2] | 0 : i1 & 255) << 2) | 0)) break; i1 = HEAP32[i5 >> 2] | 0; i2 = HEAP32[i9 >> 2] | 0; if (i2 | 0) { i3 = i2 + 24 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i2 + 28 >> 2] | 0)) i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 52 >> 2] & 31](i2, i1) | 0; else { HEAP32[i3 >> 2] = i4 + 4; HEAP32[i4 >> 2] = i1; } if ((i1 | 0) == -1) HEAP32[i9 >> 2] = 0; } i5 = i5 + 4 | 0; i1 = HEAP8[i6 >> 0] | 0; i2 = HEAP32[i8 >> 2] | 0; } i1 = HEAP32[i9 >> 2] | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i8); } STACKTOP = i10; return i1 | 0; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE7visitIfEPNS_2IfE(i3, i4, i1) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i2 = i5; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i4, HEAP32[i1 + 8 >> 2] | 0); do if (!(HEAP32[i2 + 16 >> 2] | 0)) if (!(__ZNK4wasm7Literal6geti32Ev(i2) | 0)) { i1 = HEAP32[i1 + 16 >> 2] | 0; if (!i1) { HEAP32[i3 >> 2] = 0; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i3 + 16 >> 2] = 0; break; } else { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i4, i1); break; } } else { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i3, i4, HEAP32[i1 + 12 >> 2] | 0); if (HEAP32[i3 + 16 >> 2] | 0) break; if (HEAP32[i1 + 16 >> 2] | 0) break; HEAP32[i3 >> 2] = 0; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; break; } else { HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; HEAP32[i3 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i3 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i3 + 12 >> 2] = HEAP32[i2 + 12 >> 2]; HEAP32[i3 + 16 >> 2] = HEAP32[i2 + 16 >> 2]; HEAP32[i3 + 20 >> 2] = HEAP32[i2 + 20 >> 2]; } while (0); STACKTOP = i5; return; } function __ZN4wasm22SExpressionWasmBuilder18parseModuleElementERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i5; i4 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 0) | 0) | 0; do if ((i4 | 0) != (HEAP32[11435] | 0)) { if ((i4 | 0) == (HEAP32[11436] | 0)) { __ZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementE(i1, i2); break; } if ((i4 | 0) == (HEAP32[11439] | 0)) { __ZN4wasm22SExpressionWasmBuilder11parseMemoryERNS_7ElementE(i1, i2); break; } if ((i4 | 0) == (HEAP32[11441] | 0)) { __ZN4wasm22SExpressionWasmBuilder11parseExportERNS_7ElementE(i1, i2); break; } if ((i4 | 0) != (HEAP32[11442] | 0)) { if ((i4 | 0) == (HEAP32[11382] | 0)) { __ZN4wasm22SExpressionWasmBuilder11parseGlobalERNS_7ElementE(i1, i2); break; } if ((i4 | 0) == (HEAP32[11443] | 0)) { __ZN4wasm22SExpressionWasmBuilder10parseTableERNS_7ElementE(i1, i2); break; } if ((i4 | 0) != (HEAP32[11445] | 0)) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 17617) | 0, i4) | 0, 10) | 0; i5 = ___cxa_allocate_exception(20) | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 17637, 22); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i5, i3); ___cxa_throw(i5 | 0, 8, 154); } } } else __ZN4wasm22SExpressionWasmBuilder10parseStartERNS_7ElementE(i1, i2); while (0); STACKTOP = i5; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i7, i8, i9, i10, i11) { i7 = i7 | 0; i8 = i8 | 0; i9 = i9 | 0; i10 = i10 | 0; i11 = i11 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0; i17 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i17; i5 = i17 + 24 | 0; i12 = i17 + 20 | 0; i13 = i17 + 16 | 0; i14 = __ZN6cashew12ValueBuilder9makeBlockEv() | 0; i15 = i6 + 12 | 0; i16 = i6 + 12 | 0; L1 : while (1) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i8); i4 = HEAP32[i8 >> 2] | 0; i2 = HEAP8[i4 >> 0] | 0; switch (i2 << 24 >> 24) { case 0: break L1; case 59: { HEAP32[i8 >> 2] = i4 + 1; continue L1; } default: i1 = i9; } while (1) { i3 = HEAP8[i1 >> 0] | 0; if (!(i3 << 24 >> 24)) break; if (i3 << 24 >> 24 == i2 << 24 >> 24) break L1; else i1 = i1 + 1 | 0; } i1 = HEAP32[i10 >> 2] | 0; if ((i1 | 0 ? HEAP8[i1 >> 0] | 0 : 0) ? (__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i6, i4), (HEAP32[i16 >> 2] | 0) == 0 ? (HEAP32[i6 >> 2] | 0) == (i1 | 0) : 0) : 0) break; i1 = HEAP32[i11 >> 2] | 0; if ((i1 | 0 ? HEAP8[i1 >> 0] | 0 : 0) ? (__ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i6, HEAP32[i8 >> 2] | 0), (HEAP32[i15 >> 2] | 0) == 0 ? (HEAP32[i6 >> 2] | 0) == (i1 | 0) : 0) : 0) break; i4 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE23parseElementOrStatementERPcPKc(i7, i8, i9) | 0; HEAP32[i12 >> 2] = i14; HEAP32[i13 >> 2] = i4; HEAP32[i5 >> 2] = HEAP32[i12 >> 2]; HEAP32[i6 >> 2] = HEAP32[i13 >> 2]; __ZN6cashew12ValueBuilder13appendToBlockENS_3RefES1_(i5, i6); } STACKTOP = i17; return i14 | 0; } function __ZN10MixedArena10allocSpaceEj(i10, i6) { i10 = i10 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i11; i7 = _pthread_self() | 0; if ((i7 | 0) == (HEAP32[i10 + 20 >> 2] | 0)) { i8 = i6 + 7 & -8; i1 = i10 + 12 | 0; i4 = 0; i5 = HEAP32[i1 >> 2] | 0; while (1) { if (i5 >>> 0 > i8 >>> 0) break; i7 = i5 << 1; HEAP32[i1 >> 2] = i7; i4 = 1; i5 = i7; } i6 = i10 + 4 | 0; i7 = HEAP32[i6 >> 2] | 0; i1 = i7; if (!((i7 | 0) != (HEAP32[i10 >> 2] | 0) ? (i3 = i10 + 16 | 0, i2 = HEAP32[i3 >> 2] | 0, !(i4 | (i2 + i8 | 0) >>> 0 >= i5 >>> 0)) : 0)) { i2 = __Znaj(i5) | 0; HEAP32[i9 >> 2] = i2; if (i1 >>> 0 < (HEAP32[i10 + 8 >> 2] | 0) >>> 0) { HEAP32[i7 >> 2] = i2; i1 = (HEAP32[i6 >> 2] | 0) + 4 | 0; HEAP32[i6 >> 2] = i1; } else { __ZNSt3__26vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i10, i9); i1 = HEAP32[i6 >> 2] | 0; } i3 = i10 + 16 | 0; HEAP32[i3 >> 2] = 0; i2 = 0; } i1 = (HEAP32[i1 + -4 >> 2] | 0) + i2 | 0; HEAP32[i3 >> 2] = i2 + i8; } else { i5 = 0; i1 = i10; L16 : while (1) { while (1) { if ((i7 | 0) == (HEAP32[i1 + 20 >> 2] | 0)) { i8 = 9; break L16; } i4 = i1 + 24 | 0; i2 = HEAP32[i4 >> 2] | 0; if (!i2) break; else i1 = i2; } if (!i5) { i2 = __Znwj(28) | 0; __ZN10MixedArenaC2Ev(i2); } else i2 = i5; i3 = HEAP32[i4 >> 2] | 0; if (!i3) HEAP32[i4 >> 2] = i2; if (!i3) break; i5 = i2; i1 = i3; } if ((i8 | 0) == 9 ? i5 | 0 : 0) { __ZN10MixedArenaD2Ev(i5); __ZdlPv(i5); } i1 = __ZN10MixedArena10allocSpaceEj(i1, i6) | 0; } STACKTOP = i11; return i1 | 0; } function __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i8, i4, i10) { i8 = i8 | 0; i4 = i4 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0; i2 = i4; i11 = i10 - i2 >> 2; i1 = i8 + 8 | 0; i7 = HEAP32[i8 >> 2] | 0; i5 = i7; L1 : do if (i11 >>> 0 > (HEAP32[i1 >> 2] | 0) - i7 >> 2 >>> 0) { __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE10deallocateEv(i8); if (i11 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i7 = (HEAP32[i1 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) | 0; i9 = i7 >> 1; __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE8allocateEj(i8, i7 >> 2 >>> 0 < 536870911 ? (i9 >>> 0 < i11 >>> 0 ? i11 : i9) : 1073741823); __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i8, i4, i10, i11); break; } } else { i9 = i8 + 4 | 0; i3 = (HEAP32[i9 >> 2] | 0) - i7 >> 2; i6 = i11 >>> 0 > i3 >>> 0; i3 = i6 ? i4 + (i3 << 2) | 0 : i10; i1 = i3 - i2 | 0; i2 = i1 >> 2; if (i2 | 0) _memmove(i7 | 0, i4 | 0, i1 | 0) | 0; i2 = i5 + (i2 << 2) | 0; if (i6) { __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i8, i3, i10, i11 - ((HEAP32[i9 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) >> 2) | 0); break; } i1 = HEAP32[i9 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i11 = i1 + -4 | 0; HEAP32[i9 >> 2] = i11; i1 = i11; } } while (0); return; } function __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i8, i4, i10) { i8 = i8 | 0; i4 = i4 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0; i2 = i4; i11 = i10 - i2 >> 3; i1 = i8 + 8 | 0; i7 = HEAP32[i8 >> 2] | 0; i5 = i7; L1 : do if (i11 >>> 0 > (HEAP32[i1 >> 2] | 0) - i7 >> 3 >>> 0) { __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE10deallocateEv(i8); if (i11 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i7 = (HEAP32[i1 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) | 0; i9 = i7 >> 2; __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE8allocateEj(i8, i7 >> 3 >>> 0 < 268435455 ? (i9 >>> 0 < i11 >>> 0 ? i11 : i9) : 536870911); __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i8, i4, i10, i11); break; } } else { i9 = i8 + 4 | 0; i3 = (HEAP32[i9 >> 2] | 0) - i7 >> 3; i6 = i11 >>> 0 > i3 >>> 0; i3 = i6 ? i4 + (i3 << 3) | 0 : i10; i1 = i3 - i2 | 0; i2 = i1 >> 3; if (i2 | 0) _memmove(i7 | 0, i4 | 0, i1 | 0) | 0; i2 = i5 + (i2 << 3) | 0; if (i6) { __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i8, i3, i10, i11 - ((HEAP32[i9 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) >> 3) | 0); break; } i1 = HEAP32[i9 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i11 = i1 + -8 | 0; HEAP32[i9 >> 2] = i11; i1 = i11; } } while (0); return; } function _load_binary2wasm(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 144 | 0; i4 = i6 + 128 | 0; i5 = i6; __ZL12prepare2wasmv(); if (HEAP8[49408] | 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 13055) | 0; i1 = __Znwj(188) | 0; __ZN4wasm6ModuleC2Ev(i1); HEAP32[11250] = i1; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__26vectorIcNS_9allocatorIcEEE6resizeEj(i4, i3); i1 = 0; while (1) { if ((i1 | 0) >= (i3 | 0)) break; HEAP8[(HEAP32[i4 >> 2] | 0) + i1 >> 0] = HEAP8[i2 + i1 >> 0] | 0; i1 = i1 + 1 | 0; } i2 = HEAP32[11250] | 0; i3 = (HEAP32[11245] | 0) != 0; HEAP32[i5 >> 2] = i2; HEAP32[i5 + 4 >> 2] = i2 + 100; HEAP32[i5 + 8 >> 2] = i4; HEAP8[i5 + 12 >> 0] = i3 & 1; HEAP32[i5 + 16 >> 2] = 0; HEAP32[i5 + 20 >> 2] = -1; HEAP32[i5 + 24 >> 2] = 0; HEAP32[i5 + 28 >> 2] = 0; HEAP32[i5 + 32 >> 2] = 0; HEAP32[i5 + 40 >> 2] = 0; HEAP32[i5 + 44 >> 2] = 0; HEAP32[i5 + 48 >> 2] = 0; HEAP32[i5 + 56 >> 2] = 0; HEAP32[i5 + 60 >> 2] = 0; HEAP32[i5 + 52 >> 2] = i5 + 56; HEAP32[i5 + 64 >> 2] = 0; HEAP32[i5 + 76 >> 2] = 0; HEAP32[i5 + 80 >> 2] = 0; HEAP32[i5 + 72 >> 2] = i5 + 76; i3 = i5 + 84 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; HEAP32[i3 + 12 >> 2] = 0; HEAP32[i3 + 16 >> 2] = 0; HEAP32[i3 + 20 >> 2] = 0; HEAP32[i5 + 108 >> 2] = 15; i3 = i5 + 112 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; HEAP32[i3 + 12 >> 2] = 0; __ZN4wasm17WasmBinaryBuilder4readEv(i5); __Z14finalizeModulev(); __ZN4wasm17WasmBinaryBuilderD2Ev(i5); __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i4); STACKTOP = i6; return; } function __ZNSt3__26vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE8__appendEj(i6, i1) { i6 = i6 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i8; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = HEAP32[i6 + 4 >> 2] | 0; if (((i4 - i5 | 0) / 20 | 0) >>> 0 < i1 >>> 0) { i2 = HEAP32[i6 >> 2] | 0; i3 = ((i5 - i2 | 0) / 20 | 0) + i1 | 0; if (i3 >>> 0 > 214748364) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); i9 = (i4 - i2 | 0) / 20 | 0; i4 = i9 << 1; __ZNSt3__214__split_bufferINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEERNS8_ISD_EEEC2EjjSF_(i7, i9 >>> 0 < 107374182 ? (i4 >>> 0 < i3 >>> 0 ? i3 : i4) : 214748364, (i5 - i2 | 0) / 20 | 0, i6 + 8 | 0); i3 = i7 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; do { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = 0; HEAPF32[i2 + 16 >> 2] = 1.0; i2 = (HEAP32[i3 >> 2] | 0) + 20 | 0; HEAP32[i3 >> 2] = i2; i1 = i1 + -1 | 0; } while ((i1 | 0) != 0); __ZNSt3__26vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE26__swap_out_circular_bufferERNS_14__split_bufferISD_RSE_EE(i6, i7); __ZNSt3__214__split_bufferINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEERNS8_ISD_EEED2Ev(i7); } else __ZNSt3__26vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE18__construct_at_endEj(i6, i1); STACKTOP = i8; return; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11truncUFloatEPNS_5UnaryES6_(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, d6 = 0.0; d6 = +__ZN4wasm7Literal8getFloatEv(i5); HEAPF64[tempDoublePtr >> 3] = d6; i3 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; if (i3 >>> 0 > 2146435072 | (i3 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24467); i3 = (HEAP32[i5 >> 2] | 0) == 3; if ((HEAP32[i4 + 4 >> 2] | 0) == 1) { if (i3) { if (!(__ZN4wasm18isInRangeI32TruncUEi(__ZNK4wasm7Literal14reinterpreti32Ev(i5) | 0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24486); } else { i5 = __ZNK4wasm7Literal14reinterpreti64Ev(i5) | 0; if (!(__ZN4wasm18isInRangeI32TruncUEx(i5, tempRet0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24486); } HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = ~~d6 >>> 0; } else { if (i3) { if (!(__ZN4wasm18isInRangeI64TruncUEi(__ZNK4wasm7Literal14reinterpreti32Ev(i5) | 0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24511); } else { i5 = __ZNK4wasm7Literal14reinterpreti64Ev(i5) | 0; if (!(__ZN4wasm18isInRangeI64TruncUEx(i5, tempRet0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24511); } i4 = +Math_abs(d6) >= 1.0 ? (d6 > 0.0 ? ~~+Math_min(+Math_floor(d6 / 4294967296.0), 4294967295.0) >>> 0 : ~~+Math_ceil((d6 - +(~~d6 >>> 0)) / 4294967296.0) >>> 0) : 0; HEAP32[i1 >> 2] = 2; i5 = i1 + 8 | 0; HEAP32[i5 >> 2] = ~~d6 >>> 0; HEAP32[i5 + 4 >> 2] = i4; } return; } function __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 28 | 0; i1 = i6 + 24 | 0; i4 = i6; i5 = i2 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } HEAP32[i4 >> 2] = 2324; HEAP32[i4 + 4 >> 2] = i2; HEAP32[i4 + 16 >> 2] = i4; __ZN4wasm3LEBIjhE4readENSt3__28functionIFhvEEE(i1, i4); __ZNSt3__28functionIFhvEED2Ev(i4); if (HEAP8[i5 >> 0] | 0) { i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19007) | 0; i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i8, HEAP32[i1 >> 2] | 0) | 0, 18951) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; } STACKTOP = i6; return HEAP32[i1 >> 2] | 0; } function __ZN4wasm17WasmBinaryBuilder9getS32LEBEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 28 | 0; i1 = i6 + 24 | 0; i4 = i6; i5 = i2 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } HEAP32[i4 >> 2] = 2368; HEAP32[i4 + 4 >> 2] = i2; HEAP32[i4 + 16 >> 2] = i4; __ZN4wasm3LEBIiaE4readENSt3__28functionIFavEEE(i1, i4); __ZNSt3__28functionIFavEED2Ev(i4); if (HEAP8[i5 >> 0] | 0) { i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19007) | 0; i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(i8, HEAP32[i1 >> 2] | 0) | 0, 18951) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; } STACKTOP = i6; return HEAP32[i1 >> 2] | 0; } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i8, i4, i10) { i8 = i8 | 0; i4 = i4 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i11 = 0; i2 = i4; i11 = i10 - i2 >> 2; i1 = i8 + 8 | 0; i7 = HEAP32[i8 >> 2] | 0; i5 = i7; L1 : do if (i11 >>> 0 > (HEAP32[i1 >> 2] | 0) - i7 >> 2 >>> 0) { __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE10deallocateEv(i8); if (i11 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i8); else { i7 = (HEAP32[i1 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) | 0; i9 = i7 >> 1; __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE8allocateEj(i8, i7 >> 2 >>> 0 < 536870911 ? (i9 >>> 0 < i11 >>> 0 ? i11 : i9) : 1073741823); __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i8, i4, i10, i11); break; } } else { i9 = i8 + 4 | 0; i3 = (HEAP32[i9 >> 2] | 0) - i7 >> 2; i6 = i11 >>> 0 > i3 >>> 0; i3 = i6 ? i4 + (i3 << 2) | 0 : i10; i1 = i3 - i2 | 0; i2 = i1 >> 2; if (i2 | 0) _memmove(i7 | 0, i4 | 0, i1 | 0) | 0; i2 = i5 + (i2 << 2) | 0; if (i6) { __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i8, i3, i10, i11 - ((HEAP32[i9 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) >> 2) | 0); break; } i1 = HEAP32[i9 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i11 = i1 + -4 | 0; HEAP32[i9 >> 2] = i11; i1 = i11; } } while (0); return; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11truncSFloatEPNS_5UnaryES6_(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, d6 = 0.0; d6 = +__ZN4wasm7Literal8getFloatEv(i5); HEAPF64[tempDoublePtr >> 3] = d6; i3 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; if (i3 >>> 0 > 2146435072 | (i3 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24361); i3 = (HEAP32[i5 >> 2] | 0) == 3; if ((HEAP32[i4 + 4 >> 2] | 0) == 1) { if (i3) { if (!(__ZN4wasm18isInRangeI32TruncSEi(__ZNK4wasm7Literal14reinterpreti32Ev(i5) | 0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24380); } else { i5 = __ZNK4wasm7Literal14reinterpreti64Ev(i5) | 0; if (!(__ZN4wasm18isInRangeI32TruncSEx(i5, tempRet0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24380); } HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = ~~d6; } else { if (i3) { if (!(__ZN4wasm18isInRangeI64TruncSEi(__ZNK4wasm7Literal14reinterpreti32Ev(i5) | 0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24405); } else { i5 = __ZNK4wasm7Literal14reinterpreti64Ev(i5) | 0; if (!(__ZN4wasm18isInRangeI64TruncSEx(i5, tempRet0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24405); } i4 = +Math_abs(d6) >= 1.0 ? (d6 > 0.0 ? ~~+Math_min(+Math_floor(d6 / 4294967296.0), 4294967295.0) >>> 0 : ~~+Math_ceil((d6 - +(~~d6 >>> 0)) / 4294967296.0) >>> 0) : 0; HEAP32[i1 >> 2] = 2; i5 = i1 + 8 | 0; HEAP32[i5 >> 2] = ~~d6 >>> 0; HEAP32[i5 + 4 >> 2] = i4; } return; } function __ZN4wasm17WasmBinaryBuilder10getFloat64Ev(i2) { i2 = i2 | 0; var d1 = 0.0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i6 + 16 | 0; i3 = i6; i5 = i2 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } i7 = __ZN4wasm17WasmBinaryBuilder8getInt64Ev(i2) | 0; HEAP32[i3 >> 2] = 2; i8 = i3 + 8 | 0; HEAP32[i8 >> 2] = i7; HEAP32[i8 + 4 >> 2] = tempRet0; d1 = +__ZNK4wasm7Literal14reinterpretf64Ev(i3); if (HEAP8[i5 >> 0] | 0) { i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEd(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21225) | 0, d1) | 0, 18951) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; } STACKTOP = i6; return +d1; } function __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(i7, i1) { i7 = i7 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0; HEAP8[i1 + 12 >> 0] = (i1 | 0) == (i7 | 0) & 1; i4 = i1; while (1) { if ((i4 | 0) == (i7 | 0)) break; i2 = HEAP32[i4 + 8 >> 2] | 0; i6 = i2 + 12 | 0; if (HEAP8[i6 >> 0] | 0) break; i5 = i2 + 8 | 0; i1 = HEAP32[i5 >> 2] | 0; i3 = HEAP32[i1 >> 2] | 0; if ((i3 | 0) == (i2 | 0)) { i3 = HEAP32[i1 + 4 >> 2] | 0; if (!i3) { i8 = 8; break; } i3 = i3 + 12 | 0; if (HEAP8[i3 >> 0] | 0) { i8 = 8; break; } HEAP8[i6 >> 0] = 1; HEAP8[i1 + 12 >> 0] = (i1 | 0) == (i7 | 0) & 1; HEAP8[i3 >> 0] = 1; i4 = i1; continue; } else { if (!i3) { i8 = 14; break; } i3 = i3 + 12 | 0; if (HEAP8[i3 >> 0] | 0) { i8 = 14; break; } HEAP8[i6 >> 0] = 1; HEAP8[i1 + 12 >> 0] = (i1 | 0) == (i7 | 0) & 1; HEAP8[i3 >> 0] = 1; i4 = i1; continue; } } if ((i8 | 0) == 8) { if ((HEAP32[i2 >> 2] | 0) != (i4 | 0)) { __ZNSt3__218__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2); i1 = HEAP32[i5 >> 2] | 0; i2 = i1; i1 = HEAP32[i1 + 8 >> 2] | 0; } HEAP8[i2 + 12 >> 0] = 1; HEAP8[i1 + 12 >> 0] = 0; __ZNSt3__219__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i1); } else if ((i8 | 0) == 14) { if ((HEAP32[i2 >> 2] | 0) == (i4 | 0)) { __ZNSt3__219__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i2); i1 = HEAP32[i5 >> 2] | 0; i2 = i1; i1 = HEAP32[i1 + 8 >> 2] | 0; } HEAP8[i2 + 12 >> 0] = 1; HEAP8[i1 + 12 >> 0] = 0; __ZNSt3__218__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i1); } return; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE25__emplace_unique_key_argsIS7_JRKNS_21piecewise_construct_tENS_5tupleIJRKS7_EEENSM_IJEEEEEENS_4pairINS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEEbEERKT_DpOT0_(i9, i3, i1, i4, i5, i6) { i9 = i9 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i2 = 0, i7 = 0, i8 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i10 + 12 | 0; i8 = i10; i2 = __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEESN_RKT_(i3, i7, i1) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__construct_nodeIJRKNS_21piecewise_construct_tENS_5tupleIJRKS7_EEENSM_IJEEEEEENS_10unique_ptrINS_11__tree_nodeISB_PvEENS_22__tree_node_destructorINS5_ISU_EEEEEEDpOT_(i8, i3, i4, i5, i6); __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i3, HEAP32[i7 >> 2] | 0, i2, HEAP32[i8 >> 2] | 0); i1 = HEAP32[i8 >> 2] | 0; i2 = 1; } else i2 = 0; HEAP32[i9 >> 2] = i1; HEAP8[i9 + 4 >> 0] = i2; STACKTOP = i10; return; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE25__emplace_unique_key_argsIS7_JRKNS_21piecewise_construct_tENS_5tupleIJOS7_EEENSM_IJEEEEEENS_4pairINS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEEbEERKT_DpOT0_(i9, i3, i1, i4, i5, i6) { i9 = i9 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i2 = 0, i7 = 0, i8 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i10 + 12 | 0; i8 = i10; i2 = __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEESN_RKT_(i3, i7, i1) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__construct_nodeIJRKNS_21piecewise_construct_tENS_5tupleIJOS7_EEENSM_IJEEEEEENS_10unique_ptrINS_11__tree_nodeISB_PvEENS_22__tree_node_destructorINS5_IST_EEEEEEDpOT_(i8, i3, i4, i5, i6); __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i3, HEAP32[i7 >> 2] | 0, i2, HEAP32[i8 >> 2] | 0); i1 = HEAP32[i8 >> 2] | 0; i2 = 1; } else i2 = 0; HEAP32[i9 >> 2] = i1; HEAP8[i9 + 4 >> 0] = i2; STACKTOP = i10; return; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner15visitCallImportEPNS_10CallImportE(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i1 = i9 + 56 | 0; i5 = i9 + 44 | 0; i6 = i9 + 16 | 0; i7 = i9; i8 = i9 + 40 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner17generateArgumentsERK11ArenaVectorIPNS_10ExpressionEES9_(i6, i3, i4 + 8 | 0, i5); if (!(HEAP32[i6 + 16 >> 2] | 0)) { i10 = HEAP32[i3 + 4 >> 2] | 0; i6 = HEAP32[i10 + 36 >> 2] | 0; i3 = HEAP32[(HEAP32[i6 >> 2] | 0) + 4 >> 2] | 0; i10 = HEAP32[i10 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i4 + 24 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i8 = __ZN4wasm6Module9getImportENS_4NameE(i10, i1) | 0; FUNCTION_TABLE_viiii[i3 & 15](i7, i6, i8, i5); HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i7 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = 0; } else { HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = HEAP32[i6 + 16 >> 2]; HEAP32[i2 + 20 >> 2] = HEAP32[i6 + 20 >> 2]; } __ZNSt3__213__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i5); STACKTOP = i9; return; } function __ZN4wasm22SExpressionWasmBuilder14getGlobalIndexERNS_7ElementE(i3, i6) { i3 = i3 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i7 + 12 | 0; i2 = i7; L1 : do if (!(HEAP8[i6 + 24 >> 0] | 0)) { i1 = _atoi(__ZN4wasm7Element5c_strEv(i6) | 0) | 0; if (!(__ZN4wasm6Module11checkGlobalEj(HEAP32[i3 >> 2] | 0, i1) | 0)) { i7 = ___cxa_allocate_exception(20) | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 18539, 16); i5 = HEAP32[i6 + 28 >> 2] | 0; i6 = HEAP32[i6 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i7, i2); HEAP32[i7 + 12 >> 2] = i5; HEAP32[i7 + 16 >> 2] = i6; ___cxa_throw(i7 | 0, 8, 154); } } else { i4 = __ZN4wasm7Element3strEv(i6) | 0; i2 = HEAP32[i3 >> 2] | 0; i3 = HEAP32[i2 + 48 >> 2] | 0; i2 = (HEAP32[i2 + 52 >> 2] | 0) - i3 >> 2; i1 = 0; while (1) { if (i1 >>> 0 >= i2 >>> 0) break; if ((HEAP32[HEAP32[i3 + (i1 << 2) >> 2] >> 2] | 0) == (i4 | 0)) break L1; i1 = i1 + 1 | 0; } i7 = ___cxa_allocate_exception(20) | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 18523, 15); i4 = HEAP32[i6 + 28 >> 2] | 0; i6 = HEAP32[i6 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i7, i5); HEAP32[i7 + 12 >> 2] = i4; HEAP32[i7 + 16 >> 2] = i6; ___cxa_throw(i7 | 0, 8, 154); } while (0); STACKTOP = i7; return i1 | 0; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner9visitLoadEPNS_4LoadE(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i1 = i8 + 40 | 0; i5 = i8; i6 = i8 + 24 | 0; i7 = i8 + 56 | 0; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i5, i3, HEAP32[i4 + 20 >> 2] | 0); if (!(HEAP32[i5 + 16 >> 2] | 0)) { i10 = HEAP32[i3 + 4 >> 2] | 0; i3 = HEAP32[i10 + 36 >> 2] | 0; i9 = HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] | 0; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; i5 = __ZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEENS_7AddressEPT_NS_7LiteralE(i10, i4, i1) | 0; HEAP32[i7 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; FUNCTION_TABLE_viiii[i9 & 15](i6, i3, i4, i1); HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = 0; } else { HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = HEAP32[i5 + 16 >> 2]; HEAP32[i2 + 20 >> 2] = HEAP32[i5 + 20 >> 2]; } STACKTOP = i8; return; } function __ZN4wasm17WasmBinaryBuilder10getFloat32Ev(i2) { i2 = i2 | 0; var d1 = 0.0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i6 + 16 | 0; i3 = i6; i5 = i2 + 12 | 0; if (HEAP8[i5 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } i8 = __ZN4wasm17WasmBinaryBuilder8getInt32Ev(i2) | 0; HEAP32[i3 >> 2] = 1; HEAP32[i3 + 8 >> 2] = i8; d1 = +__ZNK4wasm7Literal14reinterpretf32Ev(i3); if (HEAP8[i5 >> 0] | 0) { i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEf(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21197) | 0, d1) | 0, 18951) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i8 + (HEAP32[(HEAP32[i8 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i8, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i8) | 0; } STACKTOP = i6; return +d1; } function __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i7, i11, i2, i3, i8) { i10 = i10 | 0; i7 = i7 | 0; i11 = i11 | 0; i2 = i2 | 0; i3 = i3 | 0; i8 = i8 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i12 = 0, i13 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i12; i1 = HEAP32[i10 >> 2] | 0; L1 : do if (!i1) i1 = 0; else { i13 = i7; i4 = i2 - i13 >> 2; i6 = i3 + 12 | 0; i3 = HEAP32[i6 >> 2] | 0; i3 = (i3 | 0) > (i4 | 0) ? i3 - i4 | 0 : 0; i4 = i11; i13 = i4 - i13 | 0; i5 = i13 >> 2; if ((i13 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i7, i5) | 0) != (i5 | 0) : 0) { HEAP32[i10 >> 2] = 0; i1 = 0; break; } do if ((i3 | 0) > 0) { HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEjw(i9, i3, i8); if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, (HEAP8[i9 + 8 + 3 >> 0] | 0) < 0 ? HEAP32[i9 >> 2] | 0 : i9, i3) | 0) == (i3 | 0)) { __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i9); break; } else { HEAP32[i10 >> 2] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i9); i1 = 0; break L1; } } while (0); i13 = i2 - i4 | 0; i2 = i13 >> 2; if ((i13 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i11, i2) | 0) != (i2 | 0) : 0) { HEAP32[i10 >> 2] = 0; i1 = 0; break; } HEAP32[i6 >> 2] = 0; } while (0); STACKTOP = i12; return i1 | 0; } function __ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i3, i6, i8, i2, i4) { i3 = i3 | 0; i6 = i6 | 0; i8 = i8 | 0; i2 = i2 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i7 = 0; do if ((i3 | 0) == (HEAP32[i6 + 8 >> 2] | 0)) { if ((HEAP32[i6 + 4 >> 2] | 0) == (i8 | 0) ? (i1 = i6 + 28 | 0, (HEAP32[i1 >> 2] | 0) != 1) : 0) HEAP32[i1 >> 2] = i2; } else { if ((i3 | 0) != (HEAP32[i6 >> 2] | 0)) { i7 = HEAP32[i3 + 8 >> 2] | 0; FUNCTION_TABLE_viiiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 24 >> 2] & 3](i7, i6, i8, i2, i4); break; } if ((HEAP32[i6 + 16 >> 2] | 0) != (i8 | 0) ? (i7 = i6 + 20 | 0, (HEAP32[i7 >> 2] | 0) != (i8 | 0)) : 0) { HEAP32[i6 + 32 >> 2] = i2; i5 = i6 + 44 | 0; if ((HEAP32[i5 >> 2] | 0) == 4) break; i1 = i6 + 52 | 0; HEAP8[i1 >> 0] = 0; i2 = i6 + 53 | 0; HEAP8[i2 >> 0] = 0; i3 = HEAP32[i3 + 8 >> 2] | 0; FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 15](i3, i6, i8, i8, 1, i4); if (HEAP8[i2 >> 0] | 0) if (!(HEAP8[i1 >> 0] | 0)) { i1 = 1; i2 = 13; } else i2 = 17; else { i1 = 0; i2 = 13; } do if ((i2 | 0) == 13) { HEAP32[i7 >> 2] = i8; i8 = i6 + 40 | 0; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 1; if ((HEAP32[i6 + 36 >> 2] | 0) == 1 ? (HEAP32[i6 + 24 >> 2] | 0) == 2 : 0) { HEAP8[i6 + 54 >> 0] = 1; if (i1) { i2 = 17; break; } else { i1 = 4; break; } } if (i1) i2 = 17; else i1 = 4; } while (0); if ((i2 | 0) == 17) i1 = 3; HEAP32[i5 >> 2] = i1; break; } if ((i2 | 0) == 1) HEAP32[i6 + 32 >> 2] = 1; } while (0); return; } function _mbsnrtowcs(i2, i10, i6, i1, i9) { i2 = i2 | 0; i10 = i10 | 0; i6 = i6 | 0; i1 = i1 | 0; i9 = i9 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 1040 | 0; i8 = i13 + 8 | 0; i11 = i13; i7 = HEAP32[i10 >> 2] | 0; HEAP32[i11 >> 2] = i7; i12 = (i2 | 0) != 0; i4 = i12 ? i1 : 256; i2 = i12 ? i2 : i8; i3 = i7; L1 : do if ((i4 | 0) != 0 & (i7 | 0) != 0) { i1 = 0; i7 = i6; while (1) { i5 = i7 >>> 2; i6 = i5 >>> 0 >= i4 >>> 0; if (!(i7 >>> 0 > 131 | i6)) { i6 = i7; break L1; } i3 = i6 ? i4 : i5; i6 = i7 - i3 | 0; i3 = _mbsrtowcs(i2, i11, i3, i9) | 0; if ((i3 | 0) == -1) break; i7 = (i2 | 0) == (i8 | 0); i4 = i4 - (i7 ? 0 : i3) | 0; i2 = i7 ? i2 : i2 + (i3 << 2) | 0; i1 = i3 + i1 | 0; i3 = HEAP32[i11 >> 2] | 0; if ((i4 | 0) != 0 & (i3 | 0) != 0) i7 = i6; else break L1; } i1 = -1; i4 = 0; i3 = HEAP32[i11 >> 2] | 0; } else i1 = 0; while (0); L8 : do if ((i3 | 0) != 0 ? (i4 | 0) != 0 & (i6 | 0) != 0 : 0) { i5 = i2; while (1) { i2 = _mbrtowc(i5, i3, i6, i9) | 0; if ((i2 + 2 | 0) >>> 0 < 3) break; i3 = (HEAP32[i11 >> 2] | 0) + i2 | 0; HEAP32[i11 >> 2] = i3; i6 = i6 - i2 | 0; i4 = i4 + -1 | 0; i1 = i1 + 1 | 0; if (!((i4 | 0) != 0 & (i6 | 0) != 0)) break L8; else i5 = i5 + 4 | 0; } switch (i2 | 0) { case -1: { i1 = -1; break L8; } case 0: { HEAP32[i11 >> 2] = 0; break L8; } default: { HEAP32[i9 >> 2] = 0; break L8; } } } while (0); if (i12) HEAP32[i10 >> 2] = HEAP32[i11 >> 2]; STACKTOP = i13; return i1 | 0; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11truncUFloatEPNS_5UnaryENS_7LiteralE(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, d6 = 0.0; d6 = +__ZN4wasm7Literal8getFloatEv(i5); HEAPF64[tempDoublePtr >> 3] = d6; i3 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; if (i3 >>> 0 > 2146435072 | (i3 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24467); i3 = (HEAP32[i5 >> 2] | 0) == 3; if ((HEAP32[i4 + 4 >> 2] | 0) == 1) { if (i3) { if (!(__ZN4wasm18isInRangeI32TruncUEi(__ZNK4wasm7Literal14reinterpreti32Ev(i5) | 0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24486); } else { i5 = __ZNK4wasm7Literal14reinterpreti64Ev(i5) | 0; if (!(__ZN4wasm18isInRangeI32TruncUEx(i5, tempRet0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24486); } HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = ~~d6 >>> 0; } else { if (i3) { if (!(__ZN4wasm18isInRangeI64TruncUEi(__ZNK4wasm7Literal14reinterpreti32Ev(i5) | 0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24511); } else { i5 = __ZNK4wasm7Literal14reinterpreti64Ev(i5) | 0; if (!(__ZN4wasm18isInRangeI64TruncUEx(i5, tempRet0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24511); } i4 = +Math_abs(d6) >= 1.0 ? (d6 > 0.0 ? ~~+Math_min(+Math_floor(d6 / 4294967296.0), 4294967295.0) >>> 0 : ~~+Math_ceil((d6 - +(~~d6 >>> 0)) / 4294967296.0) >>> 0) : 0; HEAP32[i1 >> 2] = 2; i5 = i1 + 8 | 0; HEAP32[i5 >> 2] = ~~d6 >>> 0; HEAP32[i5 + 4 >> 2] = i4; } return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseIndexingES1_RPc(i3, i4, i8) { i3 = i3 | 0; i4 = i4 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i11 + 12 | 0; i1 = i11 + 8 | 0; i6 = i11 + 4 | 0; i7 = i11; i10 = i3 + 4 | 0; __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i3, (((HEAP32[i10 >> 2] | 0) - (HEAP32[i3 >> 2] | 0) | 0) / 12 | 0) + 1 | 0); i5 = HEAP32[i8 >> 2] | 0; if ((HEAP8[i5 >> 0] | 0) != 91) ___assert_fail(29273, 28546, 637, 29285); HEAP32[i8 >> 2] = i5 + 1; HEAP32[i6 >> 2] = HEAP32[i4 >> 2]; i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i3, i8, 42442) | 0; HEAP32[i7 >> 2] = i3; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; i3 = __ZN6cashew12ValueBuilder12makeIndexingENS_3RefES1_(i1, i2) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i8); i1 = HEAP32[i8 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 93) ___assert_fail(29299, 28546, 641, 29285); HEAP32[i8 >> 2] = i1 + 1; i1 = HEAP32[i10 >> 2] | 0; i2 = i1 + -12 | 0; if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i9 = i1; else ___assert_fail(29204, 28546, 643, 29285); while (1) { if ((i9 | 0) == (i2 | 0)) break; i8 = i9 + -12 | 0; HEAP32[i10 >> 2] = i8; __ZNSt3__213__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i8); i9 = HEAP32[i10 >> 2] | 0; } STACKTOP = i11; return i3 | 0; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11truncSFloatEPNS_5UnaryENS_7LiteralE(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, d6 = 0.0; d6 = +__ZN4wasm7Literal8getFloatEv(i5); HEAPF64[tempDoublePtr >> 3] = d6; i3 = HEAP32[tempDoublePtr + 4 >> 2] & 2147483647; if (i3 >>> 0 > 2146435072 | (i3 | 0) == 2146435072 & (HEAP32[tempDoublePtr >> 2] | 0) >>> 0 > 0) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24361); i3 = (HEAP32[i5 >> 2] | 0) == 3; if ((HEAP32[i4 + 4 >> 2] | 0) == 1) { if (i3) { if (!(__ZN4wasm18isInRangeI32TruncSEi(__ZNK4wasm7Literal14reinterpreti32Ev(i5) | 0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24380); } else { i5 = __ZNK4wasm7Literal14reinterpreti64Ev(i5) | 0; if (!(__ZN4wasm18isInRangeI32TruncSEx(i5, tempRet0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24380); } HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = ~~d6; } else { if (i3) { if (!(__ZN4wasm18isInRangeI64TruncSEi(__ZNK4wasm7Literal14reinterpreti32Ev(i5) | 0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24405); } else { i5 = __ZNK4wasm7Literal14reinterpreti64Ev(i5) | 0; if (!(__ZN4wasm18isInRangeI64TruncSEx(i5, tempRet0) | 0)) FUNCTION_TABLE_vii[HEAP32[HEAP32[i2 >> 2] >> 2] & 255](i2, 24405); } i4 = +Math_abs(d6) >= 1.0 ? (d6 > 0.0 ? ~~+Math_min(+Math_floor(d6 / 4294967296.0), 4294967295.0) >>> 0 : ~~+Math_ceil((d6 - +(~~d6 >>> 0)) / 4294967296.0) >>> 0) : 0; HEAP32[i1 >> 2] = 2; i5 = i1 + 8 | 0; HEAP32[i5 >> 2] = ~~d6 >>> 0; HEAP32[i5 + 4 >> 2] = i4; } return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseIfERPcPKc(i2, i3, i5) { i2 = i2 | 0; i3 = i3 | 0; i5 = i5 | 0; var i1 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, i17 = 0; i17 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i11 = i17; i10 = i17 + 32 | 0; i9 = i17 + 28 | 0; i12 = i17 + 24 | 0; i13 = i17 + 20 | 0; i14 = i17 + 16 | 0; i15 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERPc(i2, i3) | 0; i16 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i2, i3, i5) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i3); i6 = HEAP32[i3 >> 2] | 0; i7 = HEAP8[i6 >> 0] | 0; i1 = i5; while (1) { i4 = HEAP8[i1 >> 0] | 0; if (!(i4 << 24 >> 24)) { i8 = 4; break; } if (i4 << 24 >> 24 == i7 << 24 >> 24) { i1 = 0; break; } else i1 = i1 + 1 | 0; } if ((i8 | 0) == 4) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i11, i6); if ((HEAP32[i11 + 12 >> 2] | 0) == 0 ? (HEAP32[i11 >> 2] | 0) == (HEAP32[11271] | 0) : 0) { HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + (HEAP32[i11 + 8 >> 2] | 0); i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i2, i3, i5) | 0; } else i1 = 0; } HEAP32[i12 >> 2] = i15; HEAP32[i13 >> 2] = i16; HEAP32[i14 >> 2] = i1; HEAP32[i9 >> 2] = HEAP32[i12 >> 2]; HEAP32[i10 >> 2] = HEAP32[i13 >> 2]; HEAP32[i11 >> 2] = HEAP32[i14 >> 2]; i16 = __ZN6cashew12ValueBuilder6makeIfENS_3RefES1_S1_(i9, i10, i11) | 0; STACKTOP = i17; return i16 | 0; } function __ZN4wasm22SExpressionWasmBuilder14stringToBinaryEPKcjRNSt3__26vectorIcNS3_9allocatorIcEEEE(i2, i1, i3, i5) { i2 = i2 | 0; i1 = i1 | 0; i3 = i3 | 0; i5 = i5 | 0; var i4 = 0; i4 = i5 + 4 | 0; i2 = (HEAP32[i4 >> 2] | 0) - (HEAP32[i5 >> 2] | 0) | 0; __ZNSt3__26vectorIcNS_9allocatorIcEEE6resizeEj(i5, i2 + i3 | 0); i3 = (HEAP32[i5 >> 2] | 0) + i2 | 0; L1 : while (1) { i2 = HEAP8[i1 >> 0] | 0; L3 : do switch (i2 << 24 >> 24) { case 0: break L1; case 92: { i2 = HEAP8[i1 + 1 >> 0] | 0; switch (i2 << 24 >> 24) { case 34: { HEAP8[i3 >> 0] = 34; i1 = i1 + 2 | 0; break L3; } case 39: { HEAP8[i3 >> 0] = 39; i1 = i1 + 2 | 0; break L3; } case 92: { HEAP8[i3 >> 0] = 92; i1 = i1 + 2 | 0; break L3; } case 110: { HEAP8[i3 >> 0] = 10; i1 = i1 + 2 | 0; break L3; } case 116: { HEAP8[i3 >> 0] = 9; i1 = i1 + 2 | 0; break L3; } default: { i2 = ((__ZN4wasm5unhexEc(i2) | 0) << 4) + (__ZN4wasm5unhexEc(HEAP8[i1 + 2 >> 0] | 0) | 0) & 255; HEAP8[i3 >> 0] = i2; i1 = i1 + 3 | 0; break L3; } } } default: { HEAP8[i3 >> 0] = i2; i1 = i1 + 1 | 0; } } while (0); i3 = i3 + 1 | 0; } i1 = HEAP32[i5 >> 2] | 0; i2 = i1; if (i3 >>> 0 < i1 >>> 0) ___assert_fail(17354, 17152, 1302, 17375); i1 = i3 - i2 | 0; if (i1 >>> 0 > ((HEAP32[i4 >> 2] | 0) - i2 | 0) >>> 0) ___assert_fail(17390, 17152, 1304, 17375); else { __ZNSt3__26vectorIcNS_9allocatorIcEEE6resizeEj(i5, i1); return; } } function __ZN4wasm17WasmBinaryBuilder8getInt16Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i4; i3 = i1 + 12 | 0; if (HEAP8[i3 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i6 = (__ZN4wasm17WasmBinaryBuilder7getInt8Ev(i1) | 0) & 255; i1 = ((__ZN4wasm17WasmBinaryBuilder7getInt8Ev(i1) | 0) & 255) << 8 | i6; if (HEAP8[i3 >> 0] | 0) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18956) | 0, i1) | 0, 18951) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; } STACKTOP = i4; return i1 & 65535 | 0; } function __ZN4wasm17WasmBinaryBuilder8getInt32Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i4; i3 = i1 + 12 | 0; if (HEAP8[i3 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i6 = (__ZN4wasm17WasmBinaryBuilder8getInt16Ev(i1) | 0) & 65535; i1 = ((__ZN4wasm17WasmBinaryBuilder8getInt16Ev(i1) | 0) & 65535) << 16 | i6; if (HEAP8[i3 >> 0] | 0) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18940) | 0, i1) | 0, 18951) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; } STACKTOP = i4; return i1 | 0; } function __ZN4wasm13WasmValidator17visitCallIndirectEPNS_12CallIndirectE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i7 + 4 | 0; i9 = i7; i8 = HEAP32[i2 + 20 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i3 + 24 >> 2]; HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; i1 = __ZN4wasm6Module17checkFunctionTypeENS_4NameE(i8, i1) | 0; L1 : do if (__ZN4wasm13WasmValidator12shouldBeTrueIPNS_12CallIndirectEEEbbT_PKc(i2, (i1 | 0) != 0, i3, 15403) | 0 ? (__ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_12CallIndirectENS_8WasmTypeEEEbT0_S5_T_PKc(i2, HEAP32[(HEAP32[i3 + 28 >> 2] | 0) + 4 >> 2] | 0, 1, i3, 15433) | 0, i4 = i3 + 8 | 0, i5 = i3 + 16 | 0, i6 = i1 + 8 | 0, __ZN4wasm13WasmValidator12shouldBeTrueIPNS_12CallIndirectEEEbbT_PKc(i2, (HEAP32[i5 >> 2] | 0) == ((HEAP32[i1 + 12 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) >> 2 | 0), i3, 15299) | 0) : 0) { i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break L1; i9 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i1) | 0; if (!(__ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_12CallIndirectENS_8WasmTypeEEEbT0_S5_T_PKc(i2, HEAP32[(HEAP32[i9 >> 2] | 0) + 4 >> 2] | 0, HEAP32[(HEAP32[i6 >> 2] | 0) + (i1 << 2) >> 2] | 0, i3, 15328) | 0)) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 15356) | 0, i1) | 0, 15370) | 0; i1 = i1 + 1 | 0; } } while (0); STACKTOP = i7; return; } function __ZN4wasm22SExpressionWasmBuilder8getLabelERNS_7ElementE(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i1 = i8 + 12 | 0; i7 = i8; do if (!(HEAP8[i4 + 24 >> 0] | 0)) { i5 = __ZN4wasm7Element5c_strEv(i4) | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, i5, _strlen(i5) | 0); i5 = __ZNSt3__25stollERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPji(i1, 0, 0) | 0; i6 = tempRet0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); i1 = HEAP32[i3 + 68 >> 2] | 0; i2 = (HEAP32[i3 + 72 >> 2] | 0) - i1 >> 2; if (i6 >>> 0 > 0 | (i6 | 0) == 0 & i5 >>> 0 > i2 >>> 0) { i8 = ___cxa_allocate_exception(20) | 0; HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, 18331, 13); i5 = HEAP32[i4 + 28 >> 2] | 0; i6 = HEAP32[i4 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i8, i7); HEAP32[i8 + 12 >> 2] = i5; HEAP32[i8 + 16 >> 2] = i6; ___cxa_throw(i8 | 0, 8, 154); } if ((i5 | 0) == (i2 | 0) & (i6 | 0) == 0) { HEAP8[i3 + 80 >> 0] = 1; i1 = HEAP32[11459] | 0; break; } else { i7 = _i64Subtract(i2 + -1 | 0, 0, i5 | 0, i6 | 0) | 0; i1 = HEAP32[i1 + (i7 << 2) >> 2] | 0; break; } } else i1 = __ZN4wasm7Element3strEv(i4) | 0; while (0); STACKTOP = i8; return i1 | 0; } function __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i7, i11, i2, i3, i8) { i10 = i10 | 0; i7 = i7 | 0; i11 = i11 | 0; i2 = i2 | 0; i3 = i3 | 0; i8 = i8 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i12; i1 = HEAP32[i10 >> 2] | 0; L1 : do if (!i1) i1 = 0; else { i5 = i7; i4 = i2 - i5 | 0; i6 = i3 + 12 | 0; i3 = HEAP32[i6 >> 2] | 0; i3 = (i3 | 0) > (i4 | 0) ? i3 - i4 | 0 : 0; i4 = i11; i5 = i4 - i5 | 0; if ((i5 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i7, i5) | 0) != (i5 | 0) : 0) { HEAP32[i10 >> 2] = 0; i1 = 0; break; } do if ((i3 | 0) > 0) { HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; HEAP32[i9 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEjc(i9, i3, i8); if ((FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, (HEAP8[i9 + 11 >> 0] | 0) < 0 ? HEAP32[i9 >> 2] | 0 : i9, i3) | 0) == (i3 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9); break; } else { HEAP32[i10 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i9); i1 = 0; break L1; } } while (0); i2 = i2 - i4 | 0; if ((i2 | 0) > 0 ? (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 48 >> 2] & 31](i1, i11, i2) | 0) != (i2 | 0) : 0) { HEAP32[i10 >> 2] = 0; i1 = 0; break; } HEAP32[i6 >> 2] = 0; } while (0); STACKTOP = i12; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder8getInt64Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i5; i4 = i1 + 12 | 0; if (HEAP8[i4 >> 0] | 0) { i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18936) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i3, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i3) | 0; } i3 = __ZN4wasm17WasmBinaryBuilder8getInt32Ev(i1) | 0; i1 = __ZN4wasm17WasmBinaryBuilder8getInt32Ev(i1) | 0; if (HEAP8[i4 >> 0] | 0) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEy(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21238) | 0, i3, i1) | 0, 18951) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; } tempRet0 = i1; STACKTOP = i5; return i3 | 0; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE10visitBreakEPNS_5BreakE(i12, i11, i10) { i12 = i12 | 0; i11 = i11 | 0; i10 = i10 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i13; i8 = i10 + 8 | 0; i1 = HEAP32[i10 + 12 >> 2] | 0; if (i1) { __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i3, i11, i1); i2 = HEAP32[i3 >> 2] | 0; i4 = HEAP32[i3 + 4 >> 2] | 0; i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i6 = HEAP32[i6 + 4 >> 2] | 0; i1 = HEAP32[i3 + 16 >> 2] | 0; if (!i1) { i7 = i2; i3 = i6; i9 = 4; } else { HEAP32[i12 >> 2] = i2; HEAP32[i12 + 4 >> 2] = i4; i11 = i12 + 8 | 0; HEAP32[i11 >> 2] = i5; HEAP32[i11 + 4 >> 2] = i6; HEAP32[i12 + 16 >> 2] = i1; } } else { i7 = 0; i4 = 0; i5 = 0; i3 = 0; i9 = 4; } do if ((i9 | 0) == 4) { i2 = HEAP32[i8 >> 2] | 0; i1 = HEAP32[i10 + 16 >> 2] | 0; if (i1 | 0) { __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i12, i11, i1); i1 = i12 + 16 | 0; if (HEAP32[i1 >> 2] | 0) break; i11 = __ZN4wasm7Literal10getIntegerEv(i12) | 0; if ((i11 | 0) == 0 & (tempRet0 | 0) == 0) { HEAP32[i12 >> 2] = 0; i12 = i12 + 8 | 0; HEAP32[i12 >> 2] = 0; HEAP32[i12 + 4 >> 2] = 0; HEAP32[i1 >> 2] = 0; break; } } HEAP32[i12 >> 2] = i7; HEAP32[i12 + 4 >> 2] = i4; i11 = i12 + 8 | 0; HEAP32[i11 >> 2] = i5; HEAP32[i11 + 4 >> 2] = i3; HEAP32[i12 + 16 >> 2] = i2; } while (0); STACKTOP = i13; return; } function __ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwm(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 128 | 0; i7 = i1; i11 = i1 + 112 | 0; i12 = i1 + 100 | 0; i6 = i1 + 16 | 0; i10 = i1 + 12 | 0; i9 = i1 + 4 | 0; i8 = i1 + 8 | 0; HEAP8[i11 >> 0] = HEAP8[39070] | 0; HEAP8[i11 + 1 >> 0] = HEAP8[39071] | 0; HEAP8[i11 + 2 >> 0] = HEAP8[39072] | 0; HEAP8[i11 + 3 >> 0] = HEAP8[39073] | 0; HEAP8[i11 + 4 >> 0] = HEAP8[39074] | 0; HEAP8[i11 + 5 >> 0] = HEAP8[39075] | 0; __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i11 + 1 | 0, 43576, 0, HEAP32[i3 + 4 >> 2] | 0); i13 = __ZNSt3__26__clocEv() | 0; HEAP32[i7 >> 2] = i5; i5 = i12 + (__ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i12, 12, i13, i11, i7) | 0) | 0; i11 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i12, i5, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i7 >> 2] = i13; __ZNSt3__29__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6localeE(i12, i11, i5, i6, i10, i9, i7); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i7 >> 2] | 0) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; i2 = HEAP32[i10 >> 2] | 0; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i8 >> 2]; i5 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i7, i6, i2, i5, i3, i4) | 0; STACKTOP = i1; return i5 | 0; } function __ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwl(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 128 | 0; i7 = i1; i11 = i1 + 122 | 0; i12 = i1 + 108 | 0; i6 = i1 + 16 | 0; i10 = i1 + 12 | 0; i9 = i1 + 4 | 0; i8 = i1 + 8 | 0; HEAP8[i11 >> 0] = HEAP8[39070] | 0; HEAP8[i11 + 1 >> 0] = HEAP8[39071] | 0; HEAP8[i11 + 2 >> 0] = HEAP8[39072] | 0; HEAP8[i11 + 3 >> 0] = HEAP8[39073] | 0; HEAP8[i11 + 4 >> 0] = HEAP8[39074] | 0; HEAP8[i11 + 5 >> 0] = HEAP8[39075] | 0; __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i11 + 1 | 0, 43576, 1, HEAP32[i3 + 4 >> 2] | 0); i13 = __ZNSt3__26__clocEv() | 0; HEAP32[i7 >> 2] = i5; i5 = i12 + (__ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i12, 13, i13, i11, i7) | 0) | 0; i11 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i12, i5, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i7 >> 2] = i13; __ZNSt3__29__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6localeE(i12, i11, i5, i6, i10, i9, i7); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i7 >> 2] | 0) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; i2 = HEAP32[i10 >> 2] | 0; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i8 >> 2]; i5 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i7, i6, i2, i5, i3, i4) | 0; STACKTOP = i1; return i5 | 0; } function __ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcm(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i7 = i1; i11 = i1 + 52 | 0; i12 = i1 + 40 | 0; i6 = i1 + 16 | 0; i10 = i1 + 12 | 0; i9 = i1 + 4 | 0; i8 = i1 + 8 | 0; HEAP8[i11 >> 0] = HEAP8[39070] | 0; HEAP8[i11 + 1 >> 0] = HEAP8[39071] | 0; HEAP8[i11 + 2 >> 0] = HEAP8[39072] | 0; HEAP8[i11 + 3 >> 0] = HEAP8[39073] | 0; HEAP8[i11 + 4 >> 0] = HEAP8[39074] | 0; HEAP8[i11 + 5 >> 0] = HEAP8[39075] | 0; __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i11 + 1 | 0, 43576, 0, HEAP32[i3 + 4 >> 2] | 0); i13 = __ZNSt3__26__clocEv() | 0; HEAP32[i7 >> 2] = i5; i5 = i12 + (__ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i12, 12, i13, i11, i7) | 0) | 0; i11 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i12, i5, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i7 >> 2] = i13; __ZNSt3__29__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i12, i11, i5, i6, i10, i9, i7); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i7 >> 2] | 0) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; i2 = HEAP32[i10 >> 2] | 0; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i8 >> 2]; i5 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i7, i6, i2, i5, i3, i4) | 0; STACKTOP = i1; return i5 | 0; } function __ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcl(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i7 = i1; i11 = i1 + 52 | 0; i12 = i1 + 39 | 0; i6 = i1 + 16 | 0; i10 = i1 + 12 | 0; i9 = i1 + 4 | 0; i8 = i1 + 8 | 0; HEAP8[i11 >> 0] = HEAP8[39070] | 0; HEAP8[i11 + 1 >> 0] = HEAP8[39071] | 0; HEAP8[i11 + 2 >> 0] = HEAP8[39072] | 0; HEAP8[i11 + 3 >> 0] = HEAP8[39073] | 0; HEAP8[i11 + 4 >> 0] = HEAP8[39074] | 0; HEAP8[i11 + 5 >> 0] = HEAP8[39075] | 0; __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i11 + 1 | 0, 43576, 1, HEAP32[i3 + 4 >> 2] | 0); i13 = __ZNSt3__26__clocEv() | 0; HEAP32[i7 >> 2] = i5; i5 = i12 + (__ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i12, 13, i13, i11, i7) | 0) | 0; i11 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i12, i5, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i7 >> 2] = i13; __ZNSt3__29__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i12, i11, i5, i6, i10, i9, i7); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i7 >> 2] | 0) | 0; HEAP32[i8 >> 2] = HEAP32[i2 >> 2]; i2 = HEAP32[i10 >> 2] | 0; i5 = HEAP32[i9 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i8 >> 2]; i5 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i7, i6, i2, i5, i3, i4) | 0; STACKTOP = i1; return i5 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSJ_IJEEEEEENS_4pairINS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEEbEERKT_DpOT0_(i9, i3, i1, i4, i5, i6) { i9 = i9 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i2 = 0, i7 = 0, i8 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i10 + 12 | 0; i8 = i10; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESK_RKT_(i3, i7, i1) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__construct_nodeIJRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSJ_IJEEEEEENS_10unique_ptrINS_11__tree_nodeIS7_PvEENS_22__tree_node_destructorINSC_ISR_EEEEEEDpOT_(i8, i3, i4, i5, i6); __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i3, HEAP32[i7 >> 2] | 0, i2, HEAP32[i8 >> 2] | 0); i1 = HEAP32[i8 >> 2] | 0; i2 = 1; } else i2 = 0; HEAP32[i9 >> 2] = i1; HEAP8[i9 + 4 >> 0] = i2; STACKTOP = i10; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterBraceERPc(i4, i7) { i4 = i4 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i9 + 12 | 0; i2 = i9 + 8 | 0; i5 = i9 + 4 | 0; i6 = i9; __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i4, (((HEAP32[i4 + 4 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) | 0) / 12 | 0) + 1 | 0); i8 = __ZN6cashew12ValueBuilder9makeArrayEv() | 0; L1 : while (1) { __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7); i1 = HEAP32[i7 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 0: { i2 = 3; break L1; } case 93: { i2 = 7; break L1; } default: {} } i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i4, i7, 29537) | 0; HEAP32[i5 >> 2] = i8; HEAP32[i6 >> 2] = i1; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; __ZN6cashew12ValueBuilder13appendToArrayENS_3RefES1_(i2, i3); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7); i1 = HEAP32[i7 >> 2] | 0; switch (HEAP8[i1 >> 0] | 0) { case 93: { i2 = 7; break L1; } case 44: break; default: { i2 = 6; break L1; } } HEAP32[i7 >> 2] = i1 + 1; } if ((i2 | 0) == 3) ___assert_fail(29516, 28546, 674, 29521); else if ((i2 | 0) == 6) _abort(); else if ((i2 | 0) == 7) { HEAP32[i7 >> 2] = i1 + 1; STACKTOP = i9; return i8 | 0; } return 0; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEj(i7, i1) { i7 = i7 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0; if (i1 >>> 0 > 1073741807) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i7); i9 = i7 + 8 | 0; i6 = i9 + 3 | 0; i3 = HEAP8[i6 >> 0] | 0; i4 = i3 << 24 >> 24 < 0; if (i4) { i8 = HEAP32[i7 + 4 >> 2] | 0; i2 = (HEAP32[i9 >> 2] & 2147483647) + -1 | 0; } else { i8 = i3 & 255; i2 = 1; } i5 = i8 >>> 0 > i1 >>> 0 ? i8 : i1; i1 = i5 >>> 0 < 2; i5 = i1 ? 1 : (i5 + 4 & -4) + -1 | 0; do if ((i5 | 0) != (i2 | 0)) { do if (i1) { i1 = HEAP32[i7 >> 2] | 0; if (i4) { i4 = 0; i2 = i1; i1 = i7; i3 = 15; } else { __ZNSt3__211char_traitsIwE4copyEPwPKwj(i7, i1, (i3 & 255) + 1 | 0) | 0; __ZdlPv(i1); i3 = 17; } } else { i1 = i5 + 1 | 0; if (i1 >>> 0 > 1073741823) ___assert_fail(41459, 41496, 1734, 41599); i1 = __Znwj(i1 << 2) | 0; if (i4) { i4 = 1; i2 = HEAP32[i7 >> 2] | 0; i3 = 15; break; } else { __ZNSt3__211char_traitsIwE4copyEPwPKwj(i1, i7, (i3 & 255) + 1 | 0) | 0; i3 = 16; break; } } while (0); if ((i3 | 0) == 15) { __ZNSt3__211char_traitsIwE4copyEPwPKwj(i1, i2, (HEAP32[i7 + 4 >> 2] | 0) + 1 | 0) | 0; __ZdlPv(i2); if (i4) i3 = 16; else i3 = 17; } if ((i3 | 0) == 16) { HEAP32[i9 >> 2] = i5 + 1 | -2147483648; HEAP32[i7 + 4 >> 2] = i8; HEAP32[i7 >> 2] = i1; break; } else if ((i3 | 0) == 17) { HEAP8[i6 >> 0] = i8; break; } } while (0); return; } function __ZN4wasm17WasmBinaryBuilder17visitCallIndirectEPNS_12CallIndirectE(i7, i8) { i7 = i7 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i9; if (HEAP8[i7 + 12 >> 0] | 0) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20432) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; } i2 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i7) | 0; i3 = HEAP32[i7 >> 2] | 0; i3 = __ZN4wasm6Module15getFunctionTypeEj(i3, __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i7) | 0) | 0; HEAP32[i8 + 24 >> 2] = HEAP32[i3 >> 2]; if (((HEAP32[i3 + 12 >> 2] | 0) - (HEAP32[i3 + 8 >> 2] | 0) >> 2 | 0) != (i2 | 0)) ___assert_fail(20316, 18854, 1889, 20454); i4 = i8 + 8 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE6resizeEj(i4, i2); i5 = i2 + -1 | 0; i1 = 0; while (1) { i6 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i7) | 0; if ((i1 | 0) == (i2 | 0)) break; i10 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i5 - i1 | 0) | 0; HEAP32[i10 >> 2] = i6; i1 = i1 + 1 | 0; } HEAP32[i8 + 28 >> 2] = i6; HEAP32[i8 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; STACKTOP = i9; return; } function __ZN4wasm34OptimizingIncrementalModuleBuilderC2EPNS_6ModuleEj(i7, i1, i6) { i7 = i7 | 0; i1 = i1 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; HEAP32[i7 >> 2] = i1; HEAP32[i7 + 4 >> 2] = i6; HEAP32[i7 + 16 >> 2] = 0; HEAP32[i7 + 24 >> 2] = 0; HEAP32[i7 + 28 >> 2] = 0; HEAP32[i7 + 32 >> 2] = 0; i1 = i7 + 52 | 0; i3 = i1; i5 = i3 + 76 | 0; do { HEAP32[i3 >> 2] = 0; i3 = i3 + 4 | 0; } while ((i3 | 0) < (i5 | 0)); HEAP8[i1 + 76 >> 0] = 0; i4 = __Znwj(64) | 0; HEAP32[i4 + 40 >> 2] = 0; HEAP32[i4 + 44 >> 2] = 0; HEAP32[i4 + 48 >> 2] = 0; i1 = i4 + 52 | 0; i2 = i4 + 56 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i4 + 60 >> 2] = 0; i3 = i4; i5 = i3 + 36 | 0; do { HEAP32[i3 >> 2] = 0; i3 = i3 + 4 | 0; } while ((i3 | 0) < (i5 | 0)); HEAP32[i1 >> 2] = i2; i3 = i7 + 8 | 0; HEAP32[i3 >> 2] = i4; i1 = __Znaj(i6 >>> 0 > 1073741823 ? -1 : i6 << 2) | 0; i2 = i7 + 12 | 0; HEAP32[i2 >> 2] = i1; i1 = 0; while (1) { if ((i1 | 0) == (i6 | 0)) break; HEAP32[(HEAP32[i2 >> 2] | 0) + (i1 << 2) >> 2] = HEAP32[i3 >> 2]; i1 = i1 + 1 | 0; } i6 = __ZN4wasm10ThreadPool11getNumCoresEv() | 0; i2 = i7 + 20 | 0; HEAP32[i2 >> 2] = i6; if (!i6) ___assert_fail(14032, 14048, 99, 14075); HEAP32[i7 + 36 >> 2] = 0; HEAP32[i7 + 40 >> 2] = 0; i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i2 >> 2] | 0) >>> 0) break; __ZN4wasm34OptimizingIncrementalModuleBuilder12createWorkerEv(i7); i1 = i1 + 1 | 0; } __ZN4wasm34OptimizingIncrementalModuleBuilder17waitUntilAllReadyEv(i7); HEAP32[i7 + 44 >> 2] = 0; HEAP32[i7 + 48 >> 2] = 0; return; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner9visitCallEPNS_4CallE(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i1 = i9 + 56 | 0; i5 = i9 + 44 | 0; i6 = i9 + 16 | 0; i7 = i9; i8 = i9 + 40 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner17generateArgumentsERK11ArenaVectorIPNS_10ExpressionEES9_(i6, i3, i4 + 8 | 0, i5); if (!(HEAP32[i6 + 16 >> 2] | 0)) { i6 = HEAP32[i3 + 4 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i4 + 24 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; __ZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i7, i6, i1, i5); HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i7 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = 0; } else { HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i6 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i6 + 12 >> 2]; HEAP32[i2 + 16 >> 2] = HEAP32[i6 + 16 >> 2]; HEAP32[i2 + 20 >> 2] = HEAP32[i6 + 20 >> 2]; } __ZNSt3__213__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i5); STACKTOP = i9; return; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj(i6, i1, i2) { i6 = i6 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i10 + 12 | 0; i4 = i10 + 8 | 0; i8 = i10 + 4 | 0; i9 = i10; i5 = HEAP32[i1 >> 2] | 0; i3 = HEAP32[i2 >> 2] | 0; HEAP32[i9 >> 2] = i5; i1 = HEAP32[i6 + 4 >> 2] | 0; i2 = i5; switch ((__ZN6cashew5Value4sizeEv(i2) | 0) - i3 | 0) { case 0: { i1 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; break; } case 1: { i1 = HEAP32[i6 + 8 >> 2] | 0; i9 = __ZN6cashew3RefixEj(i9, i3) | 0; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; i1 = __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i7) | 0; break; } default: { i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i5 = i1 + 12 | 0; i4 = i6 + 8 | 0; while (1) { if (i3 >>> 0 >= (__ZN6cashew5Value4sizeEv(i2) | 0) >>> 0) break; i2 = HEAP32[i4 >> 2] | 0; i6 = __ZN6cashew3RefixEj(i9, i3) | 0; HEAP32[i8 >> 2] = HEAP32[i6 >> 2]; HEAP32[i7 >> 2] = HEAP32[i8 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i5, __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i2, i7) | 0); i3 = i3 + 1 | 0; i2 = HEAP32[i9 >> 2] | 0; } __ZN4wasm5Block8finalizeEv(i1); } } STACKTOP = i10; return i1 | 0; } function ___dynamic_cast(i1, i2, i11, i3) { i1 = i1 | 0; i2 = i2 | 0; i11 = i11 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i12 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i12 = i14; i10 = HEAP32[i1 >> 2] | 0; i13 = i1 + (HEAP32[i10 + -8 >> 2] | 0) | 0; i10 = HEAP32[i10 + -4 >> 2] | 0; HEAP32[i12 >> 2] = i11; HEAP32[i12 + 4 >> 2] = i1; HEAP32[i12 + 8 >> 2] = i2; HEAP32[i12 + 12 >> 2] = i3; i1 = i12 + 16 | 0; i2 = i12 + 20 | 0; i3 = i12 + 24 | 0; i4 = i12 + 28 | 0; i5 = i12 + 32 | 0; i6 = i12 + 40 | 0; i7 = (i10 | 0) == (i11 | 0); i8 = i1; i9 = i8 + 36 | 0; do { HEAP32[i8 >> 2] = 0; i8 = i8 + 4 | 0; } while ((i8 | 0) < (i9 | 0)); HEAP16[i1 + 36 >> 1] = 0; HEAP8[i1 + 38 >> 0] = 0; L1 : do if (i7) { HEAP32[i12 + 48 >> 2] = 1; FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 20 >> 2] & 15](i11, i12, i13, i13, 1, 0); i1 = (HEAP32[i3 >> 2] | 0) == 1 ? i13 : 0; } else { FUNCTION_TABLE_viiiii[HEAP32[(HEAP32[i10 >> 2] | 0) + 24 >> 2] & 3](i10, i12, i13, 1, 0); switch (HEAP32[i12 + 36 >> 2] | 0) { case 0: { i1 = (HEAP32[i6 >> 2] | 0) == 1 & (HEAP32[i4 >> 2] | 0) == 1 & (HEAP32[i5 >> 2] | 0) == 1 ? HEAP32[i2 >> 2] | 0 : 0; break L1; } case 1: break; default: { i1 = 0; break L1; } } if ((HEAP32[i3 >> 2] | 0) != 1 ? !((HEAP32[i6 >> 2] | 0) == 0 & (HEAP32[i4 >> 2] | 0) == 1 & (HEAP32[i5 >> 2] | 0) == 1) : 0) { i1 = 0; break; } i1 = HEAP32[i1 >> 2] | 0; } while (0); STACKTOP = i14; return i1 | 0; } function __ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1, i3, i8, i12, i13, i14) { i1 = i1 | 0; i3 = i3 | 0; i8 = i8 | 0; i12 = i12 | 0; i13 = i13 | 0; i14 = i14 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i15 = 0; if ((i1 | 0) == (HEAP32[i3 + 8 >> 2] | 0)) __ZNK10__cxxabiv117__class_type_info29process_static_type_above_dstEPNS_19__dynamic_cast_infoEPKvS4_i(0, i3, i8, i12, i13); else { i15 = i3 + 52 | 0; i6 = HEAP16[i15 >> 1] | 0; i4 = i6 & 255; i5 = i3 + 53 | 0; i6 = (i6 & 65535) >>> 8 & 255; i11 = HEAP32[i1 + 12 >> 2] | 0; i7 = i1 + 16 + (i11 << 3) | 0; HEAP8[i15 >> 0] = 0; HEAP8[i5 >> 0] = 0; __ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1 + 16 | 0, i3, i8, i12, i13, i14); L4 : do if ((i11 | 0) > 1) { i9 = i3 + 24 | 0; i10 = i1 + 8 | 0; i11 = i3 + 54 | 0; i1 = i1 + 24 | 0; do { if (HEAP8[i11 >> 0] | 0) break L4; i2 = HEAP16[i15 >> 1] | 0; if (!((i2 & 255) << 24 >> 24)) { if ((i2 & 65535) >= 256 ? (HEAP32[i10 >> 2] & 1 | 0) == 0 : 0) break L4; } else { if ((HEAP32[i9 >> 2] | 0) == 1) break L4; if (!(HEAP32[i10 >> 2] & 2)) break L4; } HEAP8[i15 >> 0] = 0; HEAP8[i5 >> 0] = 0; __ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1, i3, i8, i12, i13, i14); i1 = i1 + 8 | 0; } while (i1 >>> 0 < i7 >>> 0); } while (0); HEAP8[i15 >> 0] = i4; HEAP8[i5 >> 0] = i6; } return; } function __ZN4wasm17WasmBinaryBuilder11visitSwitchEPNS_6SwitchE(i6, i7) { i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i9 + 4 | 0; i8 = i9; if (HEAP8[i6 + 12 >> 0] | 0) { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20235) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; } i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i6) | 0; if ((i1 | 1 | 0) != 1) ___assert_fail(20135, 18854, 1840, 20251); i4 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i6) | 0; HEAP32[i7 + 28 >> 2] = i4; if ((i1 | 0) == 1) { i4 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i6) | 0; HEAP32[i7 + 32 >> 2] = i4; } i2 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i6) | 0; i3 = i7 + 8 | 0; i1 = 0; while (1) { i4 = __ZN4wasm17WasmBinaryBuilder12getBreakNameEi(i6, __ZN4wasm17WasmBinaryBuilder8getInt32Ev(i6) | 0) | 0; if ((i1 | 0) == (i2 | 0)) break; HEAP32[i8 >> 2] = i4; HEAP32[i5 >> 2] = HEAP32[i8 >> 2]; __ZN11ArenaVectorIN4wasm4NameEE9push_backES1_(i3, i5); i1 = i1 + 1 | 0; } HEAP32[i7 + 24 >> 2] = i4; STACKTOP = i9; return; } function _vfprintf(i15, i8, i1) { i15 = i15 | 0; i8 = i8 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i16 = 0; i16 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i10 = i16 + 120 | 0; i12 = i16 + 80 | 0; i13 = i16; i14 = i16 + 136 | 0; i2 = i12; i3 = i2 + 40 | 0; do { HEAP32[i2 >> 2] = 0; i2 = i2 + 4 | 0; } while ((i2 | 0) < (i3 | 0)); HEAP32[i10 >> 2] = HEAP32[i1 >> 2]; if ((_printf_core(0, i8, i10, i13, i12) | 0) < 0) i1 = -1; else { if ((HEAP32[i15 + 76 >> 2] | 0) > -1) i11 = ___lockfile(i15) | 0; else i11 = 0; i1 = HEAP32[i15 >> 2] | 0; i9 = i1 & 32; if ((HEAP8[i15 + 74 >> 0] | 0) < 1) HEAP32[i15 >> 2] = i1 & -33; i2 = i15 + 48 | 0; if (!(HEAP32[i2 >> 2] | 0)) { i3 = i15 + 44 | 0; i4 = HEAP32[i3 >> 2] | 0; HEAP32[i3 >> 2] = i14; i5 = i15 + 28 | 0; HEAP32[i5 >> 2] = i14; i6 = i15 + 20 | 0; HEAP32[i6 >> 2] = i14; HEAP32[i2 >> 2] = 80; i7 = i15 + 16 | 0; HEAP32[i7 >> 2] = i14 + 80; i1 = _printf_core(i15, i8, i10, i13, i12) | 0; if (i4) { FUNCTION_TABLE_iiii[HEAP32[i15 + 36 >> 2] & 31](i15, 0, 0) | 0; i1 = (HEAP32[i6 >> 2] | 0) == 0 ? -1 : i1; HEAP32[i3 >> 2] = i4; HEAP32[i2 >> 2] = 0; HEAP32[i7 >> 2] = 0; HEAP32[i5 >> 2] = 0; HEAP32[i6 >> 2] = 0; } } else i1 = _printf_core(i15, i8, i10, i13, i12) | 0; i2 = HEAP32[i15 >> 2] | 0; HEAP32[i15 >> 2] = i2 | i9; if (i11 | 0) ___unlockfile(i15); i1 = (i2 & 32 | 0) == 0 ? i1 : -1; } STACKTOP = i16; return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder11parseExportERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i5; i6 = (__ZN4wasm7ElementixEj(i2, 2) | 0) + 24 | 0; do if ((HEAP8[i6 >> 0] | 0) == 0 ? (i6 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 2) | 0) | 0, ((HEAP8[i6 >> 0] | 0) + -48 | 0) >>> 0 >= 10) : 0) { i6 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 2) | 0) | 0; if ((i6 | 0) != (HEAP32[11439] | 0)) ___assert_fail(18709, 17152, 1339, 18731); if (!(HEAP8[i1 + 81 >> 0] | 0)) { i6 = ___cxa_allocate_exception(20) | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 18743, 29); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i6, i3); ___cxa_throw(i6 | 0, 8, 154); } else { i6 = (HEAP32[i1 >> 2] | 0) + 92 | 0; i3 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i6 >> 2] = i3; break; } } else i4 = 8; while (0); if ((i4 | 0) == 8) { i6 = __ZN4wasm11make_uniqueINS_6ExportEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() | 0; i4 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 2) | 0) | 0; HEAP32[i6 + 4 >> 2] = i4; __ZN4wasm6Module9addExportEPNS_6ExportE(HEAP32[i1 >> 2] | 0, i6); } STACKTOP = i5; return; } function __ZN4wasm13WasmValidator15shouldBeUnequalINS_4NameENS_8WasmTypeEEEbT0_S4_T_PKc(i2, i3, i4, i5, i6) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i8 + 4 | 0; i7 = i8; if ((i3 | 0) == (i4 | 0)) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i2) | 0, 53494) | 0, i3) | 0, 14758) | 0, i3) | 0, 14763) | 0, i6) | 0, 14766) | 0; HEAP32[i7 >> 2] = HEAP32[i5 >> 2]; HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; i7 = __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i6, i1) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; HEAP8[i2 + 24 >> 0] = 0; i1 = 0; } else i1 = 1; STACKTOP = i8; return i1 | 0; } function __ZNSt3__211__stdoutbufIwE8overflowEj(i1, i9) { i1 = i1 | 0; i9 = i9 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i10 = i14 + 16 | 0; i3 = i14 + 8 | 0; i11 = i14 + 4 | 0; i12 = i14; i13 = (i9 | 0) == -1; do if (!i13) { HEAP32[i3 >> 2] = i9; if (HEAP8[i1 + 44 >> 0] | 0) if ((_fwrite(i3, 4, 1, HEAP32[i1 + 32 >> 2] | 0) | 0) == 1) { i2 = 14; break; } else { i1 = -1; break; } HEAP32[i11 >> 2] = i10; i2 = i3 + 4 | 0; i4 = i1 + 36 | 0; i5 = i1 + 40 | 0; i6 = i10 + 8 | 0; i7 = i10; i8 = i1 + 32 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; i1 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 12 >> 2] & 15](i1, HEAP32[i5 >> 2] | 0, i3, i2, i12, i10, i6, i11) | 0; if ((HEAP32[i12 >> 2] | 0) == (i3 | 0)) { i2 = 13; break; } if ((i1 | 0) == 3) { i2 = 7; break; } if ((i1 | 1 | 0) != 1) { i2 = 13; break; } i3 = (HEAP32[i11 >> 2] | 0) - i7 | 0; if ((_fwrite(i10, 1, i3, HEAP32[i8 >> 2] | 0) | 0) != (i3 | 0)) { i2 = 13; break; } if ((i1 | 0) == 1) i3 = HEAP32[i12 >> 2] | 0; else { i2 = 12; break; } } if ((i2 | 0) == 7) if ((_fwrite(i3, 1, 1, HEAP32[i8 >> 2] | 0) | 0) == 1) i2 = 12; else i2 = 13; if ((i2 | 0) == 12) { i2 = 14; break; } else if ((i2 | 0) == 13) { i1 = -1; break; } } else i2 = 14; while (0); if ((i2 | 0) == 14) i1 = i13 ? 0 : i9; STACKTOP = i14; return i1 | 0; } function __ZNSt3__211__stdoutbufIcE8overflowEi(i1, i9) { i1 = i1 | 0; i9 = i9 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0; i14 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i10 = i14 + 16 | 0; i3 = i14 + 8 | 0; i11 = i14 + 4 | 0; i12 = i14; i13 = (i9 | 0) == -1; do if (!i13) { HEAP8[i3 >> 0] = i9; if (HEAP8[i1 + 44 >> 0] | 0) if ((_fwrite(i3, 1, 1, HEAP32[i1 + 32 >> 2] | 0) | 0) == 1) { i2 = 14; break; } else { i1 = -1; break; } HEAP32[i11 >> 2] = i10; i2 = i3 + 1 | 0; i4 = i1 + 36 | 0; i5 = i1 + 40 | 0; i6 = i10 + 8 | 0; i7 = i10; i8 = i1 + 32 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; i1 = FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 12 >> 2] & 15](i1, HEAP32[i5 >> 2] | 0, i3, i2, i12, i10, i6, i11) | 0; if ((HEAP32[i12 >> 2] | 0) == (i3 | 0)) { i2 = 13; break; } if ((i1 | 0) == 3) { i2 = 7; break; } if ((i1 | 1 | 0) != 1) { i2 = 13; break; } i3 = (HEAP32[i11 >> 2] | 0) - i7 | 0; if ((_fwrite(i10, 1, i3, HEAP32[i8 >> 2] | 0) | 0) != (i3 | 0)) { i2 = 13; break; } if ((i1 | 0) == 1) i3 = HEAP32[i12 >> 2] | 0; else { i2 = 12; break; } } if ((i2 | 0) == 7) if ((_fwrite(i3, 1, 1, HEAP32[i8 >> 2] | 0) | 0) == 1) i2 = 12; else i2 = 13; if ((i2 | 0) == 12) { i2 = 14; break; } else if ((i2 | 0) == 13) { i1 = -1; break; } } else i2 = 14; while (0); if ((i2 | 0) == 14) i1 = i13 ? 0 : i9; STACKTOP = i14; return i1 | 0; } function _mbrtowc(i2, i4, i7, i1) { i2 = i2 | 0; i4 = i4 | 0; i7 = i7 | 0; i1 = i1 | 0; var i3 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i9; i6 = (i1 | 0) == 0 ? 45924 : i1; i1 = HEAP32[i6 >> 2] | 0; L1 : do if (!i4) if (!i1) i1 = 0; else i8 = 15; else { i5 = (i2 | 0) == 0 ? i3 : i2; if (!i7) i1 = -2; else { if (!i1) { i1 = HEAP8[i4 >> 0] | 0; i2 = i1 & 255; if (i1 << 24 >> 24 > -1) { HEAP32[i5 >> 2] = i2; i1 = i1 << 24 >> 24 != 0 & 1; break; } i1 = i2 + -194 | 0; if (i1 >>> 0 > 50) { i8 = 15; break; } i1 = HEAP32[3576 + (i1 << 2) >> 2] | 0; i3 = i7 + -1 | 0; if (i3) { i4 = i4 + 1 | 0; i8 = 9; } } else { i3 = i7; i8 = 9; } L11 : do if ((i8 | 0) == 9) { i2 = HEAP8[i4 >> 0] | 0; i10 = (i2 & 255) >>> 3; if ((i10 + -16 | i10 + (i1 >> 26)) >>> 0 > 7) { i8 = 15; break L1; } while (1) { i4 = i4 + 1 | 0; i1 = (i2 & 255) + -128 | i1 << 6; i3 = i3 + -1 | 0; if ((i1 | 0) >= 0) break; if (!i3) break L11; i2 = HEAP8[i4 >> 0] | 0; if ((i2 & -64) << 24 >> 24 != -128) { i8 = 15; break L1; } } HEAP32[i6 >> 2] = 0; HEAP32[i5 >> 2] = i1; i1 = i7 - i3 | 0; break L1; } while (0); HEAP32[i6 >> 2] = i1; i1 = -2; } } while (0); if ((i8 | 0) == 15) { HEAP32[i6 >> 2] = 0; i1 = ___errno_location() | 0; HEAP32[i1 >> 2] = 84; i1 = -1; } STACKTOP = i9; return i1 | 0; } function __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE8__appendEj(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i8; i6 = HEAP32[i3 + 8 >> 2] | 0; i1 = i3 + 4 | 0; i7 = HEAP32[i1 >> 2] | 0; do if (((i6 - i7 | 0) / 12 | 0) >>> 0 < i4 >>> 0) { i1 = HEAP32[i3 >> 2] | 0; i2 = ((i7 - i1 | 0) / 12 | 0) + i4 | 0; if (i2 >>> 0 > 357913941) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i3); else { i9 = (i6 - i1 | 0) / 12 | 0; i6 = i9 << 1; __ZNSt3__214__split_bufferINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEERNS8_ISA_EEEC2EjjSC_(i5, i9 >>> 0 < 178956970 ? (i6 >>> 0 < i2 >>> 0 ? i2 : i6) : 357913941, (i7 - i1 | 0) / 12 | 0, i3 + 8 | 0); i7 = i5 + 8 | 0; i6 = HEAP32[i7 >> 2] | 0; _memset(i6 | 0, 0, i4 * 12 | 0) | 0; HEAP32[i7 >> 2] = i6 + (i4 * 12 | 0); __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS9_RSA_EE(i3, i5); __ZNSt3__214__split_bufferINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEERNS8_ISA_EEED2Ev(i5); break; } } else { _memset(i7 | 0, 0, i4 * 12 | 0) | 0; HEAP32[i1 >> 2] = i7 + (i4 * 12 | 0); } while (0); STACKTOP = i8; return; } function __ZN4wasm3LEBIxaE4readENSt3__28functionIFavEEE(i8, i6) { i8 = i8 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0; i9 = i8; HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; i9 = 0; i1 = 0; while (1) { i7 = (__ZNKSt3__28functionIFavEEclEv(i6) | 0) << 24 >> 24; i3 = i7 & 128; i5 = i7 & 127; i11 = (i1 | 0) == 0 & (i9 | 0) == 0; i2 = _i64Subtract(64, 0, i1 | 0, i9 | 0) | 0; i2 = _bitshift64Shl(1, 0, i2 | 0) | 0; i2 = _i64Add(i2 | 0, tempRet0 | 0, -1, -1) | 0; i4 = tempRet0; i2 = i11 ? -1 : i2; i2 = i5 & i2; i3 = (i3 | 0) != 0; if (i3 & ((i2 | 0) != (i5 | 0) | 0 != 0)) { i2 = 3; break; } i4 = _bitshift64Shl(i2 | 0, 0, i1 | 0) | 0; i5 = i8; i4 = HEAP32[i5 >> 2] | i4; i5 = HEAP32[i5 + 4 >> 2] | tempRet0; i11 = i8; HEAP32[i11 >> 2] = i4; HEAP32[i11 + 4 >> 2] = i5; if (!i3) { i2 = 7; break; } i1 = _i64Add(i1 | 0, i9 | 0, 7, 0) | 0; if (i1 >>> 0 < 64) i9 = tempRet0; else { i2 = 6; break; } } if ((i2 | 0) == 3) ___assert_fail(19019, 18854, 99, 18872); else if ((i2 | 0) == 6) ___assert_fail(19096, 18854, 104, 18872); else if ((i2 | 0) == 7) { if ((i7 & 64 | 0 ? (i10 = _i64Add(i1 | 0, i9 | 0, 7, 0) | 0, i10 >>> 0 < 64) : 0) ? (i9 = 64 - i10 | 0, i11 = _bitshift64Shl(i4 | 0, i5 | 0, i9 | 0) | 0, i9 = _bitshift64Ashr(i11 | 0, tempRet0 | 0, i9 | 0) | 0, i11 = tempRet0, i10 = i8, HEAP32[i10 >> 2] = i9, HEAP32[i10 + 4 >> 2] = i11, (i11 | 0) >= 0) : 0) ___assert_fail(20807, 18854, 114, 18872); return; } } function __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJiRA1_KciEEEvDpOT_(i3, i4, i7, i8) { i3 = i3 | 0; i4 = i4 | 0; i7 = i7 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i2 = i13 + 32 | 0; i1 = i13 + 28 | 0; i9 = i13 + 24 | 0; i10 = i13 + 20 | 0; i11 = i13; i12 = HEAP32[i3 + 4 >> 2] | 0; i5 = HEAP32[i3 >> 2] | 0; i6 = (i12 - i5 >> 4) + 1 | 0; if (i6 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i3); else { i15 = (HEAP32[i3 + 8 >> 2] | 0) - i5 | 0; i14 = i15 >> 3; __ZNSt3__214__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEEC2EjjS6_(i11, i15 >> 4 >>> 0 < 134217727 ? (i14 >>> 0 < i6 >>> 0 ? i6 : i14) : 268435455, i12 - i5 >> 4, i3 + 8 | 0); i12 = i11 + 8 | 0; i6 = HEAP32[i12 >> 2] | 0; i5 = HEAP32[i4 >> 2] | 0; __ZN4wasm7AddressC2Ey(i9, i5, ((i5 | 0) < 0) << 31 >> 31); i8 = HEAP32[i8 >> 2] | 0; __ZN4wasm7AddressC2Ey(i10, i8, ((i8 | 0) < 0) << 31 >> 31); HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; HEAP32[i2 >> 2] = HEAP32[i10 >> 2]; __ZN4wasm6Memory7SegmentC2ENS_7AddressEPKcS2_(i6, i1, i7, i2); HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 16; __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i3, i11); __ZNSt3__214__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEED2Ev(i11); STACKTOP = i13; return; } } function __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE(i8, i1) { i8 = i8 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = i8 + 32 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_(i6, i1) | 0; i5 = i8 + 44 | 0; HEAP32[i5 >> 2] = 0; i7 = i8 + 48 | 0; i4 = HEAP32[i7 >> 2] | 0; if (i4 & 8 | 0) { i1 = HEAP8[i6 + 11 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i1 = HEAP32[i6 >> 2] | 0; i2 = i1; i3 = i1; i1 = i1 + (HEAP32[i8 + 36 >> 2] | 0) | 0; } else { i2 = i6; i3 = i6; i1 = i6 + (i1 & 255) | 0; } HEAP32[i5 >> 2] = i1; HEAP32[i8 + 8 >> 2] = i2; HEAP32[i8 + 12 >> 2] = i3; HEAP32[i8 + 16 >> 2] = i1; } if (i4 & 16 | 0) { i2 = i6 + 11 | 0; i1 = HEAP8[i2 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i4 = HEAP32[i8 + 36 >> 2] | 0; HEAP32[i5 >> 2] = (HEAP32[i6 >> 2] | 0) + i4; i1 = (HEAP32[i8 + 40 >> 2] & 2147483647) + -1 | 0; i5 = i4; } else { i4 = i1 & 255; HEAP32[i5 >> 2] = i6 + i4; i1 = 10; i5 = i4; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i6, i1, 0); i1 = HEAP8[i2 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i2 = HEAP32[i6 >> 2] | 0; i4 = i2; i3 = HEAP32[i8 + 36 >> 2] | 0; } else { i4 = i6; i3 = i1 & 255; i2 = i6; } i1 = i8 + 24 | 0; HEAP32[i1 >> 2] = i2; HEAP32[i8 + 20 >> 2] = i2; HEAP32[i8 + 28 >> 2] = i4 + i3; if (HEAP32[i7 >> 2] & 3 | 0) HEAP32[i1 >> 2] = i2 + i5; } return; } function __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_12CallIndirectENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == 5 | (i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_10CallImportENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == 5 | (i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_8SetLocalENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == 5 | (i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder14maybeVisitHostERPNS_10ExpressionEh(i2, i3, i1) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i6; switch (i1 << 24 >> 24) { case 59: { i1 = __ZN10MixedArena5allocIN4wasm4HostEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 1; HEAP32[i1 + 4 >> 2] = 1; i5 = 4; break; } case 57: { i1 = __ZN10MixedArena5allocIN4wasm4HostEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = 2; i5 = i1 + 16 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE6resizeEj(i5, 1); i7 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i2) | 0; i5 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i5, 0) | 0; HEAP32[i5 >> 2] = i7; i5 = 4; break; } default: i1 = 0; } if ((i5 | 0) == 4) { if (HEAP8[i2 + 12 >> 0] | 0) { i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21293) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i7 + (HEAP32[(HEAP32[i7 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i4 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i4); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i7, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i7) | 0; } __ZN4wasm4Host8finalizeEv(i1); HEAP32[i3 >> 2] = i1; i1 = 1; } STACKTOP = i6; return i1 | 0; } function __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_5StoreENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == 5 | (i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJiPcjEEEvDpOT_(i3, i4, i7, i8) { i3 = i3 | 0; i4 = i4 | 0; i7 = i7 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i2 = i13 + 32 | 0; i1 = i13 + 28 | 0; i9 = i13 + 24 | 0; i10 = i13 + 20 | 0; i11 = i13; i12 = HEAP32[i3 + 4 >> 2] | 0; i5 = HEAP32[i3 >> 2] | 0; i6 = (i12 - i5 >> 4) + 1 | 0; if (i6 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i3); else { i15 = (HEAP32[i3 + 8 >> 2] | 0) - i5 | 0; i14 = i15 >> 3; __ZNSt3__214__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEEC2EjjS6_(i11, i15 >> 4 >>> 0 < 134217727 ? (i14 >>> 0 < i6 >>> 0 ? i6 : i14) : 268435455, i12 - i5 >> 4, i3 + 8 | 0); i12 = i11 + 8 | 0; i6 = HEAP32[i12 >> 2] | 0; i5 = HEAP32[i4 >> 2] | 0; __ZN4wasm7AddressC2Ey(i9, i5, ((i5 | 0) < 0) << 31 >> 31); i7 = HEAP32[i7 >> 2] | 0; __ZN4wasm7AddressC2Ey(i10, HEAP32[i8 >> 2] | 0, 0); HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; HEAP32[i2 >> 2] = HEAP32[i10 >> 2]; __ZN4wasm6Memory7SegmentC2ENS_7AddressEPKcS2_(i6, i1, i7, i2); HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 16; __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i3, i11); __ZNSt3__214__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEED2Ev(i11); STACKTOP = i13; return; } } function __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_4LoadENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == 5 | (i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_4HostENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == 5 | (i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_4CallENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == 5 | (i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPKv(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 192 | 0; i10 = i1; i9 = i1 + 176 | 0; i6 = i1 + 156 | 0; i8 = i1 + 4 | 0; i11 = i1 + 152 | 0; HEAP8[i9 >> 0] = HEAP8[39062] | 0; HEAP8[i9 + 1 >> 0] = HEAP8[39063] | 0; HEAP8[i9 + 2 >> 0] = HEAP8[39064] | 0; HEAP8[i9 + 3 >> 0] = HEAP8[39065] | 0; HEAP8[i9 + 4 >> 0] = HEAP8[39066] | 0; HEAP8[i9 + 5 >> 0] = HEAP8[39067] | 0; i7 = __ZNSt3__26__clocEv() | 0; HEAP32[i10 >> 2] = i5; i5 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i6, 20, i7, i9, i10) | 0; i9 = i6 + i5 | 0; i7 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i6, i9, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i10 >> 2] = i13; i12 = __ZNKSt3__26locale9use_facetERNS0_2idE(i10, 47508) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i13) | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 48 >> 2] & 7](i12, i6, i9, i8) | 0; i5 = i8 + (i5 << 2) | 0; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i11 >> 2]; i5 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i8, (i7 | 0) == (i9 | 0) ? i5 : i8 + (i7 - i6 << 2) | 0, i5, i3, i4) | 0; STACKTOP = i1; return i5 | 0; } function __ZN4wasm16PrintSExpression10visitBreakEPNS_5BreakE(i8, i2) { i8 = i8 | 0; i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i9 + 8 | 0; i3 = i9 + 4 | 0; i4 = i9; i7 = i2 + 16 | 0; i5 = HEAP32[i8 >> 2] | 0; do if (!(HEAP32[i7 >> 2] | 0)) { __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 33140, 0) | 0; HEAP32[i4 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN4wasm16PrintSExpression9printNameENS_4NameE(i8, i1) | 0; i1 = i2 + 12 | 0; i5 = HEAP32[i1 >> 2] | 0; if (i5 | 0 ? (HEAP32[i5 >> 2] | 0) != 21 : 0) { __ZN4wasm16PrintSExpression9incIndentEv(i8); i6 = 7; break; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i8 >> 2] | 0, 41) | 0; } else { __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i5, 33133, 0) | 0; HEAP32[i3 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; __ZN4wasm16PrintSExpression9printNameENS_4NameE(i8, i1) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i8); i1 = i2 + 12 | 0; i6 = 7; } while (0); if ((i6 | 0) == 7) { i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0 ? (HEAP32[i1 >> 2] | 0) != 21 : 0) __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i8, i1); i1 = HEAP32[i7 >> 2] | 0; if (i1 | 0) __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i8, i1); __ZN4wasm16PrintSExpression9decIndentEv(i8); } STACKTOP = i9; return; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner17generateArgumentsERK11ArenaVectorIPNS_10ExpressionEES9_(i2, i3, i5, i6) { i2 = i2 | 0; i3 = i3 | 0; i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = i5 + 8 | 0; __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE7reserveEj(i6, HEAP32[i7 >> 2] | 0); i7 = HEAP32[i7 >> 2] | 0; i8 = i2 + 16 | 0; i9 = i6 + 4 | 0; i10 = i6 + 8 | 0; i1 = 0; while (1) { if ((i1 | 0) == (i7 | 0)) { i11 = 8; break; } i4 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i5, i1) | 0; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i2, i3, HEAP32[i4 >> 2] | 0); if (HEAP32[i8 >> 2] | 0) break; i4 = HEAP32[i9 >> 2] | 0; if ((i4 | 0) == (HEAP32[i10 >> 2] | 0)) __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i6, i2); else { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i2 + 12 >> 2]; HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + 16; } i1 = i1 + 1 | 0; } if ((i11 | 0) == 8) { HEAP32[i2 >> 2] = 0; i11 = i2 + 8 | 0; HEAP32[i11 >> 2] = 0; HEAP32[i11 + 4 >> 2] = 0; HEAP32[i8 >> 2] = 0; } return; } function __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i7 + 24 | 0; i8 = i7 + 12 | 0; i2 = i7 + 28 | 0; i3 = i7; i6 = __ZN4wasm12PassRegistry3getEv() | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i8, i1); i6 = __ZN4wasm12PassRegistry10createPassENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i6, i8) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i8); HEAP32[i5 >> 2] = i6; if (!i6) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 14568) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 14546) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i3, i1); __ZNSt3__2lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(46772, i3) | 0; __ZN4wasm5FatallsIPKcEERS0_T_(i2, 31522) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3); __ZN4wasm5FatalD2Ev(i2); } i1 = i4 + 12 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) == (HEAP32[i4 + 16 >> 2] | 0)) __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i4 + 8 | 0, i5); else { HEAP32[i2 >> 2] = i6; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4; } STACKTOP = i7; return; } function __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE25__emplace_unique_key_argsIjJRKNS_21piecewise_construct_tENS_5tupleIJRKjEEENSK_IJEEEEEENS_4pairINS_15__tree_iteratorIS9_PNS_11__tree_nodeIS9_PvEEiEEbEERKT_DpOT0_(i9, i3, i1, i4, i5, i6) { i9 = i9 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i2 = 0, i7 = 0, i8 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i10 + 12 | 0; i8 = i10; i2 = __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE12__find_equalIjEERPNS_16__tree_node_baseIPvEESL_RKT_(i3, i7, i1) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE16__construct_nodeIJRKNS_21piecewise_construct_tENS_5tupleIJRKjEEENSK_IJEEEEEENS_10unique_ptrINS_11__tree_nodeIS9_PvEENS_22__tree_node_destructorINS6_ISS_EEEEEEDpOT_(i8, i3, i4, i5, i6); __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSJ_SJ_(i3, HEAP32[i7 >> 2] | 0, i2, HEAP32[i8 >> 2] | 0); i1 = HEAP32[i8 >> 2] | 0; i2 = 1; } else i2 = 0; HEAP32[i9 >> 2] = i1; HEAP8[i9 + 4 >> 0] = i2; STACKTOP = i10; return; } function __ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPKv(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i10 = i1; i9 = i1 + 68 | 0; i6 = i1 + 48 | 0; i8 = i1 + 8 | 0; i11 = i1 + 4 | 0; HEAP8[i9 >> 0] = HEAP8[39062] | 0; HEAP8[i9 + 1 >> 0] = HEAP8[39063] | 0; HEAP8[i9 + 2 >> 0] = HEAP8[39064] | 0; HEAP8[i9 + 3 >> 0] = HEAP8[39065] | 0; HEAP8[i9 + 4 >> 0] = HEAP8[39066] | 0; HEAP8[i9 + 5 >> 0] = HEAP8[39067] | 0; i7 = __ZNSt3__26__clocEv() | 0; HEAP32[i10 >> 2] = i5; i5 = __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i6, 20, i7, i9, i10) | 0; i9 = i6 + i5 | 0; i7 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i6, i9, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i10 >> 2] = i13; i12 = __ZNKSt3__26locale9use_facetERNS0_2idE(i10, 47476) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i13) | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i12 >> 2] | 0) + 32 >> 2] & 7](i12, i6, i9, i8) | 0; i5 = i8 + i5 | 0; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i11 >> 2]; i5 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i10, i8, (i7 | 0) == (i9 | 0) ? i5 : i8 + (i7 - i6) | 0, i5, i3, i4) | 0; STACKTOP = i1; return i5 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEy(i4, i5, i9) { i4 = i4 | 0; i5 = i5 | 0; i9 = i9 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i12 + 12 | 0; i10 = i12 + 8 | 0; i11 = i12; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i11, i4); if (HEAP8[i11 >> 0] | 0) { i6 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47532) | 0; __ZNSt3__26localeD2Ev(i3); i7 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0; i8 = HEAP32[i7 + 24 >> 2] | 0; i2 = i7 + 76 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { i1 = __ZNKSt3__28ios_base6getlocEv(i7) | 0; HEAP32[i3 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0; __ZNSt3__26localeD2Ev(i3); i1 = i1 << 24 >> 24; HEAP32[i2 >> 2] = i1; } i2 = HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] | 0; HEAP32[i10 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i10 >> 2]; if (!(FUNCTION_TABLE_iiiiiii[i2 & 63](i6, i3, i7, i1 & 255, i5, i9) | 0)) { i10 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | 5; } } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i11); STACKTOP = i12; return i4 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEx(i4, i5, i9) { i4 = i4 | 0; i5 = i5 | 0; i9 = i9 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i12 + 12 | 0; i10 = i12 + 8 | 0; i11 = i12; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i11, i4); if (HEAP8[i11 >> 0] | 0) { i6 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47532) | 0; __ZNSt3__26localeD2Ev(i3); i7 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0; i8 = HEAP32[i7 + 24 >> 2] | 0; i2 = i7 + 76 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { i1 = __ZNKSt3__28ios_base6getlocEv(i7) | 0; HEAP32[i3 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0; __ZNSt3__26localeD2Ev(i3); i1 = i1 << 24 >> 24; HEAP32[i2 >> 2] = i1; } i2 = HEAP32[(HEAP32[i6 >> 2] | 0) + 20 >> 2] | 0; HEAP32[i10 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i10 >> 2]; if (!(FUNCTION_TABLE_iiiiiii[i2 & 63](i6, i3, i7, i1 & 255, i5, i9) | 0)) { i10 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | 5; } } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i11); STACKTOP = i12; return i4 | 0; } function __ZN4wasm13WasmValidator13shouldBeEqualIPNS_10ExpressionENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwy(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i8 = i1 + 8 | 0; i13 = i1; i12 = i1 + 200 | 0; i7 = i1 + 28 | 0; i11 = i1 + 24 | 0; i10 = i1 + 16 | 0; i9 = i1 + 20 | 0; i14 = i13; HEAP32[i14 >> 2] = 37; HEAP32[i14 + 4 >> 2] = 0; __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 43581, 0, HEAP32[i3 + 4 >> 2] | 0); i14 = __ZNSt3__26__clocEv() | 0; i15 = i8; HEAP32[i15 >> 2] = i5; HEAP32[i15 + 4 >> 2] = i6; i5 = i12 + (__ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i12, 23, i14, i13, i8) | 0) | 0; i6 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i12, i5, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i8 >> 2] = i13; __ZNSt3__29__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6localeE(i12, i6, i5, i7, i11, i10, i8); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i8 >> 2] | 0) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; i5 = HEAP32[i11 >> 2] | 0; i6 = HEAP32[i10 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i6 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i8, i7, i5, i6, i3, i4) | 0; STACKTOP = i1; return i6 | 0; } function __ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwx(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 224 | 0; i8 = i1 + 8 | 0; i13 = i1; i12 = i1 + 200 | 0; i7 = i1 + 28 | 0; i11 = i1 + 24 | 0; i10 = i1 + 16 | 0; i9 = i1 + 20 | 0; i14 = i13; HEAP32[i14 >> 2] = 37; HEAP32[i14 + 4 >> 2] = 0; __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 43581, 1, HEAP32[i3 + 4 >> 2] | 0); i14 = __ZNSt3__26__clocEv() | 0; i15 = i8; HEAP32[i15 >> 2] = i5; HEAP32[i15 + 4 >> 2] = i6; i5 = i12 + (__ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i12, 23, i14, i13, i8) | 0) | 0; i6 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i12, i5, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i8 >> 2] = i13; __ZNSt3__29__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6localeE(i12, i6, i5, i7, i11, i10, i8); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i8 >> 2] | 0) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; i5 = HEAP32[i11 >> 2] | 0; i6 = HEAP32[i10 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i6 = __ZNSt3__216__pad_and_outputIwNS_11char_traitsIwEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i8, i7, i5, i6, i3, i4) | 0; STACKTOP = i1; return i6 | 0; } function __ZN4wasm10ThreadPool10initializeEj(i7, i4) { i7 = i7 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i12 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i12 + 8 | 0; i6 = i12; if ((i4 | 0) != 1) { i11 = i7 + 16 | 0; HEAP32[i9 >> 2] = i11; i10 = i9 + 4 | 0; HEAP8[i10 >> 0] = 1; __ZNSt3__25mutex4lockEv(i11); i11 = i7 + 4 | 0; i8 = i7 + 92 | 0; HEAP32[i8 >> 2] = (HEAP32[i11 >> 2] | 0) - (HEAP32[i7 >> 2] | 0) >> 2; __ZN4wasm10ThreadPool20resetThreadsAreReadyEv(i7); i5 = i7 + 8 | 0; i3 = 0; while (1) { if (i3 >>> 0 >= i4 >>> 0) break; i1 = __Znwj(112) | 0; __ZN4wasm6ThreadC2Ev(i1); HEAP32[i6 >> 2] = i1; i2 = HEAP32[i11 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i5 >> 2] | 0) >>> 0) { HEAP32[i6 >> 2] = 0; HEAP32[i2 >> 2] = i1; HEAP32[i11 >> 2] = i2 + 4; } else __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJS6_EEEvDpOT_(i7, i6); i1 = HEAP32[i6 >> 2] | 0; HEAP32[i6 >> 2] = 0; if (i1 | 0) { __ZN4wasm6ThreadD2Ev(i1); __ZdlPv(i1); } i3 = i3 + 1 | 0; } i1 = i7 + 44 | 0; while (1) { if ((HEAP32[i8 >> 2] | 0) == ((HEAP32[i11 >> 2] | 0) - (HEAP32[i7 >> 2] | 0) >> 2 | 0)) break; __ZNSt3__218condition_variable4waitERNS_11unique_lockINS_5mutexEEE(i1, i9); } if (HEAP8[i10 >> 0] | 0) __ZNSt3__25mutex6unlockEv(HEAP32[i9 >> 2] | 0); } STACKTOP = i12; return; } function __ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcy(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i8 = i1 + 8 | 0; i13 = i1; i12 = i1 + 71 | 0; i7 = i1 + 28 | 0; i11 = i1 + 24 | 0; i10 = i1 + 16 | 0; i9 = i1 + 20 | 0; i14 = i13; HEAP32[i14 >> 2] = 37; HEAP32[i14 + 4 >> 2] = 0; __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 43581, 0, HEAP32[i3 + 4 >> 2] | 0); i14 = __ZNSt3__26__clocEv() | 0; i15 = i8; HEAP32[i15 >> 2] = i5; HEAP32[i15 + 4 >> 2] = i6; i5 = i12 + (__ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i12, 23, i14, i13, i8) | 0) | 0; i6 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i12, i5, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i8 >> 2] = i13; __ZNSt3__29__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i12, i6, i5, i7, i11, i10, i8); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i8 >> 2] | 0) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; i5 = HEAP32[i11 >> 2] | 0; i6 = HEAP32[i10 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i6 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i8, i7, i5, i6, i3, i4) | 0; STACKTOP = i1; return i6 | 0; } function __ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcx(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 96 | 0; i8 = i1 + 8 | 0; i13 = i1; i12 = i1 + 71 | 0; i7 = i1 + 28 | 0; i11 = i1 + 24 | 0; i10 = i1 + 16 | 0; i9 = i1 + 20 | 0; i14 = i13; HEAP32[i14 >> 2] = 37; HEAP32[i14 + 4 >> 2] = 0; __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i13 + 1 | 0, 43581, 1, HEAP32[i3 + 4 >> 2] | 0); i14 = __ZNSt3__26__clocEv() | 0; i15 = i8; HEAP32[i15 >> 2] = i5; HEAP32[i15 + 4 >> 2] = i6; i5 = i12 + (__ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i12, 23, i14, i13, i8) | 0) | 0; i6 = __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i12, i5, i3) | 0; i13 = __ZNKSt3__28ios_base6getlocEv(i3) | 0; HEAP32[i8 >> 2] = i13; __ZNSt3__29__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6localeE(i12, i6, i5, i7, i11, i10, i8); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i8 >> 2] | 0) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; i5 = HEAP32[i11 >> 2] | 0; i6 = HEAP32[i10 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i6 = __ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i8, i7, i5, i6, i3, i4) | 0; STACKTOP = i1; return i6 | 0; } function __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRjPKcS8_EEEvDpOT_(i3, i4, i7, i8) { i3 = i3 | 0; i4 = i4 | 0; i7 = i7 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i2 = i13 + 32 | 0; i1 = i13 + 28 | 0; i9 = i13 + 24 | 0; i10 = i13 + 20 | 0; i11 = i13; i12 = HEAP32[i3 + 4 >> 2] | 0; i5 = HEAP32[i3 >> 2] | 0; i6 = (i12 - i5 >> 4) + 1 | 0; if (i6 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i3); else { i15 = (HEAP32[i3 + 8 >> 2] | 0) - i5 | 0; i14 = i15 >> 3; __ZNSt3__214__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEEC2EjjS6_(i11, i15 >> 4 >>> 0 < 134217727 ? (i14 >>> 0 < i6 >>> 0 ? i6 : i14) : 268435455, i12 - i5 >> 4, i3 + 8 | 0); i12 = i11 + 8 | 0; i6 = HEAP32[i12 >> 2] | 0; __ZN4wasm7AddressC2Ey(i9, HEAP32[i4 >> 2] | 0, 0); i7 = HEAP32[i7 >> 2] | 0; __ZN4wasm7AddressC2Ey(i10, HEAP32[i8 >> 2] | 0, 0); HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; HEAP32[i2 >> 2] = HEAP32[i10 >> 2]; __ZN4wasm6Memory7SegmentC2ENS_7AddressEPKcS2_(i6, i1, i7, i2); HEAP32[i12 >> 2] = (HEAP32[i12 >> 2] | 0) + 16; __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i3, i11); __ZNSt3__214__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEED2Ev(i11); STACKTOP = i13; return; } } function __ZN4wasm13WasmValidator13shouldBeEqualIPNS_8SetLocalENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm13WasmValidator15shouldBeUnequalIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == (i3 | 0)) { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 14758) | 0, i2) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } else i1 = 1; STACKTOP = i7; return i1 | 0; } function __ZN4wasm13WasmValidator13shouldBeEqualIPNS_6BinaryENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5UnaryENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5BlockENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm16PrintSExpression9visitHostEPNS_4HostE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i4 = i5; switch (HEAP32[i3 + 8 >> 2] | 0) { case 0: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i2 >> 2] | 0, 31655, 0) | 0, 41) | 0; break; } case 1: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i2 >> 2] | 0, 31664, 0) | 0, 41) | 0; break; } case 2: { __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i2 >> 2] | 0, 31679, 0) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i2); i4 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i3 + 16 | 0, 0) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i2, HEAP32[i4 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i2); break; } case 3: { i2 = __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i2 >> 2] | 0, 31691, 0) | 0; HEAP32[i4 >> 2] = HEAP32[i3 + 12 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i2, i1) | 0, 41) | 0; break; } default: _abort(); } STACKTOP = i5; return; } function __ZN4wasm13WasmValidator13shouldBeEqualIPNS_4HostEjEEbT0_S4_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i4, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, 0) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEPKv(i4, i5) { i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i11 + 12 | 0; i9 = i11 + 8 | 0; i10 = i11; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i10, i4); if (HEAP8[i10 >> 0] | 0) { i6 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47532) | 0; __ZNSt3__26localeD2Ev(i3); i7 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0; i8 = HEAP32[i7 + 24 >> 2] | 0; i2 = i7 + 76 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { i1 = __ZNKSt3__28ios_base6getlocEv(i7) | 0; HEAP32[i3 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0; __ZNSt3__26localeD2Ev(i3); i1 = i1 << 24 >> 24; HEAP32[i2 >> 2] = i1; } i2 = HEAP32[(HEAP32[i6 >> 2] | 0) + 40 >> 2] | 0; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; if (!(FUNCTION_TABLE_iiiiii[i2 & 31](i6, i3, i7, i1 & 255, i5) | 0)) { i9 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5; } } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i10); STACKTOP = i11; return i4 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i4, i5) { i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i11 + 12 | 0; i9 = i11 + 8 | 0; i10 = i11; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i10, i4); if (HEAP8[i10 >> 0] | 0) { i6 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47532) | 0; __ZNSt3__26localeD2Ev(i3); i7 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0; i8 = HEAP32[i7 + 24 >> 2] | 0; i2 = i7 + 76 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { i1 = __ZNKSt3__28ios_base6getlocEv(i7) | 0; HEAP32[i3 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0; __ZNSt3__26localeD2Ev(i3); i1 = i1 << 24 >> 24; HEAP32[i2 >> 2] = i1; } i2 = HEAP32[(HEAP32[i6 >> 2] | 0) + 24 >> 2] | 0; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; if (!(FUNCTION_TABLE_iiiiii[i2 & 31](i6, i3, i7, i1 & 255, i5) | 0)) { i9 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5; } } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i10); STACKTOP = i11; return i4 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(i4, i5) { i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i11 + 12 | 0; i9 = i11 + 8 | 0; i10 = i11; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i10, i4); if (HEAP8[i10 >> 0] | 0) { i6 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47532) | 0; __ZNSt3__26localeD2Ev(i3); i7 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0; i8 = HEAP32[i7 + 24 >> 2] | 0; i2 = i7 + 76 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { i1 = __ZNKSt3__28ios_base6getlocEv(i7) | 0; HEAP32[i3 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0; __ZNSt3__26localeD2Ev(i3); i1 = i1 << 24 >> 24; HEAP32[i2 >> 2] = i1; } i2 = HEAP32[(HEAP32[i6 >> 2] | 0) + 16 >> 2] | 0; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; if (!(FUNCTION_TABLE_iiiiii[i2 & 31](i6, i3, i7, i1 & 255, i5) | 0)) { i9 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5; } } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i10); STACKTOP = i11; return i4 | 0; } function __ZNSt3__224__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j(i5, i6, i1) { i5 = i5 | 0; i6 = i6 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i11 + 12 | 0; i9 = i11; i10 = i11 + 8 | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i9, i5); if (HEAP8[i9 >> 0] | 0) { i7 = (HEAP32[i5 >> 2] | 0) + -12 | 0; HEAP32[i10 >> 2] = HEAP32[i5 + (HEAP32[i7 >> 2] | 0) + 24 >> 2]; i7 = i5 + (HEAP32[i7 >> 2] | 0) | 0; i8 = HEAP32[i7 + 4 >> 2] | 0; i3 = i6 + i1 | 0; i2 = i7 + 76 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { i1 = __ZNKSt3__28ios_base6getlocEv(i7) | 0; HEAP32[i4 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i4, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0; __ZNSt3__26localeD2Ev(i4); i1 = i1 << 24 >> 24; HEAP32[i2 >> 2] = i1; } HEAP32[i4 >> 2] = HEAP32[i10 >> 2]; if (!(__ZNSt3__216__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i4, i6, (i8 & 176 | 0) == 32 ? i3 : i6, i3, i7, i1 & 255) | 0)) { i10 = i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0; __ZNSt3__28ios_base5clearEj(i10, HEAP32[i10 + 16 >> 2] | 5); } } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i9); STACKTOP = i11; return i5 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEf(i4, d5) { i4 = i4 | 0; d5 = +d5; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i11 + 12 | 0; i9 = i11 + 8 | 0; i10 = i11; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i10, i4); if (HEAP8[i10 >> 0] | 0) { i6 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47532) | 0; __ZNSt3__26localeD2Ev(i3); i7 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0; i8 = HEAP32[i7 + 24 >> 2] | 0; i2 = i7 + 76 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { i1 = __ZNKSt3__28ios_base6getlocEv(i7) | 0; HEAP32[i3 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0; __ZNSt3__26localeD2Ev(i3); i1 = i1 << 24 >> 24; HEAP32[i2 >> 2] = i1; } i2 = HEAP32[(HEAP32[i6 >> 2] | 0) + 32 >> 2] | 0; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; if (!(FUNCTION_TABLE_iiiiid[i2 & 7](i6, i3, i7, i1 & 255, d5) | 0)) { i9 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5; } } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i10); STACKTOP = i11; return i4 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEd(i4, d5) { i4 = i4 | 0; d5 = +d5; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i11 + 12 | 0; i9 = i11 + 8 | 0; i10 = i11; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i10, i4); if (HEAP8[i10 >> 0] | 0) { i6 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47532) | 0; __ZNSt3__26localeD2Ev(i3); i7 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0; i8 = HEAP32[i7 + 24 >> 2] | 0; i2 = i7 + 76 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == -1) { i1 = __ZNKSt3__28ios_base6getlocEv(i7) | 0; HEAP32[i3 >> 2] = i1; i1 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i1 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 31](i1, 32) | 0; __ZNSt3__26localeD2Ev(i3); i1 = i1 << 24 >> 24; HEAP32[i2 >> 2] = i1; } i2 = HEAP32[(HEAP32[i6 >> 2] | 0) + 32 >> 2] | 0; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; if (!(FUNCTION_TABLE_iiiiid[i2 & 7](i6, i3, i7, i1 & 255, d5) | 0)) { i9 = i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i9 >> 2] = HEAP32[i9 >> 2] | 5; } } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i10); STACKTOP = i11; return i4 | 0; } function _wcsnrtombs(i3, i11, i6, i2, i1) { i3 = i3 | 0; i11 = i11 | 0; i6 = i6 | 0; i2 = i2 | 0; i1 = i1 | 0; var i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 272 | 0; i7 = i10 + 8 | 0; i8 = i10; i5 = HEAP32[i11 >> 2] | 0; HEAP32[i8 >> 2] = i5; i9 = (i3 | 0) != 0; i4 = i9 ? i2 : 256; i3 = i9 ? i3 : i7; i2 = i5; L1 : do if ((i4 | 0) != 0 & (i5 | 0) != 0) { i1 = 0; i5 = i2; while (1) { i2 = i6 >>> 0 >= i4 >>> 0; if (!(i2 | i6 >>> 0 > 32)) { i2 = i5; break L1; } i2 = i2 ? i4 : i6; i6 = i6 - i2 | 0; i2 = _wcsrtombs(i3, i8, i2, 0) | 0; if ((i2 | 0) == -1) break; i5 = (i3 | 0) == (i7 | 0); i4 = i4 - (i5 ? 0 : i2) | 0; i3 = i5 ? i3 : i3 + i2 | 0; i1 = i2 + i1 | 0; i2 = HEAP32[i8 >> 2] | 0; if ((i4 | 0) != 0 & (i2 | 0) != 0) i5 = i2; else break L1; } i1 = -1; i4 = 0; i2 = HEAP32[i8 >> 2] | 0; } else i1 = 0; while (0); L8 : do if ((i2 | 0) != 0 ? (i4 | 0) != 0 & (i6 | 0) != 0 : 0) { i5 = i3; while (1) { i3 = _wcrtomb(i5, HEAP32[i2 >> 2] | 0, 0) | 0; if ((i3 + 1 | 0) >>> 0 < 2) break; i2 = (HEAP32[i8 >> 2] | 0) + 4 | 0; HEAP32[i8 >> 2] = i2; i6 = i6 + -1 | 0; i4 = i4 - i3 | 0; i1 = i1 + 1 | 0; if (!((i4 | 0) != 0 & (i6 | 0) != 0)) break L8; else i5 = i5 + i3 | 0; } if (!i3) HEAP32[i8 >> 2] = 0; else i1 = -1; } while (0); if (i9) HEAP32[i11 >> 2] = HEAP32[i8 >> 2]; STACKTOP = i10; return i1 | 0; } function __ZN4wasm13WasmValidator15visitCallImportEPNS_10CallImportE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i7 + 4 | 0; i9 = i7; i8 = HEAP32[i2 + 20 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i3 + 24 >> 2]; HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; i1 = __ZN4wasm6Module11checkImportENS_4NameE(i8, i1) | 0; L1 : do if (__ZN4wasm13WasmValidator12shouldBeTrueIPNS_10CallImportEEEbbT_PKc(i2, (i1 | 0) != 0, i3, 15373) | 0 ? (i9 = HEAP32[i1 + 12 >> 2] | 0, i4 = i3 + 8 | 0, i5 = i3 + 16 | 0, i6 = i9 + 8 | 0, __ZN4wasm13WasmValidator12shouldBeTrueIPNS_10CallImportEEEbbT_PKc(i2, (HEAP32[i5 >> 2] | 0) == ((HEAP32[i9 + 12 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) >> 2 | 0), i3, 15299) | 0) : 0) { i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break L1; i9 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i1) | 0; if (!(__ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_10CallImportENS_8WasmTypeEEEbT0_S5_T_PKc(i2, HEAP32[(HEAP32[i9 >> 2] | 0) + 4 >> 2] | 0, HEAP32[(HEAP32[i6 >> 2] | 0) + (i1 << 2) >> 2] | 0, i3, 15328) | 0)) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 15356) | 0, i1) | 0, 15370) | 0; i1 = i1 + 1 | 0; } } while (0); STACKTOP = i7; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i9, i1) { i9 = i9 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0; if (i1 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i9); i11 = i9 + 11 | 0; i7 = HEAP8[i11 >> 0] | 0; i4 = i7 << 24 >> 24 < 0; if (i4) { i10 = HEAP32[i9 + 4 >> 2] | 0; i2 = (HEAP32[i9 + 8 >> 2] & 2147483647) + -1 | 0; } else { i10 = i7 & 255; i2 = 10; } i8 = i10 >>> 0 > i1 >>> 0 ? i10 : i1; i1 = i8 >>> 0 < 11; i8 = i1 ? 10 : (i8 + 16 & -16) + -1 | 0; do if ((i8 | 0) != (i2 | 0)) { do if (i1) { i2 = HEAP32[i9 >> 2] | 0; if (i4) { i1 = 0; i3 = i9; i6 = 12; } else { i1 = 0; i4 = 1; i3 = i9; i6 = 13; } } else { i3 = __Znwj(i8 + 1 | 0) | 0; if (i4) { i1 = 1; i2 = HEAP32[i9 >> 2] | 0; i6 = 12; break; } else { i1 = 1; i4 = 0; i2 = i9; i6 = 13; break; } } while (0); if ((i6 | 0) == 12) { i5 = i1; i4 = 1; i1 = HEAP32[i9 + 4 >> 2] | 0; } else if ((i6 | 0) == 13) { i5 = i1; i1 = i7 & 255; } i1 = i1 + 1 | 0; if (i1 | 0) _memcpy(i3 | 0, i2 | 0, i1 | 0) | 0; if (i4) __ZdlPv(i2); if (i5) { HEAP32[i9 + 8 >> 2] = i8 + 1 | -2147483648; HEAP32[i9 + 4 >> 2] = i10; HEAP32[i9 >> 2] = i3; break; } else { HEAP8[i11 >> 0] = i10; break; } } while (0); return; } function __ZN4wasm16PrintSExpression11visitSwitchEPNS_6SwitchE(i7, i8) { i7 = i7 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i9 = 0, i10 = 0, i11 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i9 + 8 | 0; i3 = i9 + 4 | 0; i4 = i9; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i7 >> 2] | 0, 33124, 0) | 0; i5 = i8 + 8 | 0; i6 = HEAP32[i8 + 16 >> 2] | 0; i2 = 0; while (1) { if ((i2 | 0) == (i6 | 0)) break; i11 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i5, i2) | 0; i10 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i7 >> 2] | 0, 32) | 0; HEAP32[i3 >> 2] = HEAP32[i11 >> 2]; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i10, i1) | 0; i2 = i2 + 1 | 0; } i11 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i7 >> 2] | 0, 32) | 0; HEAP32[i4 >> 2] = HEAP32[i8 + 24 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i11, i1) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i7); i1 = HEAP32[i8 + 32 >> 2] | 0; if (i1 | 0 ? (HEAP32[i1 >> 2] | 0) != 21 : 0) __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i7, i1); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i7, HEAP32[i8 + 28 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i7); STACKTOP = i9; return; } function __ZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEENS_7AddressEPT_NS_7LiteralE(i1, i3, i2) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7 + 4 | 0; i5 = i7 + 8 | 0; i6 = i7; HEAP32[i5 >> 2] = i1; __ZN4wasm7AddressC2Ey(i6, HEAP32[i1 + 32 >> 2] << 16, 0); if ((HEAP32[i2 >> 2] | 0) == 1) { i2 = __ZNK4wasm7Literal6geti32Ev(i2) | 0; i1 = i2; i2 = ((i2 | 0) < 0) << 31 >> 31; } else { i1 = __ZNK4wasm7Literal6geti64Ev(i2) | 0; i2 = tempRet0; } i8 = i3 + 12 | 0; __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i5, HEAP32[i8 >> 2] | 0, 0, HEAP32[i6 >> 2] | 0, 0, 25876); __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i5, i1, i2, (HEAP32[i6 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) | 0, 0, 25892); i1 = _i64Add(HEAP32[i8 >> 2] | 0, 0, i1 | 0, i2 | 0) | 0; i2 = tempRet0; i3 = i3 + 8 | 0; __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i5, HEAPU8[i3 >> 0] | 0, 0, HEAP32[i6 >> 2] | 0, 0, 25907); __ZZN4wasm14ModuleInstance15getFinalAddressINS_5StoreEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i5, i1, i2, (HEAP32[i6 >> 2] | 0) - (HEAPU8[i3 >> 0] | 0) | 0, 0, 25922); __ZN4wasm7AddressC2Ey(i4, i1, i2); STACKTOP = i7; return HEAP32[i4 >> 2] | 0; } function __ZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEENS_7AddressEPT_NS_7LiteralE(i1, i3, i2) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7 + 4 | 0; i5 = i7 + 8 | 0; i6 = i7; HEAP32[i5 >> 2] = i1; __ZN4wasm7AddressC2Ey(i6, HEAP32[i1 + 32 >> 2] << 16, 0); if ((HEAP32[i2 >> 2] | 0) == 1) { i2 = __ZNK4wasm7Literal6geti32Ev(i2) | 0; i1 = i2; i2 = ((i2 | 0) < 0) << 31 >> 31; } else { i1 = __ZNK4wasm7Literal6geti64Ev(i2) | 0; i2 = tempRet0; } i8 = i3 + 12 | 0; __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i5, HEAP32[i8 >> 2] | 0, 0, HEAP32[i6 >> 2] | 0, 0, 25876); __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i5, i1, i2, (HEAP32[i6 >> 2] | 0) - (HEAP32[i8 >> 2] | 0) | 0, 0, 25892); i1 = _i64Add(HEAP32[i8 >> 2] | 0, 0, i1 | 0, i2 | 0) | 0; i2 = tempRet0; i3 = i3 + 8 | 0; __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i5, HEAPU8[i3 >> 0] | 0, 0, HEAP32[i6 >> 2] | 0, 0, 25907); __ZZN4wasm14ModuleInstance15getFinalAddressINS_4LoadEEENS_7AddressEPT_NS_7LiteralEENKUlyyPKcE_clEyyS8_(i5, i1, i2, (HEAP32[i6 >> 2] | 0) - (HEAPU8[i3 >> 0] | 0) | 0, 0, 25922); __ZN4wasm7AddressC2Ey(i4, i1, i2); STACKTOP = i7; return HEAP32[i4 >> 2] | 0; } function __ZN4wasm22SExpressionWasmBuilder16makeCallIndirectERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 16 | 0; i8 = i6 + 12 | 0; i4 = i6; i5 = __ZN10MixedArena5allocIN4wasm12CallIndirectEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i9 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; i7 = HEAP32[i1 >> 2] | 0; HEAP32[i8 >> 2] = i9; HEAP32[i3 >> 2] = HEAP32[i8 >> 2]; i3 = __ZN4wasm6Module17checkFunctionTypeENS_4NameE(i7, i3) | 0; if (!i3) { i9 = ___cxa_allocate_exception(20) | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 18387, 26); i7 = HEAP32[i2 + 28 >> 2] | 0; i8 = HEAP32[i2 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i9, i4); HEAP32[i9 + 12 >> 2] = i7; HEAP32[i9 + 16 >> 2] = i8; ___cxa_throw(i9 | 0, 8, 154); } else { HEAP32[i5 + 24 >> 2] = HEAP32[i3 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; i9 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 2) | 0) | 0; HEAP32[i5 + 28 >> 2] = i9; __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_12CallIndirectEEEvRNS_7ElementEjPT_(i1, i2, 3, i5); STACKTOP = i6; return i5 | 0; } return 0; } function __ZNSt3__29to_stringEj(i4, i5) { i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i8; i7 = i8 + 4 | 0; HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i7 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i3 = i7 + 11 | 0; if ((HEAP8[i3 >> 0] | 0) < 0) i1 = (HEAP32[i7 + 8 >> 2] & 2147483647) + -1 | 0; else i1 = 10; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i7, i1, 0); i2 = HEAP8[i3 >> 0] | 0; i1 = i2 << 24 >> 24 < 0 ? HEAP32[i7 + 4 >> 2] | 0 : i2 & 255; while (1) { i2 = i2 << 24 >> 24 < 0 ? HEAP32[i7 >> 2] | 0 : i7; HEAP32[i6 >> 2] = i5; i2 = _snprintf(i2, i1 + 1 | 0, 41654, i6) | 0; if ((i2 | 0) > -1) if (i2 >>> 0 > i1 >>> 0) i1 = i2; else break; else i1 = i1 << 1 | 1; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i7, i1, 0); i2 = HEAP8[i3 >> 0] | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i7, i2, 0); HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i7 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i7 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i7 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); STACKTOP = i8; return; } function __ZN4wasm13WasmValidator13shouldBeEqualIPNS_6GlobalENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; if ((i2 | 0) == (i3 | 0)) i1 = 1; else { i5 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEPKv(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 53494) | 0, i2) | 0, 15040) | 0, i3) | 0, 14763) | 0, i5) | 0, 14766) | 0, i4) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i6 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i6); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_118parse_template_argINS0_2DbEEEPKcS4_S4_RT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; L1 : do if ((i1 | 0) != (i5 | 0)) switch (HEAP8[i1 >> 0] | 0) { case 88: { i3 = i1 + 1 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_116parse_expressionINS0_2DbEEEPKcS4_S4_RT_(i3, i5, i4) | 0; if ((i2 | 0) == (i3 | 0) | (i2 | 0) == (i5 | 0)) break L1; i1 = (HEAP8[i2 >> 0] | 0) == 69 ? i2 + 1 | 0 : i1; break L1; } case 74: { i2 = i1 + 1 | 0; if ((i2 | 0) == (i5 | 0)) break L1; while (1) { if ((HEAP8[i2 >> 0] | 0) == 69) break; i3 = __ZN10__cxxabiv112_GLOBAL__N_118parse_template_argINS0_2DbEEEPKcS4_S4_RT_(i2, i5, i4) | 0; if ((i3 | 0) == (i2 | 0)) break L1; else i2 = i3; } i1 = i2 + 1 | 0; break L1; } case 76: { i3 = i1 + 1 | 0; if ((i3 | 0) != (i5 | 0) ? (HEAP8[i3 >> 0] | 0) == 90 : 0) { i3 = i1 + 2 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_114parse_encodingINS0_2DbEEEPKcS4_S4_RT_(i3, i5, i4) | 0; if ((i2 | 0) == (i3 | 0) | (i2 | 0) == (i5 | 0)) break L1; i1 = (HEAP8[i2 >> 0] | 0) == 69 ? i2 + 1 | 0 : i1; break L1; } i1 = __ZN10__cxxabiv112_GLOBAL__N_118parse_expr_primaryINS0_2DbEEEPKcS4_S4_RT_(i1, i5, i4) | 0; break L1; } default: { i1 = __ZN10__cxxabiv112_GLOBAL__N_110parse_typeINS0_2DbEEEPKcS4_S4_RT_(i1, i5, i4) | 0; break L1; } } while (0); return i1 | 0; } function __ZNKSt3__28messagesIcE6do_getEiiiRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(i8, i1, i3, i4, i5, i2) { i8 = i8 | 0; i1 = i1 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i2 = i2 | 0; var i6 = 0, i7 = 0, i9 = 0, i10 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i7; HEAP32[i6 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; HEAP32[i6 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i6 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i9 = HEAP8[i2 + 11 >> 0] | 0; i10 = i9 << 24 >> 24 < 0; i1 = i10 ? HEAP32[i2 >> 2] | 0 : i2; i2 = i1 + (i10 ? HEAP32[i2 + 4 >> 2] | 0 : i9 & 255) | 0; while (1) { if (i1 >>> 0 >= i2 >>> 0) break; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i6, HEAP8[i1 >> 0] | 0); i1 = i1 + 1 | 0; } i1 = _catgets((i3 | 0) == -1 ? -1 : i3 << 1, i4, i5, (HEAP8[i6 + 11 >> 0] | 0) < 0 ? HEAP32[i6 >> 2] | 0 : i6) | 0; HEAP32[i8 >> 2] = 0; HEAP32[i8 + 4 >> 2] = 0; HEAP32[i8 + 8 >> 2] = 0; i2 = 0; while (1) { if ((i2 | 0) == 3) break; HEAP32[i8 + (i2 << 2) >> 2] = 0; i2 = i2 + 1 | 0; } i2 = i1 + (_strlen(i1) | 0) | 0; while (1) { if (i1 >>> 0 >= i2 >>> 0) break; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i8, HEAP8[i1 >> 0] | 0); i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6); STACKTOP = i7; return; } function __ZN10__cxxabiv112_GLOBAL__N_115parse_simple_idINS0_2DbEEEPKcS4_S4_RT_(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i8; if ((i1 | 0) != (i2 | 0) ? (i3 = __ZN10__cxxabiv112_GLOBAL__N_117parse_source_nameINS0_2DbEEEPKcS4_S4_RT_(i1, i2, i4) | 0, (i3 | 0) != (i1 | 0)) : 0) { i6 = __ZN10__cxxabiv112_GLOBAL__N_119parse_template_argsINS0_2DbEEEPKcS4_S4_RT_(i3, i2, i4) | 0; if ((i6 | 0) != (i3 | 0)) { i5 = i4 + 4 | 0; i2 = HEAP32[i5 >> 2] | 0; if (((i2 - (HEAP32[i4 >> 2] | 0) | 0) / 24 | 0) >>> 0 >= 2) { __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i7, i2 + -24 | 0); i1 = HEAP32[i5 >> 2] | 0; i2 = i1 + -24 | 0; i3 = i1; while (1) { if ((i3 | 0) == (i2 | 0)) break; i4 = i3 + -24 | 0; HEAP32[i5 >> 2] = i4; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i4); i3 = HEAP32[i5 >> 2] | 0; } i5 = HEAP8[i7 + 11 >> 0] | 0; i4 = i5 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1 + -48 | 0, i4 ? HEAP32[i7 >> 2] | 0 : i7, i4 ? HEAP32[i7 + 4 >> 2] | 0 : i5 & 255) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i7); i1 = i6; } } else i1 = i3; } STACKTOP = i8; return i1 | 0; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13maybePushTaskEPFvPS4_PPNS_10ExpressionEESB_(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = i1; do if (HEAP32[i1 >> 2] | 0) { i9 = i2 + 4 | 0; i10 = i2 + 8 | 0; i1 = HEAP32[i10 >> 2] | 0; i7 = i2 + 12 | 0; i2 = HEAP32[i7 >> 2] | 0; i3 = i1; if (i1 >>> 0 < i2 >>> 0) { HEAP32[i1 >> 2] = 97; HEAP32[i1 + 4 >> 2] = i8; HEAP32[i10 >> 2] = i1 + 8; break; } i6 = HEAP32[i9 >> 2] | 0; i1 = (i3 - i6 >> 3) + 1 | 0; if (i1 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i9); i2 = i2 - i6 | 0; i5 = i2 >> 2; i5 = i2 >> 3 >>> 0 < 268435455 ? (i5 >>> 0 < i1 >>> 0 ? i1 : i5) : 536870911; i2 = i3 - i6 | 0; i1 = i2 >> 3; do if (i5) if (i5 >>> 0 > 536870911) { i10 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i10); ___cxa_throw(i10 | 0, 2024, 148); } else { i4 = __Znwj(i5 << 3) | 0; break; } else i4 = 0; while (0); i3 = i4 + (i1 << 3) | 0; HEAP32[i3 >> 2] = 97; HEAP32[i4 + (i1 << 3) + 4 >> 2] = i8; i1 = i3 + (0 - i1 << 3) | 0; if ((i2 | 0) > 0) _memcpy(i1 | 0, i6 | 0, i2 | 0) | 0; HEAP32[i9 >> 2] = i1; HEAP32[i10 >> 2] = i3 + 8; HEAP32[i7 >> 2] = i4 + (i5 << 3); if (i6 | 0) __ZdlPv(i6); } while (0); return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE25__emplace_unique_key_argsIS3_JRS3_S6_EEENS_4pairINS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEEbEERKT_DpOT0_(i7, i3, i1, i4, i5) { i7 = i7 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; var i2 = 0, i6 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i8; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESK_RKT_(i3, i6, i1) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(40) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[i4 >> 2]; i4 = i1 + 20 | 0; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; HEAP32[i4 + 16 >> 2] = HEAP32[i5 + 16 >> 2]; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i3, HEAP32[i6 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i7 >> 2] = i1; HEAP8[i7 + 4 >> 0] = i2; STACKTOP = i8; return; } function __ZN4wasm17WasmBinaryBuilder9readNamesEv(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5; if (HEAP8[i4 + 12 >> 0] | 0) { i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21471) | 0; i2 = __ZNKSt3__28ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i2; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i2 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 31](i2, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i3, i2) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i3) | 0; } i2 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i4) | 0; i3 = i4 + 40 | 0; if ((i2 | 0) != ((HEAP32[i4 + 44 >> 2] | 0) - (HEAP32[i3 >> 2] | 0) >> 2 | 0)) ___assert_fail(21484, 18854, 1677, 21508); i1 = 0; while (1) { if (i1 >>> 0 >= i2 >>> 0) { i1 = 7; break; } i6 = HEAP32[(HEAP32[i3 >> 2] | 0) + (i1 << 2) >> 2] | 0; i7 = __ZN4wasm17WasmBinaryBuilder15getInlineStringEv(i4) | 0; HEAP32[i6 >> 2] = i7; if (!(__ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i4) | 0)) i1 = i1 + 1 | 0; else { i1 = 9; break; } } if ((i1 | 0) == 7) { STACKTOP = i5; return; } else if ((i1 | 0) == 9) ___assert_fail(21518, 18854, 1682, 21508); } function __ZN4wasm13WasmValidator9visitCallEPNS_4CallE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i7 + 4 | 0; i9 = i7; i8 = HEAP32[i2 + 20 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i3 + 24 >> 2]; HEAP32[i1 >> 2] = HEAP32[i9 >> 2]; i1 = __ZN4wasm6Module13checkFunctionENS_4NameE(i8, i1) | 0; L1 : do if (__ZN4wasm13WasmValidator12shouldBeTrueIPNS_4CallEEEbbT_PKc(i2, (i1 | 0) != 0, i3, 15276) | 0 ? (i4 = i3 + 8 | 0, i5 = i3 + 16 | 0, i6 = i1 + 8 | 0, __ZN4wasm13WasmValidator12shouldBeTrueIPNS_4CallEEEbbT_PKc(i2, (HEAP32[i5 >> 2] | 0) == ((HEAP32[i1 + 12 >> 2] | 0) - (HEAP32[i6 >> 2] | 0) >> 2 | 0), i3, 15299) | 0) : 0) { i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break L1; i9 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i1) | 0; if (!(__ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_4CallENS_8WasmTypeEEEbT0_S5_T_PKc(i2, HEAP32[(HEAP32[i9 >> 2] | 0) + 4 >> 2] | 0, HEAP32[(HEAP32[i6 >> 2] | 0) + (i1 << 2) >> 2] | 0, i3, 15328) | 0)) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 15356) | 0, i1) | 0, 15370) | 0; i1 = i1 + 1 | 0; } } while (0); STACKTOP = i7; return; } function ___stdio_read(i6, i7, i8) { i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i3 = i10 + 16 | 0; i2 = i10; i1 = i10 + 32 | 0; HEAP32[i1 >> 2] = i7; i4 = i1 + 4 | 0; i9 = i6 + 48 | 0; i11 = HEAP32[i9 >> 2] | 0; HEAP32[i4 >> 2] = i8 - ((i11 | 0) != 0 & 1); i5 = i6 + 44 | 0; HEAP32[i1 + 8 >> 2] = HEAP32[i5 >> 2]; HEAP32[i1 + 12 >> 2] = i11; if (!(HEAP32[11467] | 0)) { HEAP32[i3 >> 2] = HEAP32[i6 + 60 >> 2]; HEAP32[i3 + 4 >> 2] = i1; HEAP32[i3 + 8 >> 2] = 2; i1 = ___syscall_ret(___syscall145(145, i3 | 0) | 0) | 0; } else { _pthread_cleanup_push(166, i6 | 0); HEAP32[i2 >> 2] = HEAP32[i6 + 60 >> 2]; HEAP32[i2 + 4 >> 2] = i1; HEAP32[i2 + 8 >> 2] = 2; i1 = ___syscall_ret(___syscall145(145, i2 | 0) | 0) | 0; _pthread_cleanup_pop(0); } if ((i1 | 0) >= 1) { i4 = HEAP32[i4 >> 2] | 0; if (i1 >>> 0 > i4 >>> 0) { i2 = HEAP32[i5 >> 2] | 0; i3 = i6 + 4 | 0; HEAP32[i3 >> 2] = i2; HEAP32[i6 + 8 >> 2] = i2 + (i1 - i4); if (!(HEAP32[i9 >> 2] | 0)) i1 = i8; else { HEAP32[i3 >> 2] = i2 + 1; HEAP8[i7 + (i8 + -1) >> 0] = HEAP8[i2 >> 0] | 0; i1 = i8; } } } else { HEAP32[i6 >> 2] = HEAP32[i6 >> 2] | i1 & 48 ^ 16; HEAP32[i6 + 8 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; } STACKTOP = i10; return i1 | 0; } function __ZNSt3__210__stdinbufIwE9pbackfailEj(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i10 + 16 | 0; i8 = i10 + 8 | 0; i4 = i10 + 4 | 0; i5 = i10; i9 = i3 + 52 | 0; i2 = (HEAP8[i9 >> 0] | 0) != 0; L1 : do if ((i1 | 0) == -1) if (i2) i1 = -1; else { i1 = HEAP32[i3 + 48 >> 2] | 0; HEAP8[i9 >> 0] = (i1 | 0) != -1 & 1; } else { L5 : do if (i2) { i2 = i3 + 48 | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i11 = HEAP32[i3 + 36 >> 2] | 0; switch (FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 12 >> 2] & 15](i11, HEAP32[i3 + 40 >> 2] | 0, i4, i4 + 4 | 0, i5, i7, i7 + 8 | 0, i8) | 0) { case 1: case 2: break; case 3: { HEAP8[i7 >> 0] = HEAP32[i2 >> 2]; HEAP32[i8 >> 2] = i7 + 1; i6 = 8; break; } default: i6 = 8; } L9 : do if ((i6 | 0) == 8) { i3 = i3 + 32 | 0; while (1) { i4 = HEAP32[i8 >> 2] | 0; if (i4 >>> 0 <= i7 >>> 0) break; i11 = i4 + -1 | 0; HEAP32[i8 >> 2] = i11; if ((_ungetc(HEAP8[i11 >> 0] | 0, HEAP32[i3 >> 2] | 0) | 0) == -1) break L9; } break L5; } while (0); i1 = -1; break L1; } else i2 = i3 + 48 | 0; while (0); HEAP32[i2 >> 2] = i1; HEAP8[i9 >> 0] = 1; } while (0); STACKTOP = i10; return i1 | 0; } function __ZNSt3__210__stdinbufIcE9pbackfailEi(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i10 + 16 | 0; i8 = i10 + 4 | 0; i4 = i10 + 8 | 0; i5 = i10; i9 = i3 + 52 | 0; i2 = (HEAP8[i9 >> 0] | 0) != 0; L1 : do if ((i1 | 0) == -1) if (i2) i1 = -1; else { i1 = HEAP32[i3 + 48 >> 2] | 0; HEAP8[i9 >> 0] = (i1 | 0) != -1 & 1; } else { L5 : do if (i2) { i2 = i3 + 48 | 0; HEAP8[i4 >> 0] = HEAP32[i2 >> 2]; i11 = HEAP32[i3 + 36 >> 2] | 0; switch (FUNCTION_TABLE_iiiiiiiii[HEAP32[(HEAP32[i11 >> 2] | 0) + 12 >> 2] & 15](i11, HEAP32[i3 + 40 >> 2] | 0, i4, i4 + 1 | 0, i5, i7, i7 + 8 | 0, i8) | 0) { case 1: case 2: break; case 3: { HEAP8[i7 >> 0] = HEAP32[i2 >> 2]; HEAP32[i8 >> 2] = i7 + 1; i6 = 8; break; } default: i6 = 8; } L9 : do if ((i6 | 0) == 8) { i3 = i3 + 32 | 0; while (1) { i4 = HEAP32[i8 >> 2] | 0; if (i4 >>> 0 <= i7 >>> 0) break; i11 = i4 + -1 | 0; HEAP32[i8 >> 2] = i11; if ((_ungetc(HEAP8[i11 >> 0] | 0, HEAP32[i3 >> 2] | 0) | 0) == -1) break L9; } break L5; } while (0); i1 = -1; break L1; } else i2 = i3 + 48 | 0; while (0); HEAP32[i2 >> 2] = i1; HEAP8[i9 >> 0] = 1; } while (0); STACKTOP = i10; return i1 | 0; } function __ZN4wasm10TypeSeeker11visitSwitchEPNS_6SwitchE(i1, i4) { i1 = i1 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i10 = i13; i5 = i4 + 8 | 0; i6 = HEAP32[i4 + 16 >> 2] | 0; i7 = i1 + 28 | 0; i11 = i1 + 32 | 0; i8 = i4 + 32 | 0; i12 = i1 + 36 | 0; i9 = i1 + 40 | 0; i3 = 0; while (1) { if ((i3 | 0) == (i6 | 0)) break; i2 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i5, i3) | 0; if ((HEAP32[i2 >> 2] | 0) == (HEAP32[i7 >> 2] | 0)) { i1 = HEAP32[i8 >> 2] | 0; if (!i1) i1 = 0; else i1 = HEAP32[i1 + 4 >> 2] | 0; HEAP32[i10 >> 2] = i1; i2 = HEAP32[i12 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = i1; HEAP32[i12 >> 2] = i2 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i11, i10); } i3 = i3 + 1 | 0; } if ((HEAP32[i4 + 24 >> 2] | 0) == (HEAP32[i7 >> 2] | 0)) { i1 = HEAP32[i8 >> 2] | 0; if (!i1) i1 = 0; else i1 = HEAP32[i1 + 4 >> 2] | 0; HEAP32[i10 >> 2] = i1; i2 = HEAP32[i12 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = i1; HEAP32[i12 >> 2] = i2 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i11, i10); } STACKTOP = i13; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE23parseElementOrStatementERPcPKc(i1, i6, i2) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i9 + 4 | 0; i7 = i9; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i6); i3 = HEAP32[i6 >> 2] | 0; L1 : do switch (HEAP8[i3 >> 0] | 0) { case 59: { HEAP32[i6 >> 2] = i3 + 1; i1 = __ZN6cashew12ValueBuilder9makeBlockEv() | 0; break; } case 123: { HEAP32[i6 >> 2] = i3 + 1; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i6); i4 = HEAP32[i6 >> 2] | 0; if ((HEAP8[i4 >> 0] | 0) == 125) { HEAP32[i6 >> 2] = i4 + 1; i1 = __ZN6cashew12ValueBuilder9makeBlockEv() | 0; break L1; } else { HEAP32[i6 >> 2] = i3; i8 = 6; break L1; } } default: i8 = 6; } while (0); if ((i8 | 0) == 6) { i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i1, i6, i2) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i6); if ((HEAP8[HEAP32[i6 >> 2] >> 0] | 0) == 59) { HEAP32[i7 >> 2] = i1; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew12ValueBuilder13makeStatementENS_3RefE(i5) | 0; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 1; } } STACKTOP = i9; return i1 | 0; } function __ZNK10__cxxabiv119__pointer_type_info9can_catchEPKNS_16__shim_type_infoERPv(i1, i2, i5) { i1 = i1 | 0; i2 = i2 | 0; i5 = i5 | 0; var i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i8 = i9; HEAP32[i5 >> 2] = HEAP32[HEAP32[i5 >> 2] >> 2]; if (!((i1 | 0) == (i2 | 0) | (i2 | 0) == 2096)) if (((i2 | 0) != 0 ? (i3 = ___dynamic_cast(i2, 1984, 2056, 0) | 0, (i3 | 0) != 0) : 0) ? (HEAP32[i3 + 8 >> 2] & ~HEAP32[i1 + 8 >> 2] | 0) == 0 : 0) { i2 = HEAP32[i1 + 12 >> 2] | 0; i1 = i3 + 12 | 0; if (!((i2 | 0) == 2088 ? 1 : (i2 | 0) == (HEAP32[i1 >> 2] | 0))) if ((((i2 | 0) != 0 ? (i6 = ___dynamic_cast(i2, 1984, 1968, 0) | 0, (i6 | 0) != 0) : 0) ? (i4 = HEAP32[i1 >> 2] | 0, (i4 | 0) != 0) : 0) ? (i7 = ___dynamic_cast(i4, 1984, 1968, 0) | 0, (i7 | 0) != 0) : 0) { i1 = i8 + 4 | 0; i2 = i1 + 52 | 0; do { HEAP32[i1 >> 2] = 0; i1 = i1 + 4 | 0; } while ((i1 | 0) < (i2 | 0)); HEAP32[i8 >> 2] = i7; HEAP32[i8 + 8 >> 2] = i6; HEAP32[i8 + 12 >> 2] = -1; HEAP32[i8 + 48 >> 2] = 1; FUNCTION_TABLE_viiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 15](i7, i8, HEAP32[i5 >> 2] | 0, 1); if ((HEAP32[i8 + 24 >> 2] | 0) == 1) { HEAP32[i5 >> 2] = HEAP32[i8 + 16 >> 2]; i1 = 1; } else i1 = 0; } else i1 = 0; else i1 = 1; } else i1 = 0; else i1 = 1; STACKTOP = i9; return i1 | 0; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i3, i1, i2) { i3 = i3 | 0; i1 = i1 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = i3 + 4 | 0; i11 = i3 + 8 | 0; i4 = HEAP32[i11 >> 2] | 0; i9 = i3 + 12 | 0; i8 = HEAP32[i9 >> 2] | 0; i6 = i4; i5 = i8; if (i4 >>> 0 >= i8 >>> 0) { i8 = HEAP32[i10 >> 2] | 0; i3 = (i6 - i8 >> 3) + 1 | 0; if (i3 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i10); i4 = i5 - i8 | 0; i7 = i4 >> 2; i7 = i4 >> 3 >>> 0 < 268435455 ? (i7 >>> 0 < i3 >>> 0 ? i3 : i7) : 536870911; i4 = i6 - i8 | 0; i3 = i4 >> 3; do if (i7) if (i7 >>> 0 > 536870911) { i11 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i11); ___cxa_throw(i11 | 0, 2024, 148); } else { i6 = __Znwj(i7 << 3) | 0; break; } else i6 = 0; while (0); i5 = i6 + (i3 << 3) | 0; HEAP32[i5 >> 2] = i1; HEAP32[i6 + (i3 << 3) + 4 >> 2] = i2; i1 = i5 + (0 - i3 << 3) | 0; if ((i4 | 0) > 0) _memcpy(i1 | 0, i8 | 0, i4 | 0) | 0; HEAP32[i10 >> 2] = i1; HEAP32[i11 >> 2] = i5 + 8; HEAP32[i9 >> 2] = i6 + (i7 << 3); if (i8 | 0) __ZdlPv(i8); } else { HEAP32[i4 >> 2] = i1; HEAP32[i4 + 4 >> 2] = i2; HEAP32[i11 >> 2] = i4 + 8; } return; } function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__7clENSt3__212basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i3 = i7 + 24 | 0; i4 = i7; i5 = i7 + 28 | 0; i6 = i7 + 12 | 0; __ZNSt3__2plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_S6_(i5, i2, 36); i1 = HEAP32[i1 >> 2] | 0; i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = i2 + 1; __ZNSt3__29to_stringEj(i6, i2); i2 = HEAP8[i6 + 11 >> 0] | 0; i1 = i2 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i5, i1 ? HEAP32[i6 >> 2] | 0 : i6, i1 ? HEAP32[i6 + 4 >> 2] | 0 : i2 & 255) | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 + 11 >> 0] | 0) < 0 ? HEAP32[i4 >> 2] | 0 : i4, 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); STACKTOP = i7; return HEAP32[i3 >> 2] | 0; } function _instantiate() { var i1 = 0, i2 = 0, i3 = 0; if (HEAP8[49408] | 0 ? (i2 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 13079) | 0, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasm11WasmPrinter11printModuleEPNS_6ModuleERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEE(HEAP32[11250] | 0, i2) | 0, 10) | 0, HEAP8[49408] | 0) : 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 13103) | 0; _emscripten_asm_const_v(6); i1 = HEAP32[11250] | 0; i2 = HEAP32[i1 + 28 >> 2] | 0; i1 = HEAP32[i1 + 24 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; _emscripten_asm_const_ii(7, HEAP32[HEAP32[i1 >> 2] >> 2] | 0) | 0; i1 = i1 + 4 | 0; } i1 = HEAP32[11250] | 0; i2 = HEAP32[i1 + 16 >> 2] | 0; i1 = HEAP32[i1 + 12 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i3 = HEAP32[i1 >> 2] | 0; _emscripten_asm_const_iiii(8, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i3 + 8 >> 2] | 0, HEAP32[i3 >> 2] | 0) | 0; i1 = i1 + 4 | 0; } if (HEAP8[49408] | 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 13565) | 0; i3 = __Znwj(40) | 0; i1 = HEAP32[11250] | 0; i2 = __Znwj(4) | 0; HEAP32[i2 >> 2] = 2496; __ZN4wasm14ModuleInstanceC2ERNS_6ModuleEPNS0_17ExternalInterfaceE(i3, i1, i2); HEAP32[11249] = i3; _emscripten_asm_const_v(9); return; } function __ZN4wasm5Unary8finalizeEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = i1 + 8 | 0; do switch (HEAP32[i2 >> 2] | 0) { case 19: case 17: case 15: case 13: case 11: case 9: case 7: case 5: case 3: case 1: case 18: case 16: case 14: case 12: case 10: case 8: case 6: case 4: case 2: case 0: { HEAP32[i1 + 4 >> 2] = HEAP32[(HEAP32[i1 + 12 >> 2] | 0) + 4 >> 2]; break; } case 21: case 20: { HEAP32[i1 + 4 >> 2] = 1; break; } case 23: case 22: { HEAP32[i1 + 4 >> 2] = 2; break; } case 24: { HEAP32[i1 + 4 >> 2] = 1; break; } case 43: { HEAP32[i1 + 4 >> 2] = 4; break; } case 44: { HEAP32[i1 + 4 >> 2] = 3; break; } case 33: case 31: case 29: case 27: case 25: { HEAP32[i1 + 4 >> 2] = 1; break; } case 34: case 32: case 30: case 28: case 26: { HEAP32[i1 + 4 >> 2] = 2; break; } case 41: case 39: case 37: case 35: case 45: { HEAP32[i1 + 4 >> 2] = 3; break; } case 42: case 40: case 38: case 36: case 46: { HEAP32[i1 + 4 >> 2] = 4; break; } default: __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 17756) | 0, HEAP32[i2 >> 2] | 0) | 0, 10) | 0; } while (0); return; } function __ZN4wasm17sigToFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i10 = i13; i11 = __Znwj(20) | 0; HEAP32[i11 >> 2] = 0; HEAP32[i11 + 4 >> 2] = 0; HEAP32[i11 + 8 >> 2] = 0; HEAP32[i11 + 12 >> 2] = 0; HEAP32[i11 + 16 >> 2] = 0; i12 = i1 + 11 | 0; if ((HEAP8[i12 >> 0] | 0) < 0) { i8 = i1; i9 = i1; i2 = HEAP32[i1 >> 2] | 0; } else { i8 = i1; i9 = i1; i2 = i1; } i4 = __ZN4wasm13sigToWasmTypeEc(HEAP8[i2 >> 0] | 0) | 0; HEAP32[i11 + 4 >> 2] = i4; i4 = i1 + 4 | 0; i5 = i11 + 8 | 0; i6 = i11 + 12 | 0; i7 = i11 + 16 | 0; i3 = 1; while (1) { i1 = HEAP8[i12 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; if (i2) i1 = HEAP32[i4 >> 2] | 0; else i1 = i1 & 255; if (i3 >>> 0 >= i1 >>> 0) break; if (i2) i1 = HEAP32[i9 >> 2] | 0; else i1 = i8; i1 = __ZN4wasm13sigToWasmTypeEc(HEAP8[i1 + i3 >> 0] | 0) | 0; HEAP32[i10 >> 2] = i1; i2 = HEAP32[i6 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = i1; HEAP32[i6 >> 2] = i2 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i5, i10); i3 = i3 + 1 | 0; } STACKTOP = i13; return i11 | 0; } function __ZN4wasm17WasmBinaryBuilder10visitBreakEPNS_5BreakEh(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0, i7 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5; if (HEAP8[i2 + 12 >> 0] | 0) { i6 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20120) | 0; i7 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i7; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i7 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i7 >> 2] | 0) + 28 >> 2] & 31](i7, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i7) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; } i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; if ((i1 | 1 | 0) != 1) ___assert_fail(20135, 18854, 1831, 20160); i7 = __ZN4wasm17WasmBinaryBuilder12getBreakNameEi(i2, __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0) | 0; HEAP32[i3 + 8 >> 2] = i7; if (i4 << 24 >> 24 == 7) { i7 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i2) | 0; HEAP32[i3 + 16 >> 2] = i7; } if ((i1 | 0) == 1) { i7 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i2) | 0; HEAP32[i3 + 12 >> 2] = i7; } if (HEAP32[i3 + 16 >> 2] | 0) HEAP32[i3 + 4 >> 2] = 0; STACKTOP = i5; return; } function __ZN4wasm15Asm2WasmBuilder14allocateGlobalEN6cashew7IStringENS_8WasmTypeEbS2_S2_(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i9; i8 = i1 + 40 | 0; if ((__ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i8, i2) | 0) != (i1 + 44 | 0)) ___assert_fail(14131, 11743, 189, 14179); i10 = i1 + 16 | 0; i5 = HEAP32[i5 >> 2] | 0; i6 = HEAP32[i6 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i10 >> 2]; HEAP32[i7 + 4 >> 2] = i3; HEAP8[i7 + 8 >> 0] = i4 & 1; HEAP32[i7 + 12 >> 2] = i5; HEAP32[i7 + 16 >> 2] = i6; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE25__emplace_unique_key_argsIS3_JRS3_S6_EEENS_4pairINS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEEbEERKT_DpOT0_(i9 + 24 | 0, i8, i2, i2, i7); i8 = (HEAP32[i10 >> 2] | 0) + 8 | 0; HEAP32[i10 >> 2] = i8; if (i8 >>> 0 < (HEAP32[i1 + 20 >> 2] | 0) >>> 0) { STACKTOP = i9; return; } else ___assert_fail(14194, 11743, 192, 14179); } function __ZNSt3__26vectorINS0_INS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEEENS4_IS8_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS8_RS9_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i10 = HEAP32[i6 >> 2] | 0; i8 = i10 + -16 | 0; i7 = i1 + -16 | 0; HEAP32[i8 >> 2] = 0; i9 = i10 + -12 | 0; HEAP32[i9 >> 2] = 0; i11 = HEAP32[i1 + -4 >> 2] | 0; HEAP32[i10 + -8 >> 2] = 0; HEAP32[i10 + -4 >> 2] = i11; HEAP32[i8 >> 2] = HEAP32[i7 >> 2]; i8 = i1 + -12 | 0; HEAP32[i9 >> 2] = HEAP32[i8 >> 2]; i9 = i1 + -8 | 0; HEAP32[i10 + -8 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = 0; HEAP32[i8 >> 2] = 0; HEAP32[i7 >> 2] = 0; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -16; i1 = i7; } i9 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i9; i9 = i3 + 8 | 0; i11 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i11; i9 = i2 + 8 | 0; i11 = i3 + 12 | 0; i10 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i11 >> 2] = i10; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSM_IJEEEEEENS_4pairINS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESN_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZN4wasm16PrintSExpression7visitIfEPNS_2IfE(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i4 >> 2] | 0, 33433, 0) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i4); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i4, HEAP32[i1 + 8 >> 2] | 0); i6 = i4 + 20 | 0; i3 = HEAP32[i1 + 12 >> 2] | 0; if ((((HEAP8[i6 >> 0] | 0) == 0 ? (HEAP32[i3 >> 2] | 0) == 1 : 0) ? (HEAP32[i3 + 8 >> 2] | 0) == 0 : 0) ? (i2 = i3 + 12 | 0, (HEAP32[i2 + 8 >> 2] | 0) == 1) : 0) { i3 = __ZNK11ArenaVectorIPN4wasm10ExpressionEE4backEv(i2) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i4, HEAP32[i3 >> 2] | 0); } else __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i4, i3); i1 = HEAP32[i1 + 16 >> 2] | 0; do if (i1 | 0) { if ((((HEAP8[i6 >> 0] | 0) == 0 ? (HEAP32[i1 >> 2] | 0) == 1 : 0) ? (HEAP32[i1 + 8 >> 2] | 0) == 0 : 0) ? (i5 = i1 + 12 | 0, (HEAP32[i5 + 8 >> 2] | 0) == 1) : 0) { i6 = __ZNK11ArenaVectorIPN4wasm10ExpressionEE4backEv(i5) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i4, HEAP32[i6 >> 2] | 0); break; } __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i4, i1); } while (0); __ZN4wasm16PrintSExpression9decIndentEv(i4); return; } function __ZN6cashew12ValueBuilder18appendCodeToSwitchENS_3RefES1_b(i4, i5, i1) { i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i7 + 8 | 0; i6 = i7 + 4 | 0; i2 = i7; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 45128) | 0)) ___assert_fail(29072, 34046, 1611, 29134); if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i5, 0) | 0, 45044) | 0)) ___assert_fail(29153, 34046, 1612, 29134); L7 : do if (i1) { i6 = __ZN6cashew3RefixEj(i4, 2) | 0; i6 = __ZN6cashew5Value4backEv(__ZN6cashew5Value4backEv(HEAP32[i6 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i6, i3) | 0; } else { i1 = 0; while (1) { i2 = __ZN6cashew3RefixEj(i5, 1) | 0; if (i1 >>> 0 >= (__ZN6cashew5Value4sizeEv(HEAP32[i2 >> 2] | 0) | 0) >>> 0) break L7; i2 = __ZN6cashew3RefixEj(i4, 2) | 0; i2 = __ZN6cashew5Value4backEv(__ZN6cashew5Value4backEv(HEAP32[i2 >> 2] | 0) | 0) | 0; i8 = __ZN6cashew3RefixEj(__ZN6cashew3RefixEj(i5, 1) | 0, i1) | 0; HEAP32[i6 >> 2] = HEAP32[i8 >> 2]; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i2, i3) | 0; i1 = i1 + 1 | 0; } } while (0); STACKTOP = i7; return; } function __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIRKS6_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 3) + 1 | 0; if (i6 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 2; __ZNSt3__214__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEEC2EjjS9_(i3, i9 >> 3 >>> 0 < 268435455 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 536870911, i4 - i5 >> 3, i1 + 8 | 0); i6 = i3 + 8 | 0; i4 = HEAP32[i2 + 4 >> 2] | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i5 + 4 >> 2] = i4; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 8; __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i1, i3); __ZNSt3__214__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 3) + 1 | 0; if (i6 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 2; __ZNSt3__214__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEEC2EjjS9_(i3, i9 >> 3 >>> 0 < 268435455 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 536870911, i4 - i5 >> 3, i1 + 8 | 0); i6 = i3 + 8 | 0; i4 = HEAP32[i2 + 4 >> 2] | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i5 + 4 >> 2] = i4; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 8; __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i1, i3); __ZNSt3__214__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN4wasm22SExpressionWasmBuilder14makeBreakTableERNS_7ElementE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i8 + 4 | 0; i2 = i8; i7 = __ZN10MixedArena5allocIN4wasm6SwitchEEEPT_v(HEAP32[i5 + 4 >> 2] | 0) | 0; i3 = i7 + 8 | 0; i4 = 1; while (1) { i9 = __ZN4wasm7ElementixEj(i6, i4) | 0; if (HEAP8[i9 >> 0] | 0) break; i9 = __ZN4wasm22SExpressionWasmBuilder8getLabelERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i6, i4) | 0) | 0; HEAP32[i2 >> 2] = i9; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; __ZN11ArenaVectorIN4wasm4NameEE9push_backES1_(i3, i1); i4 = i4 + 1 | 0; } i2 = __ZNK11ArenaVectorIN4wasm4NameEE4backEv(i3) | 0; HEAP32[i7 + 24 >> 2] = HEAP32[i2 >> 2]; __ZN11ArenaVectorIN4wasm4NameEE8pop_backEv(i3) | 0; i2 = i4 + 1 | 0; i9 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i6, i4) | 0) | 0; i1 = i7 + 28 | 0; HEAP32[i1 >> 2] = i9; i9 = (__ZN4wasm7Element4listEv(i6) | 0) + 8 | 0; if (i2 >>> 0 < (HEAP32[i9 >> 2] | 0) >>> 0) { HEAP32[i7 + 32 >> 2] = HEAP32[i1 >> 2]; i9 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i5, __ZN4wasm7ElementixEj(i6, i2) | 0) | 0; HEAP32[i1 >> 2] = i9; } STACKTOP = i8; return i7 | 0; } function __ZNSt3__26vectorINS0_IN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEENS4_IS6_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i10 = HEAP32[i6 >> 2] | 0; i8 = i10 + -16 | 0; i7 = i1 + -16 | 0; HEAP32[i8 >> 2] = 0; i9 = i10 + -12 | 0; HEAP32[i9 >> 2] = 0; i11 = HEAP32[i1 + -4 >> 2] | 0; HEAP32[i10 + -8 >> 2] = 0; HEAP32[i10 + -4 >> 2] = i11; HEAP32[i8 >> 2] = HEAP32[i7 >> 2]; i8 = i1 + -12 | 0; HEAP32[i9 >> 2] = HEAP32[i8 >> 2]; i9 = i1 + -8 | 0; HEAP32[i10 + -8 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = 0; HEAP32[i8 >> 2] = 0; HEAP32[i7 >> 2] = 0; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -16; i1 = i7; } i9 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i9; i9 = i3 + 8 | 0; i11 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i11; i9 = i2 + 8 | 0; i11 = i3 + 12 | 0; i10 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i11 >> 2] = i10; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function _mbtowc(i1, i6, i4) { i1 = i1 | 0; i6 = i6 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0, i5 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i7; L1 : do if (!i6) i1 = 0; else { do if (i4 | 0) { i5 = (i1 | 0) == 0 ? i2 : i1; i1 = HEAP8[i6 >> 0] | 0; i2 = i1 & 255; if (i1 << 24 >> 24 > -1) { HEAP32[i5 >> 2] = i2; i1 = i1 << 24 >> 24 != 0 & 1; break L1; } i1 = i2 + -194 | 0; if (i1 >>> 0 <= 50) { i2 = i6 + 1 | 0; i3 = HEAP32[3576 + (i1 << 2) >> 2] | 0; if (i4 >>> 0 < 4 ? i3 & -2147483648 >>> ((i4 * 6 | 0) + -6 | 0) | 0 : 0) break; i1 = HEAPU8[i2 >> 0] | 0; i4 = i1 >>> 3; if ((i4 + -16 | i4 + (i3 >> 26)) >>> 0 <= 7) { i1 = i1 + -128 | i3 << 6; if ((i1 | 0) >= 0) { HEAP32[i5 >> 2] = i1; i1 = 2; break L1; } i2 = (HEAPU8[i6 + 2 >> 0] | 0) + -128 | 0; if (i2 >>> 0 <= 63) { i2 = i2 | i1 << 6; if ((i2 | 0) >= 0) { HEAP32[i5 >> 2] = i2; i1 = 3; break L1; } i1 = (HEAPU8[i6 + 3 >> 0] | 0) + -128 | 0; if (i1 >>> 0 <= 63) { HEAP32[i5 >> 2] = i1 | i2 << 6; i1 = 4; break L1; } } } } } while (0); i1 = ___errno_location() | 0; HEAP32[i1 >> 2] = 84; i1 = -1; } while (0); STACKTOP = i7; return i1 | 0; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE7visitIfEPNS_2IfE(i3, i4, i1) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i2 = i5; __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i2, i4, HEAP32[i1 + 8 >> 2] | 0); do if (!(HEAP32[i2 + 16 >> 2] | 0)) if (!(__ZNK4wasm7Literal6geti32Ev(i2) | 0)) { i1 = HEAP32[i1 + 16 >> 2] | 0; if (!i1) { HEAP32[i3 >> 2] = 0; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i3 + 16 >> 2] = 0; break; } else { __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i3, i4, i1); break; } } else { __ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i3, i4, HEAP32[i1 + 12 >> 2] | 0); if (HEAP32[i3 + 16 >> 2] | 0) break; if (HEAP32[i1 + 16 >> 2] | 0) break; HEAP32[i3 >> 2] = 0; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; break; } else { HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; HEAP32[i3 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i3 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i3 + 12 >> 2] = HEAP32[i2 + 12 >> 2]; HEAP32[i3 + 16 >> 2] = HEAP32[i2 + 16 >> 2]; HEAP32[i3 + 20 >> 2] = HEAP32[i2 + 20 >> 2]; } while (0); STACKTOP = i5; return; } function __ZNSt3__26vectorIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i8; i6 = HEAP32[i1 + 4 >> 2] | 0; i7 = HEAP32[i1 >> 2] | 0; i3 = (i6 - i7 >> 3) + 1 | 0; if (i3 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i10 = (HEAP32[i1 + 8 >> 2] | 0) - i7 | 0; i9 = i10 >> 2; __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEEC2EjjSA_(i5, i10 >> 3 >>> 0 < 268435455 ? (i9 >>> 0 < i3 >>> 0 ? i3 : i9) : 536870911, i6 - i7 >> 3, i1 + 8 | 0); i7 = i5 + 8 | 0; i6 = HEAP32[i7 >> 2] | 0; i4 = HEAP32[i4 >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = i4; HEAP32[i7 >> 2] = i6 + 8; __ZNSt3__26vectorIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS7_RS9_EE(i1, i5); __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEED2Ev(i5); STACKTOP = i8; return; } } function __ZN4wasm10TypeSeeker10visitBlockEPNS_5BlockE(i5, i1) { i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i6; L1 : do if ((i1 | 0) == (HEAP32[i5 + 24 >> 2] | 0)) { i4 = i5 + 32 | 0; if (HEAP32[i1 + 20 >> 2] | 0) { i1 = __ZNK11ArenaVectorIPN4wasm10ExpressionEE4backEv(i1 + 12 | 0) | 0; i1 = (HEAP32[i1 >> 2] | 0) + 4 | 0; i2 = i5 + 36 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i5 + 40 >> 2] | 0)) { __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i1); break; } else { HEAP32[i3 >> 2] = HEAP32[i1 >> 2]; HEAP32[i2 >> 2] = i3 + 4; break; } } HEAP32[i3 >> 2] = 0; i1 = i5 + 36 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i5 + 40 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = 0; HEAP32[i1 >> 2] = i2 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i4, i3); } else if ((HEAP32[i1 + 8 >> 2] | 0) == (HEAP32[i5 + 28 >> 2] | 0)) { i3 = HEAP32[i5 + 32 >> 2] | 0; i1 = i5 + 36 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break L1; i5 = i2 + -4 | 0; HEAP32[i1 >> 2] = i5; i2 = i5; } } while (0); STACKTOP = i6; return; } function __ZNSt3__26vectorIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i8; i6 = HEAP32[i1 + 4 >> 2] | 0; i7 = HEAP32[i1 >> 2] | 0; i3 = (i6 - i7 >> 3) + 1 | 0; if (i3 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i10 = (HEAP32[i1 + 8 >> 2] | 0) - i7 | 0; i9 = i10 >> 2; __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEEC2EjjSA_(i5, i10 >> 3 >>> 0 < 268435455 ? (i9 >>> 0 < i3 >>> 0 ? i3 : i9) : 536870911, i6 - i7 >> 3, i1 + 8 | 0); i7 = i5 + 8 | 0; i6 = HEAP32[i7 >> 2] | 0; i4 = HEAP32[i4 >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = i4; HEAP32[i7 >> 2] = i6 + 8; __ZNSt3__26vectorIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS7_RS9_EE(i1, i5); __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEED2Ev(i5); STACKTOP = i8; return; } } function __ZNSt3__26vectorIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i8; i6 = HEAP32[i1 + 4 >> 2] | 0; i7 = HEAP32[i1 >> 2] | 0; i3 = (i6 - i7 >> 3) + 1 | 0; if (i3 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i10 = (HEAP32[i1 + 8 >> 2] | 0) - i7 | 0; i9 = i10 >> 2; __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEEC2EjjSA_(i5, i10 >> 3 >>> 0 < 268435455 ? (i9 >>> 0 < i3 >>> 0 ? i3 : i9) : 536870911, i6 - i7 >> 3, i1 + 8 | 0); i7 = i5 + 8 | 0; i6 = HEAP32[i7 >> 2] | 0; i4 = HEAP32[i4 >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = i4; HEAP32[i7 >> 2] = i6 + 8; __ZNSt3__26vectorIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS7_RS9_EE(i1, i5); __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEED2Ev(i5); STACKTOP = i8; return; } } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE21__grow_by_and_replaceEjjjjjjPKw(i5, i6, i1, i2, i10, i11, i12, i4) { i5 = i5 | 0; i6 = i6 | 0; i1 = i1 | 0; i2 = i2 | 0; i10 = i10 | 0; i11 = i11 | 0; i12 = i12 | 0; i4 = i4 | 0; var i3 = 0, i7 = 0, i8 = 0, i9 = 0; if ((1073741806 - i6 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i5); i7 = i5 + 8 | 0; if ((HEAP8[i7 + 3 >> 0] | 0) < 0) i9 = HEAP32[i5 >> 2] | 0; else i9 = i5; if (i6 >>> 0 < 536870887) { i1 = i1 + i6 | 0; i3 = i6 << 1; i1 = i1 >>> 0 < i3 >>> 0 ? i3 : i1; i1 = i1 >>> 0 < 2 ? 2 : i1 + 4 & -4; if (i1 >>> 0 > 1073741823) ___assert_fail(41459, 41496, 1734, 41599); else i8 = i1; } else i8 = 1073741807; i3 = __Znwj(i8 << 2) | 0; if (i10 | 0) __ZNSt3__211char_traitsIwE4copyEPwPKwj(i3, i9, i10) | 0; if (i12 | 0) __ZNSt3__211char_traitsIwE4copyEPwPKwj(i3 + (i10 << 2) | 0, i4, i12) | 0; i1 = i2 - i11 | 0; i2 = i1 - i10 | 0; if (i2 | 0) __ZNSt3__211char_traitsIwE4copyEPwPKwj(i3 + (i10 << 2) + (i12 << 2) | 0, i9 + (i10 << 2) + (i11 << 2) | 0, i2) | 0; if ((i6 | 0) != 1) __ZdlPv(i9); HEAP32[i5 >> 2] = i3; HEAP32[i7 >> 2] = i8 | -2147483648; i12 = i1 + i12 | 0; HEAP32[i5 + 4 >> 2] = i12; HEAP32[i3 + (i12 << 2) >> 2] = 0; return; } function __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE8__appendEj(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i8; i3 = HEAP32[i5 + 8 >> 2] | 0; i4 = HEAP32[i5 + 4 >> 2] | 0; if (i3 - i4 >> 4 >>> 0 < i6 >>> 0) { i1 = HEAP32[i5 >> 2] | 0; i2 = (i4 - i1 >> 4) + i6 | 0; if (i2 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i5); i9 = i3 - i1 | 0; i3 = i9 >> 3; __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i7, i9 >> 4 >>> 0 < 134217727 ? (i3 >>> 0 < i2 >>> 0 ? i2 : i3) : 268435455, i4 - i1 >> 4, i5 + 8 | 0); i3 = i7 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; i1 = i6; i4 = i2; while (1) { HEAP32[i4 >> 2] = 0; i9 = i4 + 8 | 0; HEAP32[i9 >> 2] = 0; HEAP32[i9 + 4 >> 2] = 0; i1 = i1 + -1 | 0; if (!i1) break; else i4 = i4 + 16 | 0; } HEAP32[i3 >> 2] = i2 + (i6 << 4); __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i5, i7); __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEED2Ev(i7); } else __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE18__construct_at_endEj(i5, i6); STACKTOP = i8; return; } function __ZN4wasm17WasmBinaryBuilder17readFunctionTableEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i10; if (HEAP8[i2 + 12 >> 0] | 0) { i9 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 21450) | 0; i8 = __ZNKSt3__28ios_base6getlocEv(i9 + (HEAP32[(HEAP32[i9 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i8; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i8 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i8 >> 2] | 0) + 28 >> 2] & 31](i8, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i9, i8) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i9) | 0; } i4 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; i5 = i2 + 116 | 0; i6 = i2 + 120 | 0; i7 = i2 + 112 | 0; i1 = 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i8 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; HEAP32[i3 >> 2] = i8; i9 = HEAP32[i5 >> 2] | 0; if ((i9 | 0) == (HEAP32[i6 >> 2] | 0)) __ZNSt3__26vectorIjNS_9allocatorIjEEE21__push_back_slow_pathIRKjEEvOT_(i7, i3); else { HEAP32[i9 >> 2] = i8; HEAP32[i5 >> 2] = i9 + 4; } i1 = i1 + 1 | 0; } STACKTOP = i10; return; } function __ZZN4wasm17WasmBinaryBuilder4readEvENKUlPKcE_clES2_(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i8 = HEAP32[i3 + 4 >> 2] | 0; i9 = HEAP32[HEAP32[i3 >> 2] >> 2] | 0; i10 = i8 + 16 | 0; i11 = i8 + 8 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= i9 >>> 0) { i12 = 6; break; } i5 = (HEAP32[i10 >> 2] | 0) + i1 | 0; i7 = HEAP32[i11 >> 2] | 0; i6 = HEAP32[i7 >> 2] | 0; if (i5 >>> 0 >= ((HEAP32[i7 + 4 >> 2] | 0) - i6 | 0) >>> 0) { i2 = 0; break; } i7 = HEAP8[i4 + i1 >> 0] | 0; if (!(i7 << 24 >> 24)) { i2 = 0; break; } if ((HEAP8[i6 + i5 >> 0] | 0) == i7 << 24 >> 24) i1 = i1 + 1 | 0; else { i2 = 0; break; } } if ((i12 | 0) == 6) if ((_strlen(i4) | 0) == (i9 | 0)) { HEAP32[i10 >> 2] = (HEAP32[i10 >> 2] | 0) + i9; i12 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i8) | 0; i9 = i3 + 8 | 0; HEAP32[HEAP32[i9 >> 2] >> 2] = i12; HEAP32[HEAP32[i3 + 12 >> 2] >> 2] = HEAP32[i10 >> 2]; i12 = HEAP32[i11 >> 2] | 0; if (((HEAP32[HEAP32[i9 >> 2] >> 2] | 0) + (HEAP32[i10 >> 2] | 0) | 0) >>> 0 > ((HEAP32[i12 + 4 >> 2] | 0) - (HEAP32[i12 >> 2] | 0) | 0) >>> 0) ___assert_fail(19348, 18854, 1247, 42730); else i2 = 1; } else i2 = 0; return i2 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE25__emplace_unique_key_argsIS3_JRS3_S6_EEENS_4pairINS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEEbEERKT_DpOT0_(i7, i3, i1, i4, i5) { i7 = i7 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; var i2 = 0, i6 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i8; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESK_RKT_(i3, i6, i1) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(32) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[i4 >> 2]; i4 = i1 + 20 | 0; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i3, HEAP32[i6 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i7 >> 2] = i1; HEAP8[i7 + 4 >> 0] = i2; STACKTOP = i8; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE11parseReturnERPcPKc(i2, i8, i6) { i2 = i2 | 0; i8 = i8 | 0; i6 = i6 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i9 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i11 + 4 | 0; i9 = i11; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i8); i3 = HEAP8[HEAP32[i8 >> 2] >> 0] | 0; i1 = i6; while (1) { i4 = HEAP8[i1 >> 0] | 0; if (!(i4 << 24 >> 24)) { i10 = 4; break; } if (i4 << 24 >> 24 == i3 << 24 >> 24) { i3 = 0; break; } else i1 = i1 + 1 | 0; } if ((i10 | 0) == 4) i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i2, i8, i6) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i8); i4 = HEAP32[i8 >> 2] | 0; i5 = HEAP8[i4 >> 0] | 0; i1 = i6; while (1) { i2 = HEAP8[i1 >> 0] | 0; if (!(i2 << 24 >> 24)) { i10 = 8; break; } if (i2 << 24 >> 24 == i5 << 24 >> 24) break; else i1 = i1 + 1 | 0; } if ((i10 | 0) == 8) ___assert_fail(28880, 28546, 463, 28900); if (i5 << 24 >> 24 == 59) HEAP32[i8 >> 2] = i4 + 1; HEAP32[i9 >> 2] = i3; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; i10 = __ZN6cashew12ValueBuilder10makeReturnENS_3RefE(i7) | 0; STACKTOP = i11; return i10 | 0; } function __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA10_KcbNS2_4TypeEEEEvDpOT_(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i9; i7 = HEAP32[i1 + 4 >> 2] | 0; i8 = HEAP32[i1 >> 2] | 0; i3 = ((i7 - i8 | 0) / 40 | 0) + 1 | 0; if (i3 >>> 0 > 107374182) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i11 = ((HEAP32[i1 + 8 >> 2] | 0) - i8 | 0) / 40 | 0; i10 = i11 << 1; __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i6, i11 >>> 0 < 53687091 ? (i10 >>> 0 < i3 >>> 0 ? i3 : i10) : 107374182, (i7 - i8 | 0) / 40 | 0, i1 + 8 | 0); i8 = i6 + 8 | 0; i7 = HEAP32[i8 >> 2] | 0; i4 = HEAP8[i4 >> 0] | 0; i5 = HEAP32[i5 >> 2] | 0; __ZN6cashew10IStringSetC2EPKc(i7, i2); HEAP8[i7 + 32 >> 0] = i4; HEAP32[i7 + 36 >> 2] = i5; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 40; __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i6); __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEED2Ev(i6); STACKTOP = i9; return; } } function __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA8_KcbNS2_4TypeEEEEvDpOT_(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i9; i7 = HEAP32[i1 + 4 >> 2] | 0; i8 = HEAP32[i1 >> 2] | 0; i3 = ((i7 - i8 | 0) / 40 | 0) + 1 | 0; if (i3 >>> 0 > 107374182) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i11 = ((HEAP32[i1 + 8 >> 2] | 0) - i8 | 0) / 40 | 0; i10 = i11 << 1; __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i6, i11 >>> 0 < 53687091 ? (i10 >>> 0 < i3 >>> 0 ? i3 : i10) : 107374182, (i7 - i8 | 0) / 40 | 0, i1 + 8 | 0); i8 = i6 + 8 | 0; i7 = HEAP32[i8 >> 2] | 0; i4 = HEAP8[i4 >> 0] | 0; i5 = HEAP32[i5 >> 2] | 0; __ZN6cashew10IStringSetC2EPKc(i7, i2); HEAP8[i7 + 32 >> 0] = i4; HEAP32[i7 + 36 >> 2] = i5; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 40; __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i6); __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEED2Ev(i6); STACKTOP = i9; return; } } function __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA6_KcbNS2_4TypeEEEEvDpOT_(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i9; i7 = HEAP32[i1 + 4 >> 2] | 0; i8 = HEAP32[i1 >> 2] | 0; i3 = ((i7 - i8 | 0) / 40 | 0) + 1 | 0; if (i3 >>> 0 > 107374182) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i11 = ((HEAP32[i1 + 8 >> 2] | 0) - i8 | 0) / 40 | 0; i10 = i11 << 1; __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i6, i11 >>> 0 < 53687091 ? (i10 >>> 0 < i3 >>> 0 ? i3 : i10) : 107374182, (i7 - i8 | 0) / 40 | 0, i1 + 8 | 0); i8 = i6 + 8 | 0; i7 = HEAP32[i8 >> 2] | 0; i4 = HEAP8[i4 >> 0] | 0; i5 = HEAP32[i5 >> 2] | 0; __ZN6cashew10IStringSetC2EPKc(i7, i2); HEAP8[i7 + 32 >> 0] = i4; HEAP32[i7 + 36 >> 2] = i5; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 40; __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i6); __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEED2Ev(i6); STACKTOP = i9; return; } } function __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA4_KcbNS2_4TypeEEEEvDpOT_(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i9; i7 = HEAP32[i1 + 4 >> 2] | 0; i8 = HEAP32[i1 >> 2] | 0; i3 = ((i7 - i8 | 0) / 40 | 0) + 1 | 0; if (i3 >>> 0 > 107374182) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i11 = ((HEAP32[i1 + 8 >> 2] | 0) - i8 | 0) / 40 | 0; i10 = i11 << 1; __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i6, i11 >>> 0 < 53687091 ? (i10 >>> 0 < i3 >>> 0 ? i3 : i10) : 107374182, (i7 - i8 | 0) / 40 | 0, i1 + 8 | 0); i8 = i6 + 8 | 0; i7 = HEAP32[i8 >> 2] | 0; i4 = HEAP8[i4 >> 0] | 0; i5 = HEAP32[i5 >> 2] | 0; __ZN6cashew10IStringSetC2EPKc(i7, i2); HEAP8[i7 + 32 >> 0] = i4; HEAP32[i7 + 36 >> 2] = i5; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 40; __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i6); __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEED2Ev(i6); STACKTOP = i9; return; } } function __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRA2_KcbNS2_4TypeEEEEvDpOT_(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i9; i7 = HEAP32[i1 + 4 >> 2] | 0; i8 = HEAP32[i1 >> 2] | 0; i3 = ((i7 - i8 | 0) / 40 | 0) + 1 | 0; if (i3 >>> 0 > 107374182) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i11 = ((HEAP32[i1 + 8 >> 2] | 0) - i8 | 0) / 40 | 0; i10 = i11 << 1; __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i6, i11 >>> 0 < 53687091 ? (i10 >>> 0 < i3 >>> 0 ? i3 : i10) : 107374182, (i7 - i8 | 0) / 40 | 0, i1 + 8 | 0); i8 = i6 + 8 | 0; i7 = HEAP32[i8 >> 2] | 0; i4 = HEAP8[i4 >> 0] | 0; i5 = HEAP32[i5 >> 2] | 0; __ZN6cashew10IStringSetC2EPKc(i7, i2); HEAP8[i7 + 32 >> 0] = i4; HEAP32[i7 + 36 >> 2] = i5; HEAP32[i8 >> 2] = (HEAP32[i8 >> 2] | 0) + 40; __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i6); __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEED2Ev(i6); STACKTOP = i9; return; } } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendIPKcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorISC_EE5valueERS7_E4typeESC_SC_(i9, i5, i8) { i9 = i9 | 0; i5 = i5 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i10 = 0; i3 = i5; i10 = i9 + 11 | 0; i1 = HEAP8[i10 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i7 = HEAP32[i9 + 4 >> 2] | 0; i2 = (HEAP32[i9 + 8 >> 2] & 2147483647) + -1 | 0; } else { i7 = i1 & 255; i2 = 10; } i6 = i8 - i3 | 0; do if (i6 | 0) { if ((i2 - i7 | 0) >>> 0 < i6 >>> 0) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i9, i2, i7 + i6 - i2 | 0, i7, i7, 0); i1 = HEAP8[i10 >> 0] | 0; } if (i1 << 24 >> 24 < 0) i4 = HEAP32[i9 >> 2] | 0; else i4 = i9; i3 = i8 + (i7 - i3) | 0; i2 = i4 + i7 | 0; i1 = i5; while (1) { if ((i1 | 0) == (i8 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i2 = i2 + 1 | 0; i1 = i1 + 1 | 0; } HEAP8[i4 + i3 >> 0] = 0; i1 = i7 + i6 | 0; if ((HEAP8[i10 >> 0] | 0) < 0) { HEAP32[i9 + 4 >> 2] = i1; break; } else { HEAP8[i10 >> 0] = i1; break; } } while (0); return; } function ___stpncpy(i2, i3, i1) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; var i4 = 0, i5 = 0, i6 = 0; i5 = i3; do if (!((i5 ^ i2) & 3)) { i4 = (i1 | 0) != 0; L3 : do if (i4 & (i5 & 3 | 0) != 0) while (1) { i5 = HEAP8[i3 >> 0] | 0; HEAP8[i2 >> 0] = i5; if (!(i5 << 24 >> 24)) break L3; i1 = i1 + -1 | 0; i3 = i3 + 1 | 0; i2 = i2 + 1 | 0; i4 = (i1 | 0) != 0; if (!(i4 & (i3 & 3 | 0) != 0)) { i6 = 5; break; } } else i6 = 5; while (0); if ((i6 | 0) == 5) if (!i4) { i1 = 0; break; } if (HEAP8[i3 >> 0] | 0) { L11 : do if (i1 >>> 0 > 3) { i4 = i3; while (1) { i3 = HEAP32[i4 >> 2] | 0; if ((i3 & -2139062144 ^ -2139062144) & i3 + -16843009 | 0) { i3 = i4; break L11; } HEAP32[i2 >> 2] = i3; i1 = i1 + -4 | 0; i3 = i4 + 4 | 0; i2 = i2 + 4 | 0; if (i1 >>> 0 > 3) i4 = i3; else break; } } while (0); i6 = 11; } } else i6 = 11; while (0); L16 : do if ((i6 | 0) == 11) if (!i1) i1 = 0; else while (1) { i6 = HEAP8[i3 >> 0] | 0; HEAP8[i2 >> 0] = i6; if (!(i6 << 24 >> 24)) break L16; i1 = i1 + -1 | 0; i2 = i2 + 1 | 0; if (!i1) { i1 = 0; break; } else i3 = i3 + 1 | 0; } while (0); _memset(i2 | 0, 0, i1 | 0) | 0; return i2 | 0; } function __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE8__appendEj(i6, i1) { i6 = i6 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i8; i5 = HEAP32[i6 + 8 >> 2] | 0; i2 = HEAP32[i6 + 4 >> 2] | 0; if (i5 - i2 >> 2 >>> 0 < i1 >>> 0) { i4 = HEAP32[i6 >> 2] | 0; i2 = i2 - i4 >> 2; i3 = i2 + i1 | 0; if (i3 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); i4 = i5 - i4 | 0; i5 = i4 >> 1; __ZNSt3__214__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_Lj28EEEEC2EjjS6_(i7, i4 >> 2 >>> 0 < 536870911 ? (i5 >>> 0 < i3 >>> 0 ? i3 : i5) : 1073741823, i2, i6 + 16 | 0); i3 = i7 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; do { HEAP32[i2 >> 2] = 0; i2 = (HEAP32[i3 >> 2] | 0) + 4 | 0; HEAP32[i3 >> 2] = i2; i1 = i1 + -1 | 0; } while ((i1 | 0) != 0); __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_Lj28EEEED2Ev(i7); } else __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE18__construct_at_endEj(i6, i1); STACKTOP = i8; return; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendIPwEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorIS9_EE5valueERS5_E4typeES9_S9_(i10, i6, i9) { i10 = i10 | 0; i6 = i6 | 0; i9 = i9 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i11 = 0; i3 = i6; i2 = i10 + 8 | 0; i11 = i2 + 3 | 0; i1 = HEAP8[i11 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i8 = HEAP32[i10 + 4 >> 2] | 0; i2 = (HEAP32[i2 >> 2] & 2147483647) + -1 | 0; } else { i8 = i1 & 255; i2 = 1; } i7 = i9 - i3 >> 2; do if (i7 | 0) { if ((i2 - i8 | 0) >>> 0 < i7 >>> 0) { __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i10, i2, i8 + i7 - i2 | 0, i8, i8, 0, 0); i1 = HEAP8[i11 >> 0] | 0; } i5 = i1 << 24 >> 24 < 0; if (i5) i4 = HEAP32[i10 >> 2] | 0; else i4 = i10; i3 = i8 + ((i9 - i3 | 0) >>> 2) | 0; i2 = i4 + (i8 << 2) | 0; i1 = i6; while (1) { if ((i1 | 0) == (i9 | 0)) break; HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; i2 = i2 + 4 | 0; i1 = i1 + 4 | 0; } HEAP32[i4 + (i3 << 2) >> 2] = 0; i1 = i8 + i7 | 0; if (i5) { HEAP32[i10 + 4 >> 2] = i1; break; } else { HEAP8[i11 >> 0] = i1; break; } } while (0); return i10 | 0; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE6rehashEj(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0; if ((i1 | 0) != 1) { if (i1 + -1 & i1) i1 = __ZNSt3__212__next_primeEj(i1) | 0; } else i1 = 2; i3 = HEAP32[i4 + 4 >> 2] | 0; if (i1 >>> 0 <= i3 >>> 0) { if (i1 >>> 0 < i3 >>> 0) { i2 = ~~+Math_ceil(+(+((HEAP32[i4 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i4 + 16 >> 2])) >>> 0; if (i3 >>> 0 > 2 & (i3 + -1 & i3 | 0) == 0) i2 = 1 << 32 - (Math_clz32(i2 + -1 | 0) | 0); else i2 = __ZNSt3__212__next_primeEj(i2) | 0; i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1; if (i1 >>> 0 < i3 >>> 0) __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE8__rehashEj(i4, i1); } } else __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE8__rehashEj(i4, i1); return; } function __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS9_RSA_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i10 = HEAP32[i6 >> 2] | 0; i8 = i10 + -12 | 0; i7 = i1 + -12 | 0; HEAP32[i8 >> 2] = 0; i9 = i10 + -8 | 0; HEAP32[i9 >> 2] = 0; HEAP32[i10 + -4 >> 2] = 0; HEAP32[i8 >> 2] = HEAP32[i7 >> 2]; i8 = i1 + -8 | 0; HEAP32[i9 >> 2] = HEAP32[i8 >> 2]; i9 = i1 + -4 | 0; HEAP32[i10 + -4 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = 0; HEAP32[i8 >> 2] = 0; HEAP32[i7 >> 2] = 0; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -12; i1 = i7; } i8 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i8; i8 = i3 + 8 | 0; i10 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i8 >> 2]; HEAP32[i8 >> 2] = i10; i8 = i2 + 8 | 0; i10 = i3 + 12 | 0; i9 = HEAP32[i8 >> 2] | 0; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; HEAP32[i10 >> 2] = i9; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZNSt3__216__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj(i5, i1, i6, i9) { i5 = i5 | 0; i1 = i1 | 0; i6 = i6 | 0; i9 = i9 | 0; var i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i10 = 0, i11 = 0; i8 = HEAP8[i5 + 11 >> 0] | 0; i7 = i8 << 24 >> 24 < 0; i4 = i5 + 4 | 0; i2 = HEAP32[i4 >> 2] | 0; i8 = i8 & 255; do if ((i7 ? i2 : i8) | 0) { if ((i1 | 0) != (i6 | 0)) { i2 = i6; i3 = i1; while (1) { i2 = i2 + -4 | 0; if (i3 >>> 0 >= i2 >>> 0) break; i11 = HEAP32[i3 >> 2] | 0; HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = i11; i3 = i3 + 4 | 0; } i2 = HEAP32[i4 >> 2] | 0; } i11 = i7 ? HEAP32[i5 >> 2] | 0 : i5; i6 = i6 + -4 | 0; i5 = i11 + (i7 ? i2 : i8) | 0; i2 = i11; while (1) { i3 = HEAP8[i2 >> 0] | 0; i4 = i3 << 24 >> 24 > 0 & i3 << 24 >> 24 != 127; if (i1 >>> 0 >= i6 >>> 0) break; if (i4 ? (i3 << 24 >> 24 | 0) != (HEAP32[i1 >> 2] | 0) : 0) { i10 = 10; break; } i1 = i1 + 4 | 0; i2 = (i5 - i2 | 0) > 1 ? i2 + 1 | 0 : i2; } if ((i10 | 0) == 10) { HEAP32[i9 >> 2] = 4; break; } if (i4 ? ((HEAP32[i6 >> 2] | 0) + -1 | 0) >>> 0 >= i3 << 24 >> 24 >>> 0 : 0) HEAP32[i9 >> 2] = 4; } while (0); return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i10, i5, i6, i7, i8) { i1 = i1 | 0; i10 = i10 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i2 = 0, i3 = 0, i4 = 0, i9 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i11 + 4 | 0; i9 = i11; i3 = i1 + 8 | 0; i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3) | 0; i1 = HEAP8[i3 + 8 + 3 >> 0] | 0; if (i1 << 24 >> 24 < 0) i2 = HEAP32[i3 + 4 >> 2] | 0; else i2 = i1 & 255; i1 = HEAP8[i3 + 20 + 3 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i3 + 16 >> 2] | 0; else i1 = i1 & 255; do if ((i2 | 0) != (0 - i1 | 0)) { HEAP32[i9 >> 2] = HEAP32[i6 >> 2]; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; i1 = (__ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i5, i4, i3, i3 + 24 | 0, i8, i7, 0) | 0) - i3 | 0; i2 = HEAP32[i10 >> 2] | 0; if ((i2 | 0) == 12 & (i1 | 0) == 0) { HEAP32[i10 >> 2] = 0; break; } if ((i2 | 0) < 12 & (i1 | 0) == 12) HEAP32[i10 >> 2] = i2 + 12; } else HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 4; while (0); STACKTOP = i11; return; } function __ZN4wasm17WasmBinaryBuilder13visitGetLocalEPNS_8GetLocalE(i2, i4) { i2 = i2 | 0; i4 = i4 | 0; var i1 = 0, i3 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5; if (HEAP8[i2 + 12 >> 0] | 0) { i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20472) | 0; i3 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i3, HEAP32[i2 + 16 >> 2] | 0) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i3, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i3) | 0; } i6 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; i3 = i4 + 8 | 0; HEAP32[i3 >> 2] = i6; i1 = i2 + 64 | 0; if (i6 >>> 0 < (__ZN4wasm8Function12getNumLocalsEv(HEAP32[i1 >> 2] | 0) | 0) >>> 0) { i6 = __ZN4wasm8Function12getLocalTypeEj(HEAP32[i1 >> 2] | 0, HEAP32[i3 >> 2] | 0) | 0; HEAP32[i4 + 4 >> 2] = i6; STACKTOP = i5; return; } else ___assert_fail(20491, 18854, 1900, 20534); } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; HEAP32[i5 >> 2] = i4; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorINS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i1, i3); __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i10, i5, i6, i7, i8) { i1 = i1 | 0; i10 = i10 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i2 = 0, i3 = 0, i4 = 0, i9 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i11 + 4 | 0; i9 = i11; i3 = i1 + 8 | 0; i3 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 8 >> 2] & 127](i3) | 0; i1 = HEAP8[i3 + 11 >> 0] | 0; if (i1 << 24 >> 24 < 0) i2 = HEAP32[i3 + 4 >> 2] | 0; else i2 = i1 & 255; i1 = HEAP8[i3 + 12 + 11 >> 0] | 0; if (i1 << 24 >> 24 < 0) i1 = HEAP32[i3 + 16 >> 2] | 0; else i1 = i1 & 255; do if ((i2 | 0) != (0 - i1 | 0)) { HEAP32[i9 >> 2] = HEAP32[i6 >> 2]; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; i1 = (__ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i5, i4, i3, i3 + 24 | 0, i8, i7, 0) | 0) - i3 | 0; i2 = HEAP32[i10 >> 2] | 0; if ((i2 | 0) == 12 & (i1 | 0) == 0) { HEAP32[i10 >> 2] = 0; break; } if ((i2 | 0) < 12 & (i1 | 0) == 12) HEAP32[i10 >> 2] = i2 + 12; } else HEAP32[i7 >> 2] = HEAP32[i7 >> 2] | 4; while (0); STACKTOP = i11; return; } function __ZN4wasm7Builder6addVarEPNS_8FunctionENS_4NameENS_8WasmTypeE(i6, i7, i3) { i6 = i6 | 0; i7 = i7 | 0; i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i8; HEAP32[i5 >> 2] = i3; i1 = i6 + 20 | 0; i2 = i6 + 24 | 0; i9 = HEAP32[i2 >> 2] | 0; i4 = i9; if ((HEAP32[i6 + 60 >> 2] | 0) != ((i9 - (HEAP32[i1 >> 2] | 0) >> 2) + ((HEAP32[i6 + 12 >> 2] | 0) - (HEAP32[i6 + 8 >> 2] | 0) >> 2) | 0)) ___assert_fail(16700, 16672, 228, 16769); if (i4 >>> 0 < (HEAP32[i6 + 28 >> 2] | 0) >>> 0) { HEAP32[i4 >> 2] = i3; HEAP32[i2 >> 2] = i4 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRS2_EEEvDpOT_(i1, i5); i1 = i6 + 40 | 0; i2 = i6 + 44 | 0; i3 = (HEAP32[i2 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) >> 2; i4 = __ZNSt3__23mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i6 + 52 | 0, i7) | 0; HEAP32[i4 >> 2] = i3; i4 = HEAP32[i2 >> 2] | 0; if ((i4 | 0) == (HEAP32[i6 + 48 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i7); else { HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; } STACKTOP = i8; return i3 | 0; } function __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_7LiteralE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 40) | 0; i3 = HEAP32[i2 >> 2] | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, __ZN4wasm13printWasmTypeENS_8WasmTypeE(i3) | 0) | 0, 26251) | 0; switch (i3 | 0) { case 0: { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, 33740) | 0; break; } case 1: { __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEi(i1, HEAP32[i2 + 8 >> 2] | 0) | 0; break; } case 2: { i3 = i2 + 8 | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEx(i1, HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0) | 0; break; } case 3: { __ZN4wasm7Literal10printFloatERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEf(i1, +__ZNK4wasm7Literal6getf32Ev(i2)); break; } case 4: { __ZN4wasm7Literal11printDoubleERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEd(i1, +__ZNK4wasm7Literal6getf64Ev(i2)); break; } default: {} } return __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 41) | 0; } function __ZN4wasm6Module15addFunctionTypeEPNS_12FunctionTypeE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i8 + 4 | 0; i1 = i8; i4 = i5 + 4 | 0; i2 = __ZN4wasm4Name7fromIntEj((HEAP32[i4 >> 2] | 0) - (HEAP32[i5 >> 2] | 0) >> 2) | 0; HEAP32[i7 >> 2] = i2; if (!(HEAP32[i6 >> 2] | 0)) HEAP32[i6 >> 2] = i2; i2 = i6; HEAP32[i1 >> 2] = i2; i3 = HEAP32[i4 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i5 + 8 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = 0; HEAP32[i3 >> 2] = i2; HEAP32[i4 >> 2] = i3 + 4; } else __ZNSt3__26vectorINS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i5, i1); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) { __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i2 + 8 | 0); __ZdlPv(i2); } i5 = i5 + 128 | 0; i4 = __ZNSt3__23mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i5, i6) | 0; HEAP32[i4 >> 2] = i6; i7 = __ZNSt3__23mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i5, i7) | 0; HEAP32[i7 >> 2] = i6; STACKTOP = i8; return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSJ_IJEEEEEENS_4pairINS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESK_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(32) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEErsERy(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i2 = i9 + 20 | 0; i1 = i9 + 16 | 0; i5 = i9 + 12 | 0; i6 = i9 + 8 | 0; i10 = i9 + 24 | 0; i7 = i9 + 4 | 0; i8 = i9; __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i10, i3, 0); if (HEAP8[i10 >> 0] | 0) { HEAP32[i7 >> 2] = 0; i11 = __ZNKSt3__28ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i8 >> 2] = i11; i11 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47500) | 0; i10 = i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0; i12 = HEAP32[(HEAP32[i11 >> 2] | 0) + 36 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i10 + 24 >> 2]; HEAP32[i6 >> 2] = 0; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; FUNCTION_TABLE_iiiiiii[i12 & 63](i11, i1, i2, i10, i7, i4) | 0; __ZNSt3__26localeD2Ev(i8); i8 = i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0; i10 = i8 + 16 | 0; HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | HEAP32[i7 >> 2] | (HEAP32[i8 + 24 >> 2] | 0) == 0; } STACKTOP = i9; return i3 | 0; } function __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEErsERj(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i2 = i9 + 20 | 0; i1 = i9 + 16 | 0; i5 = i9 + 12 | 0; i6 = i9 + 8 | 0; i10 = i9 + 24 | 0; i7 = i9 + 4 | 0; i8 = i9; __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b(i10, i3, 0); if (HEAP8[i10 >> 0] | 0) { HEAP32[i7 >> 2] = 0; i11 = __ZNKSt3__28ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i8 >> 2] = i11; i11 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47500) | 0; i10 = i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0; i12 = HEAP32[(HEAP32[i11 >> 2] | 0) + 28 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i10 + 24 >> 2]; HEAP32[i6 >> 2] = 0; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; FUNCTION_TABLE_iiiiiii[i12 & 63](i11, i1, i2, i10, i7, i4) | 0; __ZNSt3__26localeD2Ev(i8); i8 = i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0; i10 = i8 + 16 | 0; HEAP32[i10 >> 2] = HEAP32[i10 >> 2] | HEAP32[i7 >> 2] | (HEAP32[i8 + 24 >> 2] | 0) == 0; } STACKTOP = i9; return i3 | 0; } function __ZN4wasm17WasmBinaryBuilder7visitIfEPNS_2IfE(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5; if (HEAP8[i3 + 12 >> 0] | 0) { i2 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20051) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i2, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i2) | 0; } i2 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i3) | 0; HEAP32[i4 + 8 >> 2] = i2; i2 = __ZN4wasm17WasmBinaryBuilder8getBlockEv(i3) | 0; HEAP32[i4 + 12 >> 2] = i2; i2 = i3 + 108 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == 4) { i1 = __ZN4wasm17WasmBinaryBuilder8getBlockEv(i3) | 0; HEAP32[i4 + 16 >> 2] = i1; __ZN4wasm2If8finalizeEv(i4); i1 = HEAP32[i2 >> 2] | 0; } if ((i1 | 0) == 15) { STACKTOP = i5; return; } else ___assert_fail(20063, 18854, 1809, 20098); } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm8FunctionENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm8FunctionENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; HEAP32[i5 >> 2] = i4; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorINS_10unique_ptrIN4wasm8FunctionENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i1, i3); __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm8FunctionENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJS6_EEEvDpOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; HEAP32[i5 >> 2] = i4; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i1, i3); __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE8__appendEj(i6, i1) { i6 = i6 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i8; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = HEAP32[i6 + 4 >> 2] | 0; if (i4 - i5 >> 2 >>> 0 < i1 >>> 0) { i2 = HEAP32[i6 >> 2] | 0; i3 = (i5 - i2 >> 2) + i1 | 0; if (i3 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); i9 = i4 - i2 | 0; i4 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i7, i9 >> 2 >>> 0 < 536870911 ? (i4 >>> 0 < i3 >>> 0 ? i3 : i4) : 1073741823, i5 - i2 >> 2, i6 + 8 | 0); i3 = i7 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; do { HEAP32[i2 >> 2] = 0; i2 = (HEAP32[i3 >> 2] | 0) + 4 | 0; HEAP32[i3 >> 2] = i2; i1 = i1 + -1 | 0; } while ((i1 | 0) != 0); __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i6, i7); __ZNSt3__214__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEED2Ev(i7); } else __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE18__construct_at_endEj(i6, i1); STACKTOP = i8; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorIS9_EE5valueERS5_E4typeES9_S9_(i9, i5, i8) { i9 = i9 | 0; i5 = i5 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0, i10 = 0; i3 = i5; i10 = i9 + 11 | 0; i1 = HEAP8[i10 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i7 = HEAP32[i9 + 4 >> 2] | 0; i2 = (HEAP32[i9 + 8 >> 2] & 2147483647) + -1 | 0; } else { i7 = i1 & 255; i2 = 10; } i6 = i8 - i3 | 0; do if (i6 | 0) { if ((i2 - i7 | 0) >>> 0 < i6 >>> 0) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i9, i2, i7 + i6 - i2 | 0, i7, i7, 0, 0); i1 = HEAP8[i10 >> 0] | 0; } if (i1 << 24 >> 24 < 0) i4 = HEAP32[i9 >> 2] | 0; else i4 = i9; i3 = i8 + (i7 - i3) | 0; i2 = i4 + i7 | 0; i1 = i5; while (1) { if ((i1 | 0) == (i8 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i2 = i2 + 1 | 0; i1 = i1 + 1 | 0; } HEAP8[i4 + i3 >> 0] = 0; i1 = i7 + i6 | 0; if ((HEAP8[i10 >> 0] | 0) < 0) { HEAP32[i9 + 4 >> 2] = i1; break; } else { HEAP8[i10 >> 0] = i1; break; } } while (0); return i9 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0; i1 = HEAP32[i4 >> 2] | 0; while (1) { i1 = HEAP8[i1 >> 0] | 0; if (!(i1 << 24 >> 24)) break; i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7isSpaceEc(i1) | 0; i1 = HEAP32[i4 >> 2] | 0; if (i3) { i1 = i1 + 1 | 0; HEAP32[i4 >> 2] = i1; continue; } if ((HEAP8[i1 >> 0] | 0) != 47) break; if ((HEAP8[i1 + 1 >> 0] | 0) == 47) { i3 = i1 + 2 | 0; while (1) { HEAP32[i4 >> 2] = i3; i5 = HEAP8[i3 >> 0] | 0; i2 = i5 << 24 >> 24 == 0; i1 = i3 + 1 | 0; if (i5 << 24 >> 24 != 10 & (i2 ^ 1)) i3 = i1; else break; } if (i2) { i1 = i3; continue; } HEAP32[i4 >> 2] = i1; continue; } if ((HEAP8[i1 + 1 >> 0] | 0) != 42) break; i1 = i1 + 2 | 0; L16 : while (1) { HEAP32[i4 >> 2] = i1; switch (HEAP8[i1 >> 0] | 0) { case 0: break L16; case 42: { i2 = i1 + 1 | 0; if ((HEAP8[i2 >> 0] | 0) == 47) break L16; else { i1 = i2; continue L16; } } default: { i1 = i1 + 1 | 0; continue L16; } } } i1 = i1 + 2 | 0; HEAP32[i4 >> 2] = i1; } return; } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ImportENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ImportENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; HEAP32[i5 >> 2] = i4; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ImportENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i1, i3); __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ImportENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm6GlobalENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6GlobalENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; HEAP32[i5 >> 2] = i4; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorINS_10unique_ptrIN4wasm6GlobalENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i1, i3); __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6GlobalENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ExportENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ExportENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; HEAP32[i5 >> 2] = i4; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ExportENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i1, i3); __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ExportENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZL25default_terminate_handlerv() { var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i7 = i5 + 32 | 0; i3 = i5 + 24 | 0; i8 = i5 + 16 | 0; i6 = i5; i5 = i5 + 36 | 0; i1 = ___cxa_get_globals_fast() | 0; if (i1 | 0 ? (i4 = HEAP32[i1 >> 2] | 0, i4 | 0) : 0) { i1 = i4 + 48 | 0; i2 = HEAP32[i1 >> 2] | 0; i1 = HEAP32[i1 + 4 >> 2] | 0; if (!((i2 & -256 | 0) == 1126902528 & (i1 | 0) == 1129074247)) { HEAP32[i3 >> 2] = HEAP32[2682]; _abort_message(41743, i3); } if ((i2 | 0) == 1126902529 & (i1 | 0) == 1129074247) i1 = HEAP32[i4 + 44 >> 2] | 0; else i1 = i4 + 80 | 0; HEAP32[i5 >> 2] = i1; i4 = HEAP32[i4 >> 2] | 0; i1 = HEAP32[i4 + 4 >> 2] | 0; if (FUNCTION_TABLE_iiii[HEAP32[(HEAP32[490] | 0) + 16 >> 2] & 31](1960, i4, i5) | 0) { i8 = HEAP32[i5 >> 2] | 0; i5 = HEAP32[2682] | 0; i8 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i8 >> 2] | 0) + 8 >> 2] & 127](i8) | 0; HEAP32[i6 >> 2] = i5; HEAP32[i6 + 4 >> 2] = i1; HEAP32[i6 + 8 >> 2] = i8; _abort_message(41657, i6); } else { HEAP32[i8 >> 2] = HEAP32[2682]; HEAP32[i8 + 4 >> 2] = i1; _abort_message(41702, i8); } } _abort_message(41781, i7); } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE6rehashEj(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0; if ((i1 | 0) != 1) { if (i1 + -1 & i1) i1 = __ZNSt3__212__next_primeEj(i1) | 0; } else i1 = 2; i3 = HEAP32[i4 + 4 >> 2] | 0; if (i1 >>> 0 <= i3 >>> 0) { if (i1 >>> 0 < i3 >>> 0) { i2 = ~~+Math_ceil(+(+((HEAP32[i4 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i4 + 16 >> 2])) >>> 0; if (i3 >>> 0 > 2 & (i3 + -1 & i3 | 0) == 0) i2 = 1 << 32 - (Math_clz32(i2 + -1 | 0) | 0); else i2 = __ZNSt3__212__next_primeEj(i2) | 0; i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1; if (i1 >>> 0 < i3 >>> 0) __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE8__rehashEj(i4, i1); } } else __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE8__rehashEj(i4, i1); return; } function __ZNSt3__26vectorINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEENS_9allocatorIS5_EEE24__emplace_back_slow_pathIJS5_EEEvDpOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEERNS_9allocatorIS5_EEEC2EjjS8_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; HEAP32[i5 >> 2] = i4; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEENS_9allocatorIS5_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS5_RS7_EE(i1, i3); __ZNSt3__214__split_bufferINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEERNS_9allocatorIS5_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN4wasm13WasmValidator12shouldBeTrueINS_4NameEEEbbT_PKc(i2, i3, i4, i5) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i7 + 4 | 0; i6 = i7; if (i3) i1 = 1; else { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i2) | 0, 15021) | 0, i5) | 0, 14766) | 0; HEAP32[i6 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; i6 = __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i1) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; HEAP8[i2 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i7; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder14visitGetGlobalEPNS_9GetGlobalE(i2, i4) { i2 = i2 | 0; i4 = i4 | 0; var i1 = 0, i3 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5; if (HEAP8[i2 + 12 >> 0] | 0) { i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20580) | 0; i3 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i3, HEAP32[i2 + 16 >> 2] | 0) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i3, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i3) | 0; } i3 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; HEAP32[i4 + 8 >> 2] = i3; i6 = HEAP32[i2 >> 2] | 0; i1 = HEAP32[i6 + 48 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i6 + 52 >> 2] | 0) - i1 >> 2 >>> 0) { HEAP32[i4 + 4 >> 2] = HEAP32[(HEAP32[i1 + (i3 << 2) >> 2] | 0) + 4 >> 2]; STACKTOP = i5; return; } else ___assert_fail(20600, 18854, 1913, 20634); } function __ZN4wasm6Module12removeImportENS_4NameE(i8, i9) { i8 = i8 | 0; i9 = i9 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0; i10 = i8 + 16 | 0; i7 = HEAP32[i10 >> 2] | 0; i5 = HEAP32[i8 + 12 >> 2] | 0; i2 = i7 - i5 >> 2; i4 = HEAP32[i9 >> 2] | 0; i1 = 0; while (1) { if (i1 >>> 0 >= i2 >>> 0) break; i3 = i5 + (i1 << 2) | 0; if ((HEAP32[HEAP32[i3 >> 2] >> 2] | 0) == (i4 | 0)) { i6 = 4; break; } else i1 = i1 + 1 | 0; } L4 : do if ((i6 | 0) == 4) { while (1) { i1 = i3 + 4 | 0; if ((i1 | 0) == (i7 | 0)) break; i6 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; i2 = HEAP32[i3 >> 2] | 0; HEAP32[i3 >> 2] = i6; if (!i2) { i3 = i1; i6 = 4; continue; } __ZdlPv(i2); i3 = i1; i6 = 4; } while (1) { i1 = HEAP32[i10 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break L4; i7 = i1 + -4 | 0; HEAP32[i10 >> 2] = i7; i1 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; if (!i1) continue; __ZdlPv(i1); } } while (0); __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__erase_uniqueIS3_EEjRKT_(i8 + 140 | 0, i9) | 0; return; } function __ZN4wasm22SExpressionWasmBuilder9makeBreakERNS_7ElementE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i4 = __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; i1 = __ZN4wasm22SExpressionWasmBuilder8getLabelERNS_7ElementE(i2, __ZN4wasm7ElementixEj(i3, 1) | 0) | 0; HEAP32[i4 + 8 >> 2] = i1; i1 = (__ZN4wasm7Element4listEv(i3) | 0) + 8 | 0; if ((HEAP32[i1 >> 2] | 0) != 2) { i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i3, 0) | 0) | 0; if ((i1 | 0) == (HEAP32[11450] | 0)) { i1 = (__ZN4wasm7Element4listEv(i3) | 0) + 8 | 0; if ((HEAP32[i1 >> 2] | 0) >>> 0 > 3) { i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i2, __ZN4wasm7ElementixEj(i3, 2) | 0) | 0; HEAP32[i4 + 12 >> 2] = i1; i1 = 3; } else i1 = 2; i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i2, __ZN4wasm7ElementixEj(i3, i1) | 0) | 0; HEAP32[i4 + 16 >> 2] = i1; } else { i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i2, __ZN4wasm7ElementixEj(i3, 2) | 0) | 0; HEAP32[i4 + 12 >> 2] = i1; i1 = HEAP32[i4 + 16 >> 2] | 0; } if (i1 | 0) HEAP32[i4 + 4 >> 2] = 0; } return i4 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj(i8, i4, i1, i7) { i8 = i8 | 0; i4 = i4 | 0; i1 = i1 | 0; i7 = i7 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i9 = 0; i9 = i8 + 11 | 0; i2 = HEAP8[i9 >> 0] | 0; i3 = i2 << 24 >> 24 < 0; if (i3) i6 = HEAP32[i8 + 4 >> 2] | 0; else i6 = i2 & 255; if (i6 >>> 0 < i4 >>> 0) __ZNKSt3__221__basic_string_commonILb1EE20__throw_out_of_rangeEv(i8); if (i3) i2 = (HEAP32[i8 + 8 >> 2] & 2147483647) + -1 | 0; else i2 = 10; if ((i2 - i6 | 0) >>> 0 >= i7 >>> 0) { if (i7 | 0) { if (i3) i5 = HEAP32[i8 >> 2] | 0; else i5 = i8; i3 = i6 - i4 | 0; i2 = i5 + i4 | 0; if (i3) { _memmove(i2 + i7 | 0, i2 | 0, i3 | 0) | 0; i1 = i2 >>> 0 <= i1 >>> 0 & (i5 + i6 | 0) >>> 0 > i1 >>> 0 ? i1 + i7 | 0 : i1; } _memmove(i2 | 0, i1 | 0, i7 | 0) | 0; i1 = i6 + i7 | 0; if ((HEAP8[i9 >> 0] | 0) < 0) HEAP32[i8 + 4 >> 2] = i1; else HEAP8[i9 >> 0] = i1; HEAP8[i5 + i1 >> 0] = 0; } } else __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i8, i2, i6 + i7 - i2 | 0, i6, i4, 0, i7, i1); return i8 | 0; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12walkFunctionEPNS_8FunctionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; HEAP32[i1 + 16 >> 2] = i2; i5 = i1 + -16 | 0; i6 = i5 + 16 | 0; i7 = i5 + 20 | 0; i8 = i5 + 24 | 0; if ((HEAP32[i8 >> 2] | 0) != (HEAP32[i7 >> 2] | 0)) ___assert_fail(35312, 35330, 239, 35351); __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE8pushTaskEPFvPS4_PPNS_10ExpressionEESB_(i6, 97, i2 + 36 | 0); while (1) { i4 = HEAP32[i8 >> 2] | 0; i2 = i4; if ((i4 | 0) == (HEAP32[i7 >> 2] | 0)) { i1 = 12; break; } i3 = HEAP32[i2 + -8 >> 2] | 0; i4 = HEAP32[i2 + -4 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i9 = i1 + -1 | 0; HEAP32[i8 >> 2] = i2 + (i9 << 3); i1 = i9; } if (!(HEAP32[i4 >> 2] | 0)) { i1 = 9; break; } FUNCTION_TABLE_vii[i3 & 255](i5, i4); i1 = HEAP32[i6 >> 2] | 0; if (!i1) continue; HEAP32[i4 >> 2] = i1; HEAP32[i6 >> 2] = 0; } if ((i1 | 0) == 9) ___assert_fail(35356, 35330, 243, 35351); else if ((i1 | 0) == 12) return; } function __ZN4wasm6Module11addFunctionEPNS_8FunctionE(i6, i7) { i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i9 + 4 | 0; i1 = i9; i4 = i6 + 36 | 0; i5 = i6 + 40 | 0; i2 = __ZN4wasm4Name7fromIntEj((HEAP32[i5 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2) | 0; HEAP32[i8 >> 2] = i2; if (!(HEAP32[i7 >> 2] | 0)) HEAP32[i7 >> 2] = i2; i2 = i7; HEAP32[i1 >> 2] = i2; i3 = HEAP32[i5 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i6 + 44 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = 0; HEAP32[i3 >> 2] = i2; HEAP32[i5 >> 2] = i3 + 4; } else __ZNSt3__26vectorINS_10unique_ptrIN4wasm8FunctionENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i4, i1); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) { __ZN4wasm8FunctionD2Ev(i2); __ZdlPv(i2); } i6 = i6 + 164 | 0; i5 = __ZNSt3__23mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i7) | 0; HEAP32[i5 >> 2] = i7; i8 = __ZNSt3__23mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i8) | 0; HEAP32[i8 >> 2] = i7; STACKTOP = i9; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__25stollERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPji(i1, i6, i2) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i8 + 12 | 0; i7 = i8; HEAP32[i7 >> 2] = 0; HEAP32[i7 + 4 >> 2] = 0; HEAP32[i7 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i7, 41648, 5); HEAP32[i4 >> 2] = 0; i5 = (HEAP8[i1 + 11 >> 0] | 0) < 0 ? HEAP32[i1 >> 2] | 0 : i1; i9 = ___errno_location() | 0; i10 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = 0; i2 = _strtoll(i5, i4, i2) | 0; i3 = tempRet0; i1 = HEAP32[i9 >> 2] | 0; HEAP32[i9 >> 2] = i10; if ((i1 | 0) == 34) __ZNSt3__212_GLOBAL__N_130throw_from_string_out_of_rangeERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(i7); i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i5 | 0)) __ZNSt3__212_GLOBAL__N_129throw_from_string_invalid_argERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(i7); if (i6 | 0) HEAP32[i6 >> 2] = i1 - i5; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i7); tempRet0 = i3; STACKTOP = i8; return i2 | 0; } function __ZN4wasm13WasmValidator13shouldBeFalseINS_4NameEEEbbT_PKc(i2, i3, i4, i5) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i7 + 4 | 0; i6 = i7; if (i3) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i2) | 0, 16450) | 0, i5) | 0, 14766) | 0; HEAP32[i6 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; i6 = __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i1) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i6 + (HEAP32[(HEAP32[i6 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i6, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i6) | 0; HEAP8[i2 + 24 >> 0] = 0; } STACKTOP = i7; return 0; } function __ZNKSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv(i5, i4) { i5 = i5 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0; i1 = HEAP32[i4 + 48 >> 2] | 0; L1 : do if (!(i1 & 16)) { if (i1 & 8 | 0) { i3 = HEAP32[i4 + 8 >> 2] | 0; i4 = HEAP32[i4 + 16 >> 2] | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_(i5, i3, i4); break; }; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break L1; HEAP32[i5 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } } else { i2 = i4 + 44 | 0; i1 = HEAP32[i2 >> 2] | 0; i3 = HEAP32[i4 + 24 >> 2] | 0; if (i1 >>> 0 < i3 >>> 0) { HEAP32[i2 >> 2] = i3; i1 = i3; } i4 = HEAP32[i4 + 20 >> 2] | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_(i5, i4, i1); } while (0); return; } function __ZN4wasm17WasmBinaryBuilder10readMemoryEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; if (HEAP8[i1 + 12 >> 0] | 0) { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19395) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; } i5 = (HEAP32[i1 >> 2] | 0) + 72 | 0; __ZN4wasm7AddressaSEy(i5, __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i1) | 0, 0) | 0; i5 = (HEAP32[i1 >> 2] | 0) + 76 | 0; __ZN4wasm7AddressaSEy(i5, __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i1) | 0, 0) | 0; if ((__ZN4wasm17WasmBinaryBuilder7getInt8Ev(i1) | 0) << 24 >> 24) { i5 = (HEAP32[i1 >> 2] | 0) + 92 | 0; __ZN6cashew7IString3setEPKcb(i2, 34986, 0); HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; } STACKTOP = i3; return; } function __ZNSt3__26vectorINS_8functionIFN4wasm15ThreadWorkStateEvEEENS_9allocatorIS5_EEE21__push_back_slow_pathIS5_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = ((i4 - i5 | 0) / 24 | 0) + 1 | 0; if (i6 >>> 0 > 178956970) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = ((HEAP32[i1 + 8 >> 2] | 0) - i5 | 0) / 24 | 0; i8 = i9 << 1; __ZNSt3__214__split_bufferINS_8functionIFN4wasm15ThreadWorkStateEvEEERNS_9allocatorIS5_EEEC2EjjS8_(i3, i9 >>> 0 < 89478485 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 178956970, (i4 - i5 | 0) / 24 | 0, i1 + 8 | 0); i6 = i3 + 8 | 0; __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEC2EOS4_(HEAP32[i6 >> 2] | 0, i2); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 24; __ZNSt3__26vectorINS_8functionIFN4wasm15ThreadWorkStateEvEEENS_9allocatorIS5_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS5_RS7_EE(i1, i3); __ZNSt3__214__split_bufferINS_8functionIFN4wasm15ThreadWorkStateEvEEERNS_9allocatorIS5_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE15parseAfterParenERPc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i5 = i1 + 4 | 0; __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i1, (((HEAP32[i5 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) | 0) / 12 | 0) + 1 | 0); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i2); i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i1, i2, 42358) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i2); i1 = HEAP32[i2 >> 2] | 0; if ((HEAP8[i1 >> 0] | 0) != 41) ___assert_fail(28926, 28546, 662, 29500); HEAP32[i2 >> 2] = i1 + 1; i1 = HEAP32[i5 >> 2] | 0; i2 = i1 + -12 | 0; if ((HEAP32[i1 + -8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i4 = i1; else ___assert_fail(29204, 28546, 664, 29500); while (1) { if ((i4 | 0) == (i2 | 0)) break; i1 = i4 + -12 | 0; HEAP32[i5 >> 2] = i1; __ZNSt3__213__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i1); i4 = HEAP32[i5 >> 2] | 0; } return i3 | 0; } function _memchr(i2, i5, i1) { i2 = i2 | 0; i5 = i5 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i6 = 0, i7 = 0; i6 = i5 & 255; i3 = (i1 | 0) != 0; L1 : do if (i3 & (i2 & 3 | 0) != 0) { i4 = i5 & 255; while (1) { if ((HEAP8[i2 >> 0] | 0) == i4 << 24 >> 24) { i7 = 6; break L1; } i2 = i2 + 1 | 0; i1 = i1 + -1 | 0; i3 = (i1 | 0) != 0; if (!(i3 & (i2 & 3 | 0) != 0)) { i7 = 5; break; } } } else i7 = 5; while (0); if ((i7 | 0) == 5) if (i3) i7 = 6; else i1 = 0; L8 : do if ((i7 | 0) == 6) { i4 = i5 & 255; if ((HEAP8[i2 >> 0] | 0) != i4 << 24 >> 24) { i3 = Math_imul(i6, 16843009) | 0; L11 : do if (i1 >>> 0 > 3) while (1) { i6 = HEAP32[i2 >> 2] ^ i3; if ((i6 & -2139062144 ^ -2139062144) & i6 + -16843009 | 0) break; i2 = i2 + 4 | 0; i1 = i1 + -4 | 0; if (i1 >>> 0 <= 3) { i7 = 11; break L11; } } else i7 = 11; while (0); if ((i7 | 0) == 11) if (!i1) { i1 = 0; break; } while (1) { if ((HEAP8[i2 >> 0] | 0) == i4 << 24 >> 24) break L8; i2 = i2 + 1 | 0; i1 = i1 + -1 | 0; if (!i1) { i1 = 0; break; } } } } while (0); return (i1 | 0 ? i2 : 0) | 0; } function __ZNSt3__26vectorINS_4pairIPN4wasm7ElementEPNS2_5BlockEEENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRS4_RS6_EEEvDpOT_(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i8; i6 = HEAP32[i1 + 4 >> 2] | 0; i7 = HEAP32[i1 >> 2] | 0; i3 = (i6 - i7 >> 3) + 1 | 0; if (i3 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i10 = (HEAP32[i1 + 8 >> 2] | 0) - i7 | 0; i9 = i10 >> 2; __ZNSt3__214__split_bufferINS_4pairIPN4wasm7ElementEPNS2_5BlockEEERNS_9allocatorIS7_EEEC2EjjSA_(i5, i10 >> 3 >>> 0 < 268435455 ? (i9 >>> 0 < i3 >>> 0 ? i3 : i9) : 536870911, i6 - i7 >> 3, i1 + 8 | 0); i7 = i5 + 8 | 0; i6 = HEAP32[i7 >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = HEAP32[i4 >> 2]; HEAP32[i7 >> 2] = i6 + 8; __ZNSt3__26vectorINS_4pairIPN4wasm7ElementEPNS2_5BlockEEENS_9allocatorIS7_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS7_RS9_EE(i1, i5); __ZNSt3__214__split_bufferINS_4pairIPN4wasm7ElementEPNS2_5BlockEEERNS_9allocatorIS7_EEED2Ev(i5); STACKTOP = i8; return; } } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE4findIS7_EENS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEERKT_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i1 = i2 + 4 | 0; i2 = __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE13__lower_boundIS7_EENS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEERKT_SN_SN_(i2, i3, HEAP32[i1 >> 2] | 0, i1) | 0; if ((i2 | 0) != (i1 | 0) ? (i6 = i2 + 16 | 0, i5 = HEAP8[i3 + 11 >> 0] | 0, i8 = i5 << 24 >> 24 < 0, i5 = i8 ? HEAP32[i3 + 4 >> 2] | 0 : i5 & 255, i4 = HEAP8[i6 + 11 >> 0] | 0, i7 = i4 << 24 >> 24 < 0, i4 = i7 ? HEAP32[i2 + 20 >> 2] | 0 : i4 & 255, i3 = __ZNSt3__211char_traitsIcE7compareEPKcS3_j(i8 ? HEAP32[i3 >> 2] | 0 : i3, i7 ? HEAP32[i6 >> 2] | 0 : i6, i4 >>> 0 < i5 >>> 0 ? i4 : i5) | 0, (((i3 | 0) == 0 ? (i5 >>> 0 < i4 >>> 0 ? -2147483648 : 0) : i3) | 0) >= 0) : 0) i1 = i2; return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSH_IJEEEEEENS_4pairINS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESI_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJOS3_EEENSH_IJEEEEEENS_4pairINS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESI_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZN4wasm7Builder8addParamEPNS_8FunctionENS_4NameENS_8WasmTypeE(i6, i7, i2) { i6 = i6 | 0; i7 = i7 | 0; i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i8; HEAP32[i3 >> 2] = i2; i4 = i6 + 8 | 0; i5 = i6 + 12 | 0; i9 = HEAP32[i5 >> 2] | 0; i1 = i9; if ((HEAP32[i6 + 60 >> 2] | 0) != (i9 - (HEAP32[i4 >> 2] | 0) >> 2 | 0)) ___assert_fail(16623, 16672, 218, 16691); if ((i1 | 0) == (HEAP32[i6 + 16 >> 2] | 0)) __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4, i3); else { HEAP32[i1 >> 2] = i2; HEAP32[i5 >> 2] = i1 + 4; } i1 = i6 + 40 | 0; i2 = i6 + 44 | 0; i3 = (HEAP32[i2 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) >> 2; i4 = __ZNSt3__23mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i6 + 52 | 0, i7) | 0; HEAP32[i4 >> 2] = i3; i4 = HEAP32[i2 >> 2] | 0; if ((i4 | 0) == (HEAP32[i6 + 48 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i7); else { HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 4; } STACKTOP = i8; return i3 | 0; } function __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 4) + 1 | 0; if (i6 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 3; __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 4 >>> 0 < 134217727 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 268435455, i4 - i5 >> 4, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i5 + 12 >> 2] = HEAP32[i2 + 12 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 16; __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6GlobalEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6GlobalEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6GlobalEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJOS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 4) + 1 | 0; if (i6 >>> 0 > 268435455) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 3; __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 4 >>> 0 < 134217727 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 268435455, i4 - i5 >> 4, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i5 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i5 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i5 + 12 >> 2] = HEAP32[i2 + 12 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 16; __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN4wasm17WasmBinaryBuilder14visitSetGlobalEPNS_9SetGlobalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i4; if (HEAP8[i1 + 12 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20649) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i5 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i1) | 0; HEAP32[i2 + 8 >> 2] = i5; i6 = HEAP32[i1 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i6 + 52 >> 2] | 0) - (HEAP32[i6 + 48 >> 2] | 0) >> 2 >>> 0) { i6 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i1) | 0; HEAP32[i2 + 12 >> 2] = i6; HEAP32[i2 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; STACKTOP = i4; return; } else ___assert_fail(20600, 18854, 1919, 20668); } function __ZN4wasm22SExpressionWasmBuilder11parseGlobalERNS_7ElementE(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0; i5 = __ZN4wasm11make_uniqueINS_6GlobalEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() | 0; i2 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == 4) { i1 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i4, 1) | 0) | 0; HEAP32[i5 >> 2] = i1; i1 = 2; i2 = i3 + 28 | 0; } else { i2 = i3 + 28 | 0; i1 = __ZN4wasm4Name7fromIntEj(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i5 >> 2] = i1; i1 = 1; } HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 1; i2 = __ZN4wasm22SExpressionWasmBuilder16stringToWasmTypeEPKcbb(i3, __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i4, i1) | 0) | 0, 0, 0) | 0; HEAP32[i5 + 4 >> 2] = i2; i2 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, __ZN4wasm7ElementixEj(i4, i1 + 1 | 0) | 0) | 0; HEAP32[i5 + 8 >> 2] = i2; i4 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if ((i1 + 2 | 0) == (HEAP32[i4 >> 2] | 0)) { __ZN4wasm6Module9addGlobalEPNS_6GlobalE(HEAP32[i3 >> 2] | 0, i5); return; } else ___assert_fail(18773, 17152, 1400, 18787); } function __ZN4wasm13WasmValidator10visitBlockEPNS_5BlockE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = i2 + 8 | 0; if (HEAP32[i4 >> 2] | 0) { i5 = i1 + 28 | 0; L3 : do if (__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE14__count_uniqueIS3_EEjRKT_(i5, i4) | 0) { i3 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i5, i4) | 0; switch (HEAP32[i3 >> 2] | 0) { case 0: case 5: break L3; default: {} } i3 = HEAP32[i2 + 4 >> 2] | 0; switch (i3 | 0) { case 0: case 5: break L3; default: {} } i6 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i5, i4) | 0; __ZN4wasm13WasmValidator13shouldBeEqualIPNS_5BlockENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i3, HEAP32[i6 >> 2] | 0, i2, 15095) | 0; } while (0); __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE14__erase_uniqueIS3_EEjRKT_(i5, i4) | 0; } return; } function __ZN4wasm22SExpressionWasmBuilder15getPrefixedNameENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 12 | 0; i4 = i6; i5 = i6 + 16 | 0; i7 = i1 + 64 | 0; i1 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = i1 + 1; __ZNSt3__29to_stringEj(i5, i1); i1 = HEAP8[i2 + 11 >> 0] | 0; i7 = i1 << 24 >> 24 < 0; i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKcj(i5, 0, i7 ? HEAP32[i2 >> 2] | 0 : i2, i7 ? HEAP32[i2 + 4 >> 2] | 0 : i1 & 255) | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 + 11 >> 0] | 0) < 0 ? HEAP32[i4 >> 2] | 0 : i4, 0); i7 = HEAP32[i3 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); STACKTOP = i6; return i7 | 0; } function __ZN6cashew12ValueBuilder7makeForENS_3RefES1_S1_S1_(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i5 + 20 | 0; i12 = i5 + 16 | 0; i11 = i5 + 12 | 0; i9 = i5 + 8 | 0; i8 = i5 + 4 | 0; i7 = i5; i10 = __ZN6cashew12ValueBuilder12makeRawArrayEi(5) | 0; i13 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45096) | 0; HEAP32[i12 >> 2] = i13; HEAP32[i6 >> 2] = HEAP32[i12 >> 2]; i10 = __ZN6cashew5Value9push_backENS_3RefE(i10, i6) | 0; HEAP32[i11 >> 2] = HEAP32[i1 >> 2]; HEAP32[i6 >> 2] = HEAP32[i11 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i10, i6) | 0; HEAP32[i9 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = HEAP32[i9 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i1, i6) | 0; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i6 >> 2] = HEAP32[i8 >> 2]; i3 = __ZN6cashew5Value9push_backENS_3RefE(i2, i6) | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i6 >> 2] = HEAP32[i7 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i3, i6) | 0; STACKTOP = i5; return i4 | 0; } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_12CallIndirectEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_10CallImportEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRN6cashew7IStringERNS1_8WasmTypeEEEEvDpOT_(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i8; i6 = HEAP32[i1 + 4 >> 2] | 0; i7 = HEAP32[i1 >> 2] | 0; i3 = (i6 - i7 >> 3) + 1 | 0; if (i3 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i10 = (HEAP32[i1 + 8 >> 2] | 0) - i7 | 0; i9 = i10 >> 2; __ZNSt3__214__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEEC2EjjS5_(i5, i10 >> 3 >>> 0 < 268435455 ? (i9 >>> 0 < i3 >>> 0 ? i3 : i9) : 536870911, i6 - i7 >> 3, i1 + 8 | 0); i7 = i5 + 8 | 0; i6 = HEAP32[i7 >> 2] | 0; i4 = HEAP32[i4 >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = i4; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 8; __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i5); __ZNSt3__214__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEED2Ev(i5); STACKTOP = i8; return; } } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSG_IJEEEEEENS_4pairINS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESH_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSF_SF_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_8SetLocalEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_6SwitchEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_5UnaryEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_5BreakEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZNSt3__214__num_put_base14__format_floatEPcPKcj(i1, i3, i2) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; if (i2 & 2048) { HEAP8[i1 >> 0] = 43; i1 = i1 + 1 | 0; } if (i2 & 1024) { HEAP8[i1 >> 0] = 35; i1 = i1 + 1 | 0; } i7 = i2 & 260; i4 = i2 >>> 14; i6 = (i7 | 0) == 260; if (i6) i5 = 0; else { HEAP8[i1 >> 0] = 46; HEAP8[i1 + 1 >> 0] = 42; i5 = 1; i1 = i1 + 2 | 0; } while (1) { i2 = HEAP8[i3 >> 0] | 0; if (!(i2 << 24 >> 24)) break; HEAP8[i1 >> 0] = i2; i3 = i3 + 1 | 0; i1 = i1 + 1 | 0; } L14 : do switch (i7 & 511) { case 4: if (!(i4 & 1)) { HEAP8[i1 >> 0] = 102; break L14; } else { HEAP8[i1 >> 0] = 70; break L14; } case 256: if (!(i4 & 1)) { HEAP8[i1 >> 0] = 101; break L14; } else { HEAP8[i1 >> 0] = 69; break L14; } default: { i2 = (i4 & 1 | 0) != 0; if (i6) if (i2) { HEAP8[i1 >> 0] = 65; break L14; } else { HEAP8[i1 >> 0] = 97; break L14; } else if (i2) { HEAP8[i1 >> 0] = 71; break L14; } else { HEAP8[i1 >> 0] = 103; break L14; } } } while (0); return i5 | 0; } function __ZN4wasm6Module9addImportEPNS_6ImportE(i6, i7) { i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i9 + 4 | 0; i1 = i9; i4 = i6 + 12 | 0; i5 = i6 + 16 | 0; i2 = __ZN4wasm4Name7fromIntEj((HEAP32[i5 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2) | 0; HEAP32[i8 >> 2] = i2; if (!(HEAP32[i7 >> 2] | 0)) HEAP32[i7 >> 2] = i2; i2 = i7; HEAP32[i1 >> 2] = i2; i3 = HEAP32[i5 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i6 + 20 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = 0; HEAP32[i3 >> 2] = i2; HEAP32[i5 >> 2] = i3 + 4; } else __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ImportENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i4, i1); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) __ZdlPv(i2); i6 = i6 + 140 | 0; i5 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i7) | 0; HEAP32[i5 >> 2] = i7; i8 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i8) | 0; HEAP32[i8 >> 2] = i7; STACKTOP = i9; return; } function __ZN4wasm6Module9addGlobalEPNS_6GlobalE(i6, i7) { i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i9 + 4 | 0; i1 = i9; i4 = i6 + 48 | 0; i5 = i6 + 52 | 0; i2 = __ZN4wasm4Name7fromIntEj((HEAP32[i5 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2) | 0; HEAP32[i8 >> 2] = i2; if (!(HEAP32[i7 >> 2] | 0)) HEAP32[i7 >> 2] = i2; i2 = i7; HEAP32[i1 >> 2] = i2; i3 = HEAP32[i5 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i6 + 56 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = 0; HEAP32[i3 >> 2] = i2; HEAP32[i5 >> 2] = i3 + 4; } else __ZNSt3__26vectorINS_10unique_ptrIN4wasm6GlobalENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i4, i1); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) __ZdlPv(i2); i6 = i6 + 176 | 0; i5 = __ZNSt3__23mapIN4wasm4NameEPNS1_6GlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i7) | 0; HEAP32[i5 >> 2] = i7; i8 = __ZNSt3__23mapIN4wasm4NameEPNS1_6GlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i8) | 0; HEAP32[i8 >> 2] = i7; STACKTOP = i9; return; } function __ZN4wasm6Module9addExportEPNS_6ExportE(i6, i7) { i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i9 + 4 | 0; i1 = i9; i4 = i6 + 24 | 0; i5 = i6 + 28 | 0; i2 = __ZN4wasm4Name7fromIntEj((HEAP32[i5 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2) | 0; HEAP32[i8 >> 2] = i2; if (!(HEAP32[i7 >> 2] | 0)) HEAP32[i7 >> 2] = i2; i2 = i7; HEAP32[i1 >> 2] = i2; i3 = HEAP32[i5 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i6 + 32 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = 0; HEAP32[i3 >> 2] = i2; HEAP32[i5 >> 2] = i3 + 4; } else __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ExportENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE21__push_back_slow_pathIS6_EEvOT_(i4, i1); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) __ZdlPv(i2); i6 = i6 + 152 | 0; i5 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i7) | 0; HEAP32[i5 >> 2] = i7; i8 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i6, i8) | 0; HEAP32[i8 >> 2] = i7; STACKTOP = i9; return; } function __ZN4wasm17WasmBinaryBuilder13visitSetLocalEPNS_8SetLocalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i4; if (HEAP8[i1 + 12 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20548) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i6 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i1) | 0; HEAP32[i2 + 8 >> 2] = i6; if (i6 >>> 0 < (__ZN4wasm8Function12getNumLocalsEv(HEAP32[i1 + 64 >> 2] | 0) | 0) >>> 0) { i6 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i1) | 0; HEAP32[i2 + 12 >> 2] = i6; HEAP32[i2 + 4 >> 2] = HEAP32[i6 + 4 >> 2]; STACKTOP = i4; return; } else ___assert_fail(20491, 18854, 1906, 20566); } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_4CallEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE25__emplace_unique_key_argsIS4_JRKNS_21piecewise_construct_tENS_5tupleIJRKS4_EEENSH_IJEEEEEENS_4pairINS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE12__find_equalIS4_EERPNS_16__tree_node_baseIPvEESI_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE19doVisitCallIndirectEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i4 = i3 + 16 | 0; i6 = i3 + 32 | 0; i5 = i3; i2 = (__ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(HEAP32[i2 >> 2] | 0) | 0) + 28 | 0; i2 = (__ZN4wasm10Expression4castINS_6BinaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0) + 16 | 0; i7 = (__ZN4wasm10Expression4castINS_10CallImportEEEPT_v(HEAP32[i2 >> 2] | 0) | 0) + 24 | 0; HEAP32[i6 >> 2] = HEAP32[i7 >> 2]; i1 = HEAP32[i1 + 40 >> 2] | 0; i6 = __ZNSt3__23mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS7_(i1 + 24 | 0, i6) | 0; i6 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = 1; HEAP32[i5 + 8 >> 2] = i6; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i5 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i5 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i5 + 12 >> 2]; i1 = __ZN4wasm7Builder9makeConstENS_7LiteralE(i1 + 8 | 0, i4) | 0; HEAP32[i2 >> 2] = i1; STACKTOP = i3; return; } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_2IfEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJNS1_4NameERNS1_8WasmTypeEEEEvDpOT_(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i8; i6 = HEAP32[i1 + 4 >> 2] | 0; i7 = HEAP32[i1 >> 2] | 0; i3 = (i6 - i7 >> 3) + 1 | 0; if (i3 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i10 = (HEAP32[i1 + 8 >> 2] | 0) - i7 | 0; i9 = i10 >> 2; __ZNSt3__214__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEEC2EjjS5_(i5, i10 >> 3 >>> 0 < 268435455 ? (i9 >>> 0 < i3 >>> 0 ? i3 : i9) : 536870911, i6 - i7 >> 3, i1 + 8 | 0); i7 = i5 + 8 | 0; i6 = HEAP32[i7 >> 2] | 0; i4 = HEAP32[i4 >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 + 4 >> 2] = i4; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 8; __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i5); __ZNSt3__214__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEED2Ev(i5); STACKTOP = i8; return; } } function __ZN4wasm13WasmValidator14doWalkFunctionEPNS_8FunctionE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i6 + 4 | 0; i5 = i6; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE4walkERPNS_10ExpressionE(i2, i1 + 36 | 0); i3 = i2 + 28 | 0; if (!(__ZN4wasm13WasmValidator12shouldBeTrueIPKcEEbbT_S3_(i2, (HEAP32[i2 + 36 >> 2] | 0) == 0, 15045, 15059) | 0)) { i2 = i2 + 32 | 0; i1 = HEAP32[i3 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i7 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 15091) | 0; HEAP32[i5 >> 2] = HEAP32[i1 + 16 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i7, i4) | 0, 10) | 0; i1 = __ZNSt3__211__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0; } __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE5clearEv(i3); } STACKTOP = i6; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKcj(i8, i4, i1, i7) { i8 = i8 | 0; i4 = i4 | 0; i1 = i1 | 0; i7 = i7 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i9 = 0; i9 = i8 + 11 | 0; i2 = HEAP8[i9 >> 0] | 0; i3 = i2 << 24 >> 24 < 0; if (i3) i6 = HEAP32[i8 + 4 >> 2] | 0; else i6 = i2 & 255; if (i6 >>> 0 < i4 >>> 0) __ZNKSt3__221__basic_string_commonILb1EE20__throw_out_of_rangeEv(i8); if (i3) i2 = (HEAP32[i8 + 8 >> 2] & 2147483647) + -1 | 0; else i2 = 10; if ((i2 - i6 | 0) >>> 0 >= i7 >>> 0) { if (i7 | 0) { if (i3) i5 = HEAP32[i8 >> 2] | 0; else i5 = i8; i3 = i6 - i4 | 0; i2 = i5 + i4 | 0; if (i3) { _memmove(i2 + i7 | 0, i2 | 0, i3 | 0) | 0; i1 = i2 >>> 0 <= i1 >>> 0 & (i5 + i6 | 0) >>> 0 > i1 >>> 0 ? i1 + i7 | 0 : i1; } _memmove(i2 | 0, i1 | 0, i7 | 0) | 0; i1 = i6 + i7 | 0; if ((HEAP8[i9 >> 0] | 0) < 0) HEAP32[i8 + 4 >> 2] = i1; else HEAP8[i9 >> 0] = i1; HEAP8[i5 + i1 >> 0] = 0; } } else __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc(i8, i2, i6 + i7 - i2 | 0, i6, i4, 0, i7, i1); return i8 | 0; } function __ZN4wasm17getExpressionNameEPNS_10ExpressionE(i2) { i2 = i2 | 0; var i1 = 0; do switch (HEAP32[i2 >> 2] | 0) { case 0: { _abort(); break; } case 1: { i1 = 35166; break; } case 2: { i1 = 33433; break; } case 3: { i1 = 33144; break; } case 4: { i1 = 33467; break; } case 5: { i1 = 33482; break; } case 6: { i1 = 35135; break; } case 7: { i1 = 35140; break; } case 8: { i1 = 35152; break; } case 9: { i1 = 17762; break; } case 10: { i1 = 17772; break; } case 11: { i1 = 17782; break; } case 12: { i1 = 17793; break; } case 13: { i1 = 17804; break; } case 14: { i1 = 17809; break; } case 15: { i1 = 33401; break; } case 16: { i1 = 17815; break; } case 17: { i1 = 33419; break; } case 18: { i1 = 31703; break; } case 19: { i1 = 33426; break; } case 20: { i1 = 17821; break; } case 21: { i1 = 31651; break; } case 22: { i1 = 31639; break; } default: {} } while (0); return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSG_IJEEEEEENS_4pairINS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEEbEERKT_DpOT0_(i8, i5, i3, i1, i6, i2) { i8 = i8 | 0; i5 = i5 | 0; i3 = i3 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i4 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESH_RKT_(i5, i4, i3) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(24) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[HEAP32[i6 >> 2] >> 2]; HEAP32[i1 + 20 >> 2] = 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSF_SF_(i5, HEAP32[i4 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i8 >> 2] = i1; HEAP8[i8 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZN4wasm13WasmValidator12shouldBeTrueIPNS_6ModuleEEEbbT_PKc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZN4wasm11WasmPrinter11printModuleEPNS_6ModuleERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEE(i3, __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZN6cashew5ArenaD2Ev(i7) { i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = HEAP32[i7 + 4 >> 2] | 0; i2 = HEAP32[i7 >> 2] | 0; while (1) { if ((i2 | 0) == (i4 | 0)) break; i5 = HEAP32[i2 >> 2] | 0; if (i5 | 0) { i3 = i5 + -8 | 0; i1 = HEAP32[i3 + 4 >> 2] | 0; if (i1 | 0) { i1 = i5 + (i1 << 4) | 0; do { i1 = i1 + -16 | 0; __ZN6cashew5Value4freeEv(i1); } while ((i1 | 0) != (i5 | 0)); } __ZdaPv(i3); } i2 = i2 + 4 | 0; } i5 = i7 + 16 | 0; i6 = HEAP32[i7 + 20 >> 2] | 0; i2 = HEAP32[i5 >> 2] | 0; while (1) { if ((i2 | 0) == (i6 | 0)) break; i3 = HEAP32[i2 >> 2] | 0; if (i3 | 0) { i4 = i3 + -4 | 0; i1 = HEAP32[i4 >> 2] | 0; if (i1 | 0) { i1 = i3 + (i1 * 12 | 0) | 0; do { i1 = i1 + -12 | 0; __ZNSt3__213__vector_baseIN6cashew3RefENS_9allocatorIS2_EEED2Ev(i1); } while ((i1 | 0) != (i3 | 0)); } __ZdaPv(i4); } i2 = i2 + 4 | 0; } __ZNSt3__213__vector_baseIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEEENS4_IS7_EEED2Ev(i5); __ZNSt3__213__vector_baseIPN6cashew5ValueENS_9allocatorIS3_EEED2Ev(i7); return; } function __ZNSt3__225__num_get_signed_integralIlEET_PKcS3_Rji(i1, i4, i5, i2) { i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i2 = i2 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i9; if ((i1 | 0) == (i4 | 0)) { HEAP32[i5 >> 2] = 4; i1 = 0; } else { i7 = ___errno_location() | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; i1 = _strtoll_l(i1, i6, i2, __ZNSt3__26__clocEv() | 0) | 0; i2 = tempRet0; i3 = HEAP32[i7 >> 2] | 0; if (!i3) HEAP32[i7 >> 2] = i8; L7 : do if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) { do if ((i3 | 0) == 34) { HEAP32[i5 >> 2] = 4; if ((i2 | 0) > 0 | (i2 | 0) == 0 & i1 >>> 0 > 0) { i1 = 2147483647; break L7; } } else { if ((i2 | 0) < -1 | (i2 | 0) == -1 & i1 >>> 0 < 2147483648) { HEAP32[i5 >> 2] = 4; break; } if ((i2 | 0) > 0 | (i2 | 0) == 0 & i1 >>> 0 > 2147483647) { HEAP32[i5 >> 2] = 4; i1 = 2147483647; break L7; } else break L7; } while (0); i1 = -2147483648; } else { HEAP32[i5 >> 2] = 4; i1 = 0; } while (0); } STACKTOP = i9; return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7parseDoERPcPKc(i4, i5, i1) { i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i9 + 28 | 0; i2 = i9 + 24 | 0; i6 = i9; i7 = i9 + 20 | 0; i8 = i9 + 16 | 0; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i4, i5, i1) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i5); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i6, HEAP32[i5 >> 2] | 0); if ((HEAP32[i6 + 12 >> 2] | 0) == 0 ? (HEAP32[i6 >> 2] | 0) == (HEAP32[11272] | 0) : 0) { HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + (HEAP32[i6 + 8 >> 2] | 0); i6 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERPc(i4, i5) | 0; HEAP32[i7 >> 2] = i1; HEAP32[i8 >> 2] = i6; HEAP32[i2 >> 2] = HEAP32[i7 >> 2]; HEAP32[i3 >> 2] = HEAP32[i8 >> 2]; i8 = __ZN6cashew12ValueBuilder6makeDoENS_3RefES1_(i2, i3) | 0; STACKTOP = i9; return i8 | 0; } ___assert_fail(28938, 28546, 487, 28980); return 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doWalkModuleEPNS_6ModuleE(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0; i2 = HEAP32[i4 + 16 >> 2] | 0; i1 = HEAP32[i4 + 12 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZN4wasm13WasmValidator11visitImportEPNS_6ImportE(i3, HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } i2 = HEAP32[i4 + 28 >> 2] | 0; i1 = HEAP32[i4 + 24 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZN4wasm13WasmValidator11visitExportEPNS_6ExportE(i3, HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } i2 = HEAP32[i4 + 52 >> 2] | 0; i1 = HEAP32[i4 + 48 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZN4wasm13WasmValidator11visitGlobalEPNS_6GlobalE(i3, HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } i2 = HEAP32[i4 + 40 >> 2] | 0; i1 = HEAP32[i4 + 36 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12walkFunctionEPNS_8FunctionE(i3, HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } __ZN4wasm13WasmValidator11visitMemoryEPNS_6MemoryE(i3, i4 + 72 | 0); return; } function __ZN4wasm13WasmValidator9noteBreakENS_4NameEPNS_10ExpressionE(i2, i4, i1) { i2 = i2 | 0; i4 = i4 | 0; i1 = i1 | 0; var i3 = 0, i5 = 0; if (!i1) i3 = 0; else i3 = HEAP32[i1 + 4 >> 2] | 0; i1 = i2 + 28 | 0; i5 = (__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE14__count_uniqueIS3_EEjRKT_(i1, i4) | 0) == 0; i2 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i1, i4) | 0; do if (!i5) { if ((HEAP32[i2 >> 2] | 0) == 5) { i5 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i1, i4) | 0; HEAP32[i5 >> 2] = i3; break; } if ((i3 | 0) != 5 ? (i5 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i1, i4) | 0, (i3 | 0) != (HEAP32[i5 >> 2] | 0)) : 0) { i5 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i1, i4) | 0; HEAP32[i5 >> 2] = 0; } } else HEAP32[i2 >> 2] = i3; while (0); return; } function __ZNSt3__26vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE26__swap_out_circular_bufferERNS_14__split_bufferISD_RSE_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i7 = i1 + -20 | 0; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEEC2EOSF_((HEAP32[i6 >> 2] | 0) + -20 | 0, i7); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -20; i1 = i7; } i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i4; i4 = i3 + 8 | 0; i7 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i7; i4 = i2 + 8 | 0; i7 = i3 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZNSt3__26vectorIcNS_9allocatorIcEEE8__appendEj(i6, i1) { i6 = i6 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i7 = i8; i4 = HEAP32[i6 + 8 >> 2] | 0; i5 = HEAP32[i6 + 4 >> 2] | 0; if ((i4 - i5 | 0) >>> 0 < i1 >>> 0) { i2 = HEAP32[i6 >> 2] | 0; i3 = i5 - i2 + i1 | 0; if ((i3 | 0) < 0) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i6); i9 = i4 - i2 | 0; i4 = i9 << 1; __ZNSt3__214__split_bufferIcRNS_9allocatorIcEEEC2EjjS3_(i7, i9 >>> 0 < 1073741823 ? (i4 >>> 0 < i3 >>> 0 ? i3 : i4) : 2147483647, i5 - i2 | 0, i6 + 8 | 0); i3 = i7 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; do { HEAP8[i2 >> 0] = 0; i2 = (HEAP32[i3 >> 2] | 0) + 1 | 0; HEAP32[i3 >> 2] = i2; i1 = i1 + -1 | 0; } while ((i1 | 0) != 0); __ZNSt3__26vectorIcNS_9allocatorIcEEE26__swap_out_circular_bufferERNS_14__split_bufferIcRS2_EE(i6, i7); __ZNSt3__214__split_bufferIcRNS_9allocatorIcEEED2Ev(i7); } else __ZNSt3__26vectorIcNS_9allocatorIcEEE18__construct_at_endEj(i6, i1); STACKTOP = i8; return; } function __ZN4wasm13WasmValidator12shouldBeTrueIPKcEEbbT_S3_(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) i1 = 1; else { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15021) | 0, i4) | 0, 14766) | 0, i3) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; i1 = 0; } STACKTOP = i6; return i1 | 0; } function __ZNSt3__26vectorIPNS0_IN6cashew3RefENS_9allocatorIS2_EEEENS3_IS6_EEE21__push_back_slow_pathIS6_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEEERNS4_IS7_EEEC2EjjS9_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPNS0_IN6cashew3RefENS_9allocatorIS2_EEEENS3_IS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i1, i3); __ZNSt3__214__split_bufferIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEEERNS4_IS7_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN6cashew12ValueBuilder6makeIfENS_3RefES1_S1_(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 16 | 0; i10 = i6 + 12 | 0; i9 = i6 + 8 | 0; i7 = i6 + 4 | 0; i5 = i6; i8 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0; i11 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45080) | 0; HEAP32[i10 >> 2] = i11; HEAP32[i3 >> 2] = HEAP32[i10 >> 2]; i8 = __ZN6cashew5Value9push_backENS_3RefE(i8, i3) | 0; HEAP32[i9 >> 2] = HEAP32[i1 >> 2]; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i8, i3) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i3 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0; if (__ZN6cashew3RefntEv(i4) | 0) { i11 = __ZN6cashew12ValueBuilder8makeNullEv() | 0; HEAP32[i5 >> 2] = i11; } else HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; i11 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0; STACKTOP = i6; return i11 | 0; } function __ZN4wasm22SExpressionWasmBuilder14makeMaybeBlockERNS_7ElementEjj(i3, i4, i2, i6) { i3 = i3 | 0; i4 = i4 | 0; i2 = i2 | 0; i6 = i6 | 0; var i1 = 0, i5 = 0, i7 = 0; i5 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; do if ((HEAP32[i5 >> 2] | 0) == (i2 | 0)) i1 = __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0; else { i5 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if ((HEAP32[i5 >> 2] | 0) == (i2 + 1 | 0)) { i1 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, __ZN4wasm7ElementixEj(i4, i2) | 0) | 0; break; } i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i3 + 4 >> 2] | 0) | 0; i5 = i1 + 12 | 0; while (1) { i7 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if (!(i2 >>> 0 < i6 >>> 0 ? i2 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0 : 0)) break; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i5, __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, __ZN4wasm7ElementixEj(i4, i2) | 0) | 0); i2 = i2 + 1 | 0; } __ZN4wasm5Block8finalizeEv(i1); } while (0); return i1 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i6, i7, i1, i2, i9, i10, i11, i3) { i6 = i6 | 0; i7 = i7 | 0; i1 = i1 | 0; i2 = i2 | 0; i9 = i9 | 0; i10 = i10 | 0; i11 = i11 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i8 = 0; if ((-18 - i7 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i6); if ((HEAP8[i6 + 11 >> 0] | 0) < 0) i8 = HEAP32[i6 >> 2] | 0; else i8 = i6; if (i7 >>> 0 < 2147483623) { i4 = i1 + i7 | 0; i5 = i7 << 1; i4 = i4 >>> 0 < i5 >>> 0 ? i5 : i4; i4 = i4 >>> 0 < 11 ? 11 : i4 + 16 & -16; } else i4 = -17; i5 = _malloc(i4) | 0; if (i9 | 0) _memcpy(i5 | 0, i8 | 0, i9 | 0) | 0; if (i11 | 0) _memcpy(i5 + i9 | 0, i3 | 0, i11 | 0) | 0; i1 = i2 - i10 | 0; i2 = i1 - i9 | 0; if (i2 | 0) _memcpy(i5 + i9 + i11 | 0, i8 + i9 + i10 | 0, i2 | 0) | 0; if ((i7 | 0) != 10) _free(i8); HEAP32[i6 >> 2] = i5; HEAP32[i6 + 8 >> 2] = i4 | -2147483648; i11 = i1 + i11 | 0; HEAP32[i6 + 4 >> 2] = i11; HEAP8[i5 + i11 >> 0] = 0; return; } function __ZN6cashew12ValueBuilder12makeFunctionENS_7IStringE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i2 + 16 | 0; i8 = i2 + 12 | 0; i7 = i2 + 8 | 0; i5 = i2 + 4 | 0; i4 = i2; i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0; i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45040) | 0; HEAP32[i8 >> 2] = i9; HEAP32[i3 >> 2] = HEAP32[i8 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i3) | 0; i1 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i1) | 0; HEAP32[i7 >> 2] = i1; HEAP32[i3 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i3) | 0; i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i5 >> 2] = i6; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i4 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0; STACKTOP = i2; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder11visitSelectEPNS_6SelectE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i4; if (HEAP8[i1 + 12 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20683) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i6 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i1) | 0; HEAP32[i2 + 16 >> 2] = i6; i6 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i1) | 0; HEAP32[i2 + 12 >> 2] = i6; i6 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i1) | 0; HEAP32[i2 + 8 >> 2] = i6; __ZN4wasm6Select8finalizeEv(i2); STACKTOP = i4; return; } function ___fwritex(i3, i5, i6) { i3 = i3 | 0; i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i4 = 0, i7 = 0; i1 = i6 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; if (!i2) if (!(___towrite(i6) | 0)) { i1 = HEAP32[i1 >> 2] | 0; i4 = 5; } else i1 = 0; else { i1 = i2; i4 = 5; } L5 : do if ((i4 | 0) == 5) { i7 = i6 + 20 | 0; i4 = HEAP32[i7 >> 2] | 0; i2 = i4; if ((i1 - i4 | 0) >>> 0 < i5 >>> 0) { i1 = FUNCTION_TABLE_iiii[HEAP32[i6 + 36 >> 2] & 31](i6, i3, i5) | 0; break; } L10 : do if ((HEAP8[i6 + 75 >> 0] | 0) > -1) { i1 = i5; while (1) { if (!i1) { i4 = i5; i1 = 0; break L10; } i4 = i1 + -1 | 0; if ((HEAP8[i3 + i4 >> 0] | 0) == 10) break; else i1 = i4; } if ((FUNCTION_TABLE_iiii[HEAP32[i6 + 36 >> 2] & 31](i6, i3, i1) | 0) >>> 0 < i1 >>> 0) break L5; i4 = i5 - i1 | 0; i3 = i3 + i1 | 0; i2 = HEAP32[i7 >> 2] | 0; } else { i4 = i5; i1 = 0; } while (0); _memcpy(i2 | 0, i3 | 0, i4 | 0) | 0; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + i4; i1 = i1 + i4 | 0; } while (0); return i1 | 0; } function __ZN4wasm13WasmValidator11visitExportEPNS_6ExportE(i6, i1) { i6 = i6 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i8 + 12 | 0; i2 = i8 + 8 | 0; i4 = i8 + 4 | 0; i7 = i8; L1 : do if (HEAP8[i6 + 25 >> 0] | 0) { i3 = HEAP32[i6 + 20 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; i3 = __ZN4wasm6Module11getFunctionENS_4NameE(i3, i5) | 0; i2 = HEAP32[i3 + 4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; __ZN4wasm13WasmValidator15shouldBeUnequalINS_4NameENS_8WasmTypeEEEbT0_S4_T_PKc(i6, i2, 2, i5, 14865) | 0; i2 = HEAP32[i3 + 12 >> 2] | 0; i1 = HEAP32[i3 + 8 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i4 = HEAP32[i1 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i3 >> 2]; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; __ZN4wasm13WasmValidator15shouldBeUnequalINS_4NameENS_8WasmTypeEEEbT0_S4_T_PKc(i6, i4, 2, i5, 14913) | 0; i1 = i1 + 4 | 0; } } while (0); STACKTOP = i8; return; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE13__lower_boundIS7_EENS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEERKT_SN_SN_(i1, i6, i3, i2) { i1 = i1 | 0; i6 = i6 | 0; i3 = i3 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i4 = i6 + 11 | 0; i5 = i6 + 4 | 0; i1 = i3; L1 : while (1) { while (1) { if (!i1) break L1; i9 = i1 + 16 | 0; i8 = HEAP8[i9 + 11 >> 0] | 0; i10 = i8 << 24 >> 24 < 0; i8 = i10 ? HEAP32[i1 + 20 >> 2] | 0 : i8 & 255; i7 = HEAP8[i4 >> 0] | 0; i3 = i7 << 24 >> 24 < 0; i7 = i3 ? HEAP32[i5 >> 2] | 0 : i7 & 255; i3 = __ZNSt3__211char_traitsIcE7compareEPKcS3_j(i10 ? HEAP32[i9 >> 2] | 0 : i9, i3 ? HEAP32[i6 >> 2] | 0 : i6, i7 >>> 0 < i8 >>> 0 ? i7 : i8) | 0; if ((((i3 | 0) == 0 ? (i8 >>> 0 < i7 >>> 0 ? -2147483648 : 0) : i3) | 0) >= 0) break; i1 = HEAP32[i1 + 4 >> 2] | 0; } i2 = i1; i1 = HEAP32[i1 >> 2] | 0; } return i2 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10makeBinaryES1_NS_7IStringES1_(i1, i6, i2, i12) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i12 = i12 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i13 = 0; i13 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i13 + 28 | 0; i4 = i13 + 24 | 0; i3 = i13 + 20 | 0; i7 = i13 + 16 | 0; i8 = i13 + 12 | 0; i9 = i13 + 8 | 0; i10 = i13 + 4 | 0; i11 = i13; i2 = HEAP32[i2 >> 2] | 0; i1 = HEAP32[i6 >> 2] | 0; if ((i2 | 0) == (HEAP32[11339] | 0)) { HEAP32[i7 >> 2] = i1; HEAP32[i8 >> 2] = HEAP32[i12 >> 2]; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i5 >> 2] = HEAP32[i8 >> 2]; i1 = __ZN6cashew12ValueBuilder7makeDotENS_3RefES1_(i4, i5) | 0; } else { HEAP32[i9 >> 2] = i1; HEAP32[i10 >> 2] = i2; HEAP32[i11 >> 2] = HEAP32[i12 >> 2]; HEAP32[i3 >> 2] = HEAP32[i9 >> 2]; HEAP32[i4 >> 2] = HEAP32[i10 >> 2]; HEAP32[i5 >> 2] = HEAP32[i11 >> 2]; i1 = __ZN6cashew12ValueBuilder10makeBinaryENS_3RefENS_7IStringES1_(i3, i4, i5) | 0; } STACKTOP = i13; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder9ungetInt8Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i5; i4 = i2 + 16 | 0; i1 = HEAP32[i4 >> 2] | 0; if (!i1) ___assert_fail(20018, 18854, 1407, 20026); if (HEAP8[i2 + 12 >> 0] | 0) { i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20036) | 0; i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i1, HEAP32[i4 >> 2] | 0) | 0, 42358) | 0; i2 = __ZNKSt3__28ios_base6getlocEv(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i2; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i2 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 31](i2, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i1, i2) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) | 0; i1 = HEAP32[i4 >> 2] | 0; } HEAP32[i4 >> 2] = i1 + -1; STACKTOP = i5; return; } function __ZN4wasm13WasmValidator13shouldBeFalseIPKcEEbbT_S3_(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if (i2) { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 16450) | 0, i4) | 0, 14766) | 0, i3) | 0; i3 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i5 >> 2] = i3; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 47476) | 0; i3 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 31](i3, 10) | 0; __ZNSt3__26localeD2Ev(i5); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i3) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; HEAP8[i1 + 24 >> 0] = 0; } STACKTOP = i6; return 0; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESN_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 4; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 9; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 8; break; } else i1 = i2; } } if ((i2 | 0) == 4) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 8) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i4, i5, i1, i3, i8, i9, i10) { i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; i3 = i3 | 0; i8 = i8 | 0; i9 = i9 | 0; i10 = i10 | 0; var i2 = 0, i6 = 0, i7 = 0, i11 = 0; if ((1073741807 - i5 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i4); i11 = i4 + 8 | 0; if ((HEAP8[i11 + 3 >> 0] | 0) < 0) i7 = HEAP32[i4 >> 2] | 0; else i7 = i4; if (i5 >>> 0 < 536870887) { i1 = i1 + i5 | 0; i2 = i5 << 1; i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1; i1 = i1 >>> 0 < 2 ? 2 : i1 + 4 & -4; if (i1 >>> 0 > 1073741823) ___assert_fail(41459, 41496, 1734, 41599); else i6 = i1; } else i6 = 1073741807; i2 = __Znwj(i6 << 2) | 0; if (i8 | 0) __ZNSt3__211char_traitsIwE4copyEPwPKwj(i2, i7, i8) | 0; i1 = i3 - i9 - i8 | 0; if (i1 | 0) __ZNSt3__211char_traitsIwE4copyEPwPKwj(i2 + (i8 << 2) + (i10 << 2) | 0, i7 + (i8 << 2) + (i9 << 2) | 0, i1) | 0; if ((i5 | 0) != 1) __ZdlPv(i7); HEAP32[i4 >> 2] = i2; HEAP32[i11 >> 2] = i6 | -2147483648; return; } function __ZN4wasm16PrintSExpression11visitImportEPNS_6ImportE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i5 = i3; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i2 >> 2] | 0, 33251, 0) | 0; HEAP32[i5 >> 2] = HEAP32[i1 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasm16PrintSExpression9printNameENS_4NameE(i2, i4) | 0, 32) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z9printTextRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i2 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0, 32) | 0; __Z9printTextRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i2 >> 2] | 0, HEAP32[i1 + 8 >> 2] | 0) | 0; i1 = HEAP32[i1 + 12 >> 2] | 0; if (i1 | 0) __ZN4wasm16PrintSExpression17visitFunctionTypeEPNS_12FunctionTypeEb(i2, i1, 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i2 >> 2] | 0, 41) | 0; STACKTOP = i3; return; } function __ZN4wasm20Asm2WasmPreProcessor7processEPc(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0; L1 : do if ((HEAP8[i1 >> 0] | 0) == 77) { i3 = i1; i1 = _strlen(i1) | 0; i2 = 77; while (1) { if (i2 << 24 >> 24 == 102) break; i2 = i3 + 1 | 0; i3 = i2; i1 = i1 + -1 | 0; i2 = HEAP8[i2 >> 0] | 0; } i1 = i3 + i1 | 0; while (1) { i1 = i1 + -1 | 0; if ((HEAP8[i1 >> 0] | 0) == 125) { i1 = i3; break L1; } HEAP8[i1 >> 0] = 0; } } while (0); i5 = _strstr(i1, 16949) | 0; if (i5 | 0) { HEAP8[i5 >> 0] = 0; i2 = _strstr(i1, 16975) | 0; do if (i2 | 0) { HEAP8[i4 >> 0] = 1; i3 = _strstr(i1, 16988) | 0; i4 = i3 + 1 | 0; if (_strstr(i4, 16988) | 0) ___assert_fail(16998, 11743, 115, 17044); i2 = _strchr(i2, 125) | 0; if (i2 >>> 0 > (i3 + 5 | 0) >>> 0) { HEAP8[i3 >> 0] = 47; HEAP8[i4 >> 0] = 42; HEAP8[i2 + -1 >> 0] = 42; HEAP8[i2 >> 0] = 47; break; } else ___assert_fail(17052, 11743, 117, 17044); } while (0); HEAP8[i5 >> 0] = 47; } return i1 | 0; } function __ZN4wasm15Asm2WasmBuilderC2ERNS_6ModuleEbbbb(i6, i1, i2, i3, i4, i5) { i6 = i6 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; HEAP32[i6 >> 2] = i1; i1 = i1 + 100 | 0; HEAP32[i6 + 4 >> 2] = i1; HEAP32[i6 + 8 >> 2] = i1; HEAP32[i6 + 12 >> 2] = 0; HEAP32[i6 + 16 >> 2] = 8; HEAP32[i6 + 20 >> 2] = 1e3; HEAP32[i6 + 28 >> 2] = 0; HEAP32[i6 + 32 >> 2] = 0; HEAP32[i6 + 24 >> 2] = i6 + 28; HEAP8[i6 + 36 >> 0] = i2 & 1; HEAP8[i6 + 37 >> 0] = i3 & 1; HEAP8[i6 + 38 >> 0] = i4 & 1; HEAP8[i6 + 39 >> 0] = i5 & 1; HEAP32[i6 + 44 >> 2] = 0; HEAP32[i6 + 48 >> 2] = 0; HEAP32[i6 + 40 >> 2] = i6 + 44; HEAP32[i6 + 56 >> 2] = 0; HEAP32[i6 + 60 >> 2] = 0; HEAP32[i6 + 52 >> 2] = i6 + 56; i1 = i6 + 108 | 0; HEAP32[i6 + 112 >> 2] = 0; HEAP32[i6 + 116 >> 2] = 0; i2 = i6 + 112 | 0; i3 = i6 + 64 | 0; i4 = i3 + 44 | 0; do { HEAP32[i3 >> 2] = 0; i3 = i3 + 4 | 0; } while ((i3 | 0) < (i4 | 0)); HEAP32[i1 >> 2] = i2; HEAP32[i6 + 124 >> 2] = 0; HEAP32[i6 + 128 >> 2] = 0; HEAP32[i6 + 120 >> 2] = i6 + 124; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc(i6, i7, i1, i2, i9, i10, i11, i3) { i6 = i6 | 0; i7 = i7 | 0; i1 = i1 | 0; i2 = i2 | 0; i9 = i9 | 0; i10 = i10 | 0; i11 = i11 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i8 = 0; if ((-18 - i7 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i6); if ((HEAP8[i6 + 11 >> 0] | 0) < 0) i8 = HEAP32[i6 >> 2] | 0; else i8 = i6; if (i7 >>> 0 < 2147483623) { i4 = i1 + i7 | 0; i5 = i7 << 1; i4 = i4 >>> 0 < i5 >>> 0 ? i5 : i4; i4 = i4 >>> 0 < 11 ? 11 : i4 + 16 & -16; } else i4 = -17; i5 = __Znwj(i4) | 0; if (i9 | 0) _memcpy(i5 | 0, i8 | 0, i9 | 0) | 0; if (i11 | 0) _memcpy(i5 + i9 | 0, i3 | 0, i11 | 0) | 0; i1 = i2 - i10 | 0; i2 = i1 - i9 | 0; if (i2 | 0) _memcpy(i5 + i9 + i11 | 0, i8 + i9 + i10 | 0, i2 | 0) | 0; if ((i7 | 0) != 10) __ZdlPv(i8); HEAP32[i6 >> 2] = i5; HEAP32[i6 + 8 >> 2] = i4 | -2147483648; i11 = i1 + i11 | 0; HEAP32[i6 + 4 >> 2] = i11; HEAP8[i5 + i11 >> 0] = 0; return; } function __ZNSt3__26vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm12FunctionTypeERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm12FunctionTypeERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__6clENS1_7IStringE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 12 | 0; i4 = i6; i5 = i6 + 16 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 27897, 15); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i5, HEAP32[i1 >> 2] | 0) | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 + 11 >> 0] | 0) < 0 ? HEAP32[i4 >> 2] | 0 : i4, 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); STACKTOP = i6; return HEAP32[i3 >> 2] | 0; } function __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__5clENS1_7IStringE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 12 | 0; i4 = i6; i5 = i6 + 16 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 27884, 12); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i5, HEAP32[i1 >> 2] | 0) | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 + 11 >> 0] | 0) < 0 ? HEAP32[i4 >> 2] | 0 : i4, 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); STACKTOP = i6; return HEAP32[i3 >> 2] | 0; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESK_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 4; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 9; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 8; break; } else i1 = i2; } } if ((i2 | 0) == 4) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 8) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function _strcspn(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i5; i2 = HEAP8[i1 >> 0] | 0; if (i2 << 24 >> 24 != 0 ? (HEAP8[i1 + 1 >> 0] | 0) != 0 : 0) { HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; HEAP32[i3 + 12 >> 2] = 0; HEAP32[i3 + 16 >> 2] = 0; HEAP32[i3 + 20 >> 2] = 0; HEAP32[i3 + 24 >> 2] = 0; HEAP32[i3 + 28 >> 2] = 0; do { i6 = i3 + (((i2 & 255) >>> 5 & 255) << 2) | 0; HEAP32[i6 >> 2] = HEAP32[i6 >> 2] | 1 << (i2 & 31); i1 = i1 + 1 | 0; i2 = HEAP8[i1 >> 0] | 0; } while (i2 << 24 >> 24 != 0); i2 = HEAP8[i4 >> 0] | 0; L7 : do if (!(i2 << 24 >> 24)) i1 = i4; else { i1 = i4; do { if (HEAP32[i3 + (((i2 & 255) >>> 5 & 255) << 2) >> 2] & 1 << (i2 & 31) | 0) break L7; i1 = i1 + 1 | 0; i2 = HEAP8[i1 >> 0] | 0; } while (i2 << 24 >> 24 != 0); } while (0); i1 = i1 - i4 | 0; } else i1 = (___strchrnul(i4, i2 << 24 >> 24) | 0) - i4 | 0; STACKTOP = i5; return i1 | 0; } function __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function _vsnprintf(i2, i1, i8, i9) { i2 = i2 | 0; i1 = i1 | 0; i8 = i8 | 0; i9 = i9 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i10 = 0, i11 = 0; i11 = STACKTOP; STACKTOP = STACKTOP + 128 | 0; i3 = i11 + 112 | 0; i10 = i11; i4 = i10; i5 = 3820; i6 = i4 + 112 | 0; do { HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i4 = i4 + 4 | 0; i5 = i5 + 4 | 0; } while ((i4 | 0) < (i6 | 0)); if ((i1 + -1 | 0) >>> 0 > 2147483646) if (!i1) { i2 = i3; i1 = 1; i7 = 4; } else { i1 = ___errno_location() | 0; HEAP32[i1 >> 2] = 75; i1 = -1; } else i7 = 4; if ((i7 | 0) == 4) { i7 = -2 - i2 | 0; i7 = i1 >>> 0 > i7 >>> 0 ? i7 : i1; HEAP32[i10 + 48 >> 2] = i7; i3 = i10 + 20 | 0; HEAP32[i3 >> 2] = i2; HEAP32[i10 + 44 >> 2] = i2; i1 = i2 + i7 | 0; i2 = i10 + 16 | 0; HEAP32[i2 >> 2] = i1; HEAP32[i10 + 28 >> 2] = i1; i1 = _vfprintf(i10, i8, i9) | 0; if (i7) { i10 = HEAP32[i3 >> 2] | 0; HEAP8[i10 + (((i10 | 0) == (HEAP32[i2 >> 2] | 0)) << 31 >> 31) >> 0] = 0; } } STACKTOP = i11; return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESK_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 4; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 9; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 8; break; } else i1 = i2; } } if ((i2 | 0) == 4) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 8) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZNSt3__26vectorIPN4wasm8FunctionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm8FunctionERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm8FunctionENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm8FunctionERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIN6cashew7IStringERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN6cashew7IStringERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE11visitReturnEPNS_6ReturnE(i2, i3, i1) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; var i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i6; HEAP32[i2 >> 2] = 0; i5 = i2 + 8 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; i5 = i2 + 16 | 0; HEAP32[i5 >> 2] = 0; i1 = HEAP32[i1 + 8 >> 2] | 0; if (!((i1 | 0) != 0 ? (__ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i4, i3, i1), HEAP32[i2 >> 2] = HEAP32[i4 >> 2], HEAP32[i2 + 4 >> 2] = HEAP32[i4 + 4 >> 2], HEAP32[i2 + 8 >> 2] = HEAP32[i4 + 8 >> 2], HEAP32[i2 + 12 >> 2] = HEAP32[i4 + 12 >> 2], HEAP32[i2 + 16 >> 2] = HEAP32[i4 + 16 >> 2], (HEAP32[i5 >> 2] | 0) != 0) : 0)) HEAP32[i2 + 16 >> 2] = HEAP32[11431]; STACKTOP = i6; return; } function __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRS2_EEEvDpOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN4wasm6Thread8mainLoopEPv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i8; i3 = i1 + 4 | 0; i4 = i1 + 88 | 0; i5 = i1 + 104 | 0; i6 = i1 + 80 | 0; i7 = i2 + 4 | 0; i1 = i1 + 32 | 0; while (1) { __ZNSt3__25mutex4lockEv(i3); if (!(HEAP32[i5 >> 2] | 0)) { if (HEAP8[i6 >> 0] | 0) break; } else { do {} while (!(__ZNKSt3__28functionIFN4wasm15ThreadWorkStateEvEEclEv(i4) | 0)); __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEaSEDn(i4, 0) | 0; } __ZNSt3__25mutex6unlockEv(i3); __ZN4wasm10ThreadPool19notifyThreadIsReadyEv(__ZN4wasm10ThreadPool3getEv() | 0); HEAP32[i2 >> 2] = i3; HEAP8[i7 >> 0] = 1; __ZNSt3__25mutex4lockEv(i3); if ((HEAP8[i6 >> 0] | 0) == 0 ? (HEAP32[i5 >> 2] | 0) == 0 : 0) __ZNSt3__218condition_variable4waitERNS_11unique_lockINS_5mutexEEE(i1, i2); if (HEAP8[i7 >> 0] | 0) __ZNSt3__25mutex6unlockEv(HEAP32[i2 >> 2] | 0); } __ZNSt3__25mutex6unlockEv(i3); STACKTOP = i8; return; } function __ZN6cashew5Arena5allocEv(i8) { i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i9; i6 = i8 + 4 | 0; i7 = HEAP32[i6 >> 2] | 0; i1 = i7; if (!((i7 | 0) != (HEAP32[i8 >> 2] | 0) ? (i3 = i8 + 12 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 | 0) != 1e3) : 0)) { i3 = __Znaj(16008) | 0; HEAP32[i3 + 4 >> 2] = 1e3; i2 = i3 + 8 | 0; i3 = i3 + 16008 | 0; i4 = i2; do { HEAP32[i4 >> 2] = 3; HEAPF64[i4 + 8 >> 3] = 0.0; i4 = i4 + 16 | 0; } while ((i4 | 0) != (i3 | 0)); HEAP32[i5 >> 2] = i2; if (i1 >>> 0 < (HEAP32[i8 + 8 >> 2] | 0) >>> 0) { HEAP32[i7 >> 2] = i2; i1 = (HEAP32[i6 >> 2] | 0) + 4 | 0; HEAP32[i6 >> 2] = i1; } else { __ZNSt3__26vectorIPN6cashew5ValueENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i8, i5); i1 = HEAP32[i6 >> 2] | 0; } i3 = i8 + 12 | 0; HEAP32[i3 >> 2] = 0; i2 = 0; } HEAP32[i3 >> 2] = i2 + 1; STACKTOP = i9; return (HEAP32[i1 + -4 >> 2] | 0) + (i2 << 4) | 0; } function __ZNSt3__26vectorIPN4wasm7ElementENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm7ElementERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm7ElementENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm7ElementERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIPN6cashew5ValueENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN6cashew5ValueERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN6cashew5ValueENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN6cashew5ValueERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN6cashew12ValueBuilder11appendToVarENS_3RefENS_7IStringES1_(i4, i1, i5) { i4 = i4 | 0; i1 = i1 | 0; i5 = i5 | 0; var i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i8 + 12 | 0; i2 = i8 + 8 | 0; i6 = i8 + 4 | 0; i7 = i8; if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 45060) | 0)) ___assert_fail(28854, 34046, 1519, 28868); i9 = __ZN6cashew12ValueBuilder12makeRawArrayEi(1) | 0; i1 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i1) | 0; HEAP32[i2 >> 2] = i1; HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i9, i3) | 0; if (!(__ZN6cashew3RefntEv(i5) | 0)) { HEAP32[i6 >> 2] = HEAP32[i5 >> 2]; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0; } i9 = __ZN6cashew3RefixEj(i4, 1) | 0; i9 = HEAP32[i9 >> 2] | 0; HEAP32[i7 >> 2] = i1; HEAP32[i3 >> 2] = HEAP32[i7 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i9, i3) | 0; STACKTOP = i8; return; } function __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE4walkERPNS_10ExpressionE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i5 = i3 + 4 | 0; i6 = i3 + 8 | 0; if ((HEAP32[i6 >> 2] | 0) != (HEAP32[i5 >> 2] | 0)) ___assert_fail(35312, 35330, 239, 35351); __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i3, 51, i1); i2 = i4 + 4 | 0; while (1) { if ((HEAP32[i6 >> 2] | 0) == (HEAP32[i5 >> 2] | 0)) { i1 = 10; break; } __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE7popTaskEv(i4, i3); i1 = HEAP32[i2 >> 2] | 0; if (!(HEAP32[i1 >> 2] | 0)) { i1 = 6; break; } FUNCTION_TABLE_vii[HEAP32[i4 >> 2] & 255](i3, i1); i1 = HEAP32[i3 >> 2] | 0; if (i1 | 0) { HEAP32[HEAP32[i2 >> 2] >> 2] = i1; HEAP32[i3 >> 2] = 0; } } if ((i1 | 0) == 6) ___assert_fail(35356, 35330, 243, 35351); else if ((i1 | 0) == 10) { STACKTOP = i7; return; } } function __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm5BlockERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm5BlockERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE12__find_equalIjEERPNS_16__tree_node_baseIPvEESL_RKT_(i1, i5, i3) { i1 = i1 | 0; i5 = i5 | 0; i3 = i3 | 0; var i2 = 0, i4 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { i4 = HEAP32[i3 >> 2] | 0; while (1) { i2 = HEAP32[i1 + 16 >> 2] | 0; if (i4 >>> 0 < i2 >>> 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (i2 >>> 0 >= i4 >>> 0) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZN4wasm7Literal10printFloatERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEf(i3, d2) { i3 = i3 | 0; d2 = +d2; var i1 = 0, i4 = 0; i1 = (HEAPF32[tempDoublePtr >> 2] = d2, HEAP32[tempDoublePtr >> 2] | 0); if ((i1 & 2147483647) >>> 0 > 2139095040) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, (i1 | 0) < 0 ? 43728 : 53494) | 0, 36167) | 0; i1 = __ZN4wasm7Literal10NaNPayloadEf(d2) | 0; if (i1 | 0) { i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, 26259) | 0; i4 = i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i4 >> 2] = HEAP32[i4 >> 2] & -75 | 8; i3 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(i3, i1) | 0; i3 = i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0; HEAP32[i3 >> 2] = HEAP32[i3 >> 2] & -75 | 2; } } else __ZN4wasm7Literal11printDoubleERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEd(i3, d2); return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZNK4wasm7Literal3negEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i5 + 16 | 0; i4 = i5; switch (HEAP32[i2 >> 2] | 0) { case 1: { i4 = HEAP32[i2 + 8 >> 2] ^ -2147483648; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i4; break; } case 2: { i3 = i2 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; i3 = HEAP32[i3 + 4 >> 2] ^ -2147483648; HEAP32[i1 >> 2] = 2; i4 = i1 + 8 | 0; HEAP32[i4 >> 2] = i2; HEAP32[i4 + 4 >> 2] = i3; break; } case 3: { i4 = HEAP32[i2 + 8 >> 2] ^ -2147483648; HEAP32[i3 >> 2] = 1; HEAP32[i3 + 8 >> 2] = i4; __ZN4wasm7Literal9castToF32Ev(i1, i3); break; } case 4: { i2 = i2 + 8 | 0; i6 = HEAP32[i2 >> 2] | 0; i2 = HEAP32[i2 + 4 >> 2] ^ -2147483648; HEAP32[i4 >> 2] = 2; i3 = i4 + 8 | 0; HEAP32[i3 >> 2] = i6; HEAP32[i3 + 4 >> 2] = i2; __ZN4wasm7Literal9castToF64Ev(i1, i4); break; } default: {} } STACKTOP = i5; return; } function __ZN4wasm17WasmBinaryBuilder11visitReturnEPNS_6ReturnE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i4; if (HEAP8[i2 + 12 >> 0] | 0) { i5 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20699) | 0; i6 = __ZNKSt3__28ios_base6getlocEv(i5 + (HEAP32[(HEAP32[i5 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i6; i6 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i6 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 31](i6, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i5, i6) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i5) | 0; } i1 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i2) | 0; if ((i1 | 1 | 0) != 1) ___assert_fail(20135, 18854, 2122, 20715); if ((i1 | 0) == 1) { i6 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i2) | 0; HEAP32[i3 + 8 >> 2] = i6; } STACKTOP = i4; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESI_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE4walkERPNS_10ExpressionE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i5 = i3 + 4 | 0; i6 = i3 + 8 | 0; if ((HEAP32[i6 >> 2] | 0) != (HEAP32[i5 >> 2] | 0)) ___assert_fail(35312, 35330, 239, 35351); __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i3, 74, i1); i2 = i4 + 4 | 0; while (1) { if ((HEAP32[i6 >> 2] | 0) == (HEAP32[i5 >> 2] | 0)) { i1 = 10; break; } __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE7popTaskEv(i4, i3); i1 = HEAP32[i2 >> 2] | 0; if (!(HEAP32[i1 >> 2] | 0)) { i1 = 6; break; } FUNCTION_TABLE_vii[HEAP32[i4 >> 2] & 255](i3, i1); i1 = HEAP32[i3 >> 2] | 0; if (i1 | 0) { HEAP32[HEAP32[i2 >> 2] >> 2] = i1; HEAP32[i3 >> 2] = 0; } } if ((i1 | 0) == 6) ___assert_fail(35356, 35330, 243, 35351); else if ((i1 | 0) == 10) { STACKTOP = i7; return; } } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6GlobalEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESJ_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIPN4wasm4CallENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm4CallERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm4CallENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm4CallERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE4walkERPNS_10ExpressionE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i7; i5 = i3 + 4 | 0; i6 = i3 + 8 | 0; if ((HEAP32[i6 >> 2] | 0) != (HEAP32[i5 >> 2] | 0)) ___assert_fail(35312, 35330, 239, 35351); __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i3, 120, i1); i2 = i4 + 4 | 0; while (1) { if ((HEAP32[i6 >> 2] | 0) == (HEAP32[i5 >> 2] | 0)) { i1 = 10; break; } __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE7popTaskEv(i4, i3); i1 = HEAP32[i2 >> 2] | 0; if (!(HEAP32[i1 >> 2] | 0)) { i1 = 6; break; } FUNCTION_TABLE_vii[HEAP32[i4 >> 2] & 255](i3, i1); i1 = HEAP32[i3 >> 2] | 0; if (i1 | 0) { HEAP32[HEAP32[i2 >> 2] >> 2] = i1; HEAP32[i3 >> 2] = 0; } } if ((i1 | 0) == 6) ___assert_fail(35356, 35330, 243, 35351); else if ((i1 | 0) == 10) { STACKTOP = i7; return; } } function __ZNK4wasm7Literal3absEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i5 + 16 | 0; i4 = i5; switch (HEAP32[i2 >> 2] | 0) { case 1: { i4 = HEAP32[i2 + 8 >> 2] & 2147483647; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i4; break; } case 2: { i3 = i2 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; i3 = HEAP32[i3 + 4 >> 2] & 2147483647; HEAP32[i1 >> 2] = 2; i4 = i1 + 8 | 0; HEAP32[i4 >> 2] = i2; HEAP32[i4 + 4 >> 2] = i3; break; } case 3: { i4 = HEAP32[i2 + 8 >> 2] & 2147483647; HEAP32[i3 >> 2] = 1; HEAP32[i3 + 8 >> 2] = i4; __ZN4wasm7Literal9castToF32Ev(i1, i3); break; } case 4: { i2 = i2 + 8 | 0; i6 = HEAP32[i2 >> 2] | 0; i2 = HEAP32[i2 + 4 >> 2] & 2147483647; HEAP32[i4 >> 2] = 2; i3 = i4 + 8 | 0; HEAP32[i3 >> 2] = i6; HEAP32[i3 + 4 >> 2] = i2; __ZN4wasm7Literal9castToF64Ev(i1, i4); break; } default: {} } STACKTOP = i5; return; } function __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEEC2EjjS6_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i1, i3); __ZNSt3__214__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN6cashew12ValueBuilder14appendToObjectENS_3RefENS_7IStringES1_(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i8 + 12 | 0; i5 = i8 + 8 | 0; i6 = i8 + 4 | 0; i7 = i8; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45368) | 0) { i2 = __ZN6cashew3RefixEj(i2, 1) | 0; i2 = HEAP32[i2 >> 2] | 0; i9 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i3 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i3) | 0; HEAP32[i6 >> 2] = i3; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i9, i1) | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; i7 = __ZN6cashew5Value9push_backENS_3RefE(i6, i1) | 0; HEAP32[i5 >> 2] = i7; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i2, i1) | 0; STACKTOP = i8; return; } else ___assert_fail(29631, 34046, 1654, 29650); } function __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEEC2EjjS5_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESH_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 4; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 9; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 8; break; } else i1 = i2; } } if ((i2 | 0) == 4) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 8) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; i12 = i1 + 8 | 0; i12 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i12 >> 2] | 0) + 20 >> 2] & 127](i12) | 0; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; i3 = HEAP8[i12 + 8 + 3 >> 0] | 0; i13 = i3 << 24 >> 24 < 0; i2 = i13 ? HEAP32[i12 >> 2] | 0 : i12; i3 = i2 + ((i13 ? HEAP32[i12 + 4 >> 2] | 0 : i3 & 255) << 2) | 0; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i1, i9, i8, i4, i5, i6, i2, i3) | 0; STACKTOP = i7; return i6 | 0; } function __ZN4wasm13WasmValidator11visitSwitchEPNS_6SwitchE(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i10 + 8 | 0; i5 = i10 + 4 | 0; i6 = i10; i7 = i4 + 8 | 0; i8 = HEAP32[i4 + 16 >> 2] | 0; i9 = i4 + 32 | 0; i2 = 0; while (1) { if ((i2 | 0) == (i8 | 0)) break; i11 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i7, i2) | 0; HEAP32[i5 >> 2] = HEAP32[i11 >> 2]; i11 = HEAP32[i9 >> 2] | 0; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; __ZN4wasm13WasmValidator9noteBreakENS_4NameEPNS_10ExpressionE(i3, i1, i11); i2 = i2 + 1 | 0; } HEAP32[i6 >> 2] = HEAP32[i4 + 24 >> 2]; i11 = HEAP32[i9 >> 2] | 0; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; __ZN4wasm13WasmValidator9noteBreakENS_4NameEPNS_10ExpressionE(i3, i1, i11); __ZN4wasm13WasmValidator12shouldBeTrueIPNS_6SwitchEEEbbT_PKc(i3, (HEAP32[(HEAP32[i4 + 28 >> 2] | 0) + 4 >> 2] | 4 | 0) == 5, i4, 15245) | 0; STACKTOP = i10; return; } function __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE12__find_equalIS4_EERPNS_16__tree_node_baseIPvEESI_RKT_(i1, i5, i3) { i1 = i1 | 0; i5 = i5 | 0; i3 = i3 | 0; var i2 = 0, i4 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { i4 = HEAP32[i3 >> 2] | 0; while (1) { i2 = HEAP32[i1 + 16 >> 2] | 0; if (i4 >>> 0 < i2 >>> 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (i2 >>> 0 >= i4 >>> 0) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE12__find_equalIS3_EERPNS_16__tree_node_baseIPvEESH_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder8getBlockEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i7 + 4 | 0; i2 = i7; i3 = __ZN4wasm17WasmBinaryBuilder12getNextLabelEv(i1) | 0; HEAP32[i5 >> 2] = i3; i6 = i1 + 88 | 0; i4 = HEAP32[i6 >> 2] | 0; if ((i4 | 0) == (HEAP32[i1 + 92 >> 2] | 0)) __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i1 + 84 | 0, i5); else { HEAP32[i4 >> 2] = i3; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; } HEAP32[i2 >> 2] = (HEAP32[i1 >> 2] | 0) + 100; i2 = __ZN4wasm7Builder8blockifyEPNS_10ExpressionES2_(i2, __ZN4wasm17WasmBinaryBuilder13getMaybeBlockEv(i1) | 0, 0) | 0; i3 = HEAP32[i6 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i4 = i1 + -1 | 0; HEAP32[i6 >> 2] = i3 + (i4 << 2); i1 = i4; } i6 = (__ZN4wasm10Expression4castINS_5BlockEEEPT_v(i2) | 0) + 8 | 0; HEAP32[i6 >> 2] = HEAP32[i5 >> 2]; STACKTOP = i7; return i2 | 0; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; i12 = i1 + 8 | 0; i12 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i12 >> 2] | 0) + 20 >> 2] & 127](i12) | 0; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; i3 = HEAP8[i12 + 11 >> 0] | 0; i13 = i3 << 24 >> 24 < 0; i2 = i13 ? HEAP32[i12 >> 2] | 0 : i12; i3 = i2 + (i13 ? HEAP32[i12 + 4 >> 2] | 0 : i3 & 255) | 0; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i1, i9, i8, i4, i5, i6, i2, i3) | 0; STACKTOP = i7; return i6 | 0; } function __ZN6cashew12ValueBuilder21appendDefaultToSwitchENS_3RefE(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i6 + 12 | 0; i3 = i6 + 8 | 0; i4 = i6 + 4 | 0; i5 = i6; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45128) | 0) { i2 = __ZN6cashew3RefixEj(i2, 2) | 0; i2 = HEAP32[i2 >> 2] | 0; i7 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i8 = __ZN6cashew12ValueBuilder8makeNullEv() | 0; HEAP32[i4 >> 2] = i8; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i7, i1) | 0; i7 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i5 >> 2] = i7; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i5 = __ZN6cashew5Value9push_backENS_3RefE(i4, i1) | 0; HEAP32[i3 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i2, i1) | 0; STACKTOP = i6; return; } else ___assert_fail(29072, 34046, 1605, 29112); } function __ZNKSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = HEAP32[i1 >> 2] | 0; i1 = i6 * 33 ^ 5381; i5 = HEAP32[i2 + 4 >> 2] | 0; L1 : do if (i5) { i7 = i5 + -1 | 0; i4 = (i7 & i5 | 0) == 0; if (i4) i3 = i7 & i1; else i3 = (i1 >>> 0) % (i5 >>> 0) | 0; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + (i3 << 2) >> 2] | 0; if (i1) do { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break L1; } i2 = HEAP32[i1 + 4 >> 2] | 0; if (i4) i2 = i2 & i7; else i2 = (i2 >>> 0) % (i5 >>> 0) | 0; if ((i2 | 0) != (i3 | 0)) { i1 = 0; break L1; } } while ((HEAP32[i1 + 8 >> 2] | 0) != (i6 | 0)); else i1 = 0; } else i1 = 0; while (0); return i1 | 0; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__hash_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = HEAP32[i1 >> 2] | 0; i1 = i6 * 33 ^ 5381; i5 = HEAP32[i2 + 4 >> 2] | 0; L1 : do if (i5) { i7 = i5 + -1 | 0; i4 = (i7 & i5 | 0) == 0; if (i4) i3 = i7 & i1; else i3 = (i1 >>> 0) % (i5 >>> 0) | 0; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + (i3 << 2) >> 2] | 0; if (i1) do { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break L1; } i2 = HEAP32[i1 + 4 >> 2] | 0; if (i4) i2 = i2 & i7; else i2 = (i2 >>> 0) % (i5 >>> 0) | 0; if ((i2 | 0) != (i3 | 0)) { i1 = 0; break L1; } } while ((HEAP32[i1 + 8 >> 2] | 0) != (i6 | 0)); else i1 = 0; } else i1 = 0; while (0); return i1 | 0; } function __ZNKSt3__28time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPK2tmcc(i3, i7, i1, i2, i4, i5, i6) { i3 = i3 | 0; i7 = i7 | 0; i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 112 | 0; i1 = i8 + 4 | 0; i2 = i8; HEAP32[i2 >> 2] = i1 + 100; __ZNKSt3__210__time_put8__do_putEPcRS1_PK2tmcc(i3 + 8 | 0, i1, i2, i4, i5, i6); i6 = HEAP32[i2 >> 2] | 0; i5 = i1; i1 = HEAP32[i7 >> 2] | 0; while (1) { if ((i5 | 0) == (i6 | 0)) break; i2 = HEAP8[i5 >> 0] | 0; do if (i1) { i3 = i1 + 24 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i1 + 28 >> 2] | 0)) { i7 = (FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 52 >> 2] & 31](i1, i2 & 255) | 0) == -1; i1 = i7 ? 0 : i1; break; } else { HEAP32[i3 >> 2] = i4 + 1; HEAP8[i4 >> 0] = i2; break; } } else i1 = 0; while (0); i5 = i5 + 1 | 0; } STACKTOP = i8; return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj9EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP8[i1 + 11 >> 0] = 8; i3 = i2; i5 = i3; i5 = HEAPU8[i5 >> 0] | HEAPU8[i5 + 1 >> 0] << 8 | HEAPU8[i5 + 2 >> 0] << 16 | HEAPU8[i5 + 3 >> 0] << 24; i3 = i3 + 4 | 0; i3 = HEAPU8[i3 >> 0] | HEAPU8[i3 + 1 >> 0] << 8 | HEAPU8[i3 + 2 >> 0] << 16 | HEAPU8[i3 + 3 >> 0] << 24; i2 = i1; i4 = i2; HEAP8[i4 >> 0] = i5; HEAP8[i4 + 1 >> 0] = i5 >> 8; HEAP8[i4 + 2 >> 0] = i5 >> 16; HEAP8[i4 + 3 >> 0] = i5 >> 24; i2 = i2 + 4 | 0; HEAP8[i2 >> 0] = i3; HEAP8[i2 + 1 >> 0] = i3 >> 8; HEAP8[i2 + 2 >> 0] = i3 >> 16; HEAP8[i2 + 3 >> 0] = i3 >> 24; HEAP8[i1 + 8 >> 0] = 0; i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZN6cashew12ValueBuilder15makeConditionalENS_3RefES1_S1_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i4 + 16 | 0; i10 = i4 + 12 | 0; i9 = i4 + 8 | 0; i7 = i4 + 4 | 0; i6 = i4; i8 = __ZN6cashew12ValueBuilder12makeRawArrayEi(4) | 0; i11 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45068) | 0; HEAP32[i10 >> 2] = i11; HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; i8 = __ZN6cashew5Value9push_backENS_3RefE(i8, i5) | 0; HEAP32[i9 >> 2] = HEAP32[i1 >> 2]; HEAP32[i5 >> 2] = HEAP32[i9 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i8, i5) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i1, i5) | 0; HEAP32[i6 >> 2] = HEAP32[i3 >> 2]; HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; i3 = __ZN6cashew5Value9push_backENS_3RefE(i2, i5) | 0; STACKTOP = i4; return i3 | 0; } function __ZN4wasm16PrintSExpression17visitCallIndirectEPNS_12CallIndirectE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i5 + 4 | 0; i6 = i5; i2 = __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i3 >> 2] | 0, 33090, 0) | 0; HEAP32[i6 >> 2] = HEAP32[i1 + 24 >> 2]; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i2, i4) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i3); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i3, HEAP32[i1 + 28 >> 2] | 0); i4 = i1 + 8 | 0; i2 = HEAP32[i1 + 16 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i6 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i1) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i3, HEAP32[i6 >> 2] | 0); i1 = i1 + 1 | 0; } __ZN4wasm16PrintSExpression9decIndentEv(i3); STACKTOP = i5; return; } function ___shgetc(i6) { i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0; i2 = i6 + 104 | 0; i5 = HEAP32[i2 >> 2] | 0; if ((i5 | 0) != 0 ? (HEAP32[i6 + 108 >> 2] | 0) >= (i5 | 0) : 0) i7 = 4; else { i1 = ___uflow(i6) | 0; if ((i1 | 0) >= 0) { i2 = HEAP32[i2 >> 2] | 0; i5 = HEAP32[i6 + 8 >> 2] | 0; if (i2) { i4 = HEAP32[i6 + 4 >> 2] | 0; i2 = i2 - (HEAP32[i6 + 108 >> 2] | 0) | 0; i3 = i5; if ((i5 - i4 | 0) < (i2 | 0)) i7 = 9; else HEAP32[i6 + 100 >> 2] = i4 + (i2 + -1); } else { i3 = i5; i7 = 9; } if ((i7 | 0) == 9) HEAP32[i6 + 100 >> 2] = i5; i2 = i6 + 4 | 0; if (!i3) i2 = HEAP32[i2 >> 2] | 0; else { i2 = HEAP32[i2 >> 2] | 0; i6 = i6 + 108 | 0; HEAP32[i6 >> 2] = i3 + 1 - i2 + (HEAP32[i6 >> 2] | 0); } i2 = i2 + -1 | 0; if ((HEAPU8[i2 >> 0] | 0 | 0) != (i1 | 0)) HEAP8[i2 >> 0] = i1; } else i7 = 4; } if ((i7 | 0) == 4) { HEAP32[i6 + 100 >> 2] = 0; i1 = -1; } return i1 | 0; } function __ZZN4wasm17WasmBinaryBuilder13readFunctionsEvENKUlvE_clEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 12 | 0; i4 = i6; i5 = i6 + 16 | 0; i1 = HEAP32[i1 >> 2] | 0; i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = i2 + 1; __ZNSt3__29to_stringEj(i5, i2); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKc(i5, 0, 19873) | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 + 11 >> 0] | 0) < 0 ? HEAP32[i4 >> 2] | 0 : i4, 0); i3 = HEAP32[i3 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); STACKTOP = i6; return i3 | 0; } function __ZNSt3__26vectorIPcNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIPcRNS_9allocatorIS1_EEEC2EjjS4_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; HEAP32[HEAP32[i6 >> 2] >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + 4; __ZNSt3__26vectorIPcNS_9allocatorIS1_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS1_RS3_EE(i1, i3); __ZNSt3__214__split_bufferIPcRNS_9allocatorIS1_EEED2Ev(i3); STACKTOP = i7; return; } } function __ZN6cashew12ValueBuilder18appendCaseToSwitchENS_3RefES1_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i7 + 12 | 0; i4 = i7 + 8 | 0; i5 = i7 + 4 | 0; i6 = i7; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45128) | 0) { i2 = __ZN6cashew3RefixEj(i2, 2) | 0; i2 = HEAP32[i2 >> 2] | 0; i8 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; HEAP32[i5 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i5 = __ZN6cashew5Value9push_backENS_3RefE(i8, i1) | 0; i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i6 >> 2] = i3; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i5, i1) | 0; HEAP32[i4 >> 2] = i6; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i2, i1) | 0; STACKTOP = i7; return; } else ___assert_fail(29072, 34046, 1599, 29093); } function __ZNSt3__26vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE6resizeEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = i2 + 4 | 0; i1 = HEAP32[i6 >> 2] | 0; i5 = HEAP32[i2 >> 2] | 0; i4 = (i1 - i5 | 0) / 20 | 0; L1 : do if (i4 >>> 0 >= i3 >>> 0) { if (i4 >>> 0 > i3 >>> 0) { i2 = i5 + (i3 * 20 | 0) | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i5 = i1 + -20 | 0; HEAP32[i6 >> 2] = i5; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i5); i1 = HEAP32[i6 >> 2] | 0; } } } else __ZNSt3__26vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE8__appendEj(i2, i3 - i4 | 0); while (0); return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseDottingES1_RPc(i1, i8, i9) { i1 = i1 | 0; i8 = i8 | 0; i9 = i9 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i2 = i7 + 28 | 0; i1 = i7 + 24 | 0; i3 = i7; i4 = i7 + 20 | 0; i5 = i7 + 16 | 0; i6 = HEAP32[i9 >> 2] | 0; if ((HEAP8[i6 >> 0] | 0) != 46) ___assert_fail(29311, 28546, 649, 29323); i6 = i6 + 1 | 0; HEAP32[i9 >> 2] = i6; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i3, i6); if ((HEAP32[i3 + 12 >> 2] | 0) == 2) { HEAP32[i9 >> 2] = (HEAP32[i9 >> 2] | 0) + (HEAP32[i3 + 8 >> 2] | 0); HEAP32[i4 >> 2] = HEAP32[i8 >> 2]; HEAP32[i5 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; i9 = __ZN6cashew12ValueBuilder7makeDotENS_3RefENS_7IStringE(i1, i2) | 0; STACKTOP = i7; return i9 | 0; } else ___assert_fail(29336, 28546, 652, 29323); return 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseToplevelEPc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i3 + 24 | 0; i5 = i3 + 20 | 0; i8 = i3 + 16 | 0; i7 = i3 + 12 | 0; i6 = i3 + 8 | 0; i10 = i3 + 4 | 0; i9 = i3; HEAP32[i8 >> 2] = i2; HEAP32[i1 + 12 >> 2] = i2; i2 = _strlen(i2) | 0; HEAP32[i1 + 16 >> 2] = i2; i2 = __ZN6cashew12ValueBuilder12makeToplevelEv() | 0; HEAP32[i7 >> 2] = i2; HEAP32[i10 >> 2] = 0; HEAP32[i9 >> 2] = 0; HEAP32[i5 >> 2] = HEAP32[i10 >> 2]; HEAP32[i4 >> 2] = HEAP32[i9 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i1, i8, 28513, i5, i4) | 0; HEAP32[i6 >> 2] = i1; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; __ZN6cashew12ValueBuilder15setBlockContentENS_3RefES1_(i5, i4); STACKTOP = i3; return i2 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i8; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i7, i1); L1 : do if (HEAP8[i7 >> 0] | 0) { i3 = HEAP32[i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0; i4 = i3; do if (i3 | 0) { i5 = i4 + 24 | 0; i6 = HEAP32[i5 >> 2] | 0; if ((i6 | 0) == (HEAP32[i4 + 28 >> 2] | 0)) if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 52 >> 2] & 31](i4, i2 & 255) | 0) == -1) break; else break L1; else { HEAP32[i5 >> 2] = i6 + 1; HEAP8[i6 >> 0] = i2; break L1; } } while (0); i6 = i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i6 >> 2] = HEAP32[i6 >> 2] | 1; } while (0); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i7); STACKTOP = i8; return i1 | 0; } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i8 = (HEAP32[i6 >> 2] | 0) + -4 | 0; i7 = i1 + -4 | 0; i9 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = i9; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -4; i1 = i7; } i7 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i7; i7 = i3 + 8 | 0; i9 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i9; i7 = i2 + 8 | 0; i9 = i3 + 12 | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZN4wasm13WasmValidator11visitImportEPNS_6ImportE(i4, i5) { i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i7 = 0, i8 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i7 + 8 | 0; i1 = i7 + 4 | 0; i6 = i7; L1 : do if (HEAP8[i4 + 25 >> 0] | 0) { i2 = i5 + 12 | 0; i8 = HEAP32[(HEAP32[i2 >> 2] | 0) + 4 >> 2] | 0; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; HEAP32[i3 >> 2] = HEAP32[i1 >> 2]; __ZN4wasm13WasmValidator15shouldBeUnequalINS_4NameENS_8WasmTypeEEEbT0_S4_T_PKc(i4, i8, 2, i3, 14663) | 0; i1 = HEAP32[i2 >> 2] | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; i1 = HEAP32[i1 + 8 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i8 = HEAP32[i1 >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i5 >> 2]; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; __ZN4wasm13WasmValidator15shouldBeUnequalINS_4NameENS_8WasmTypeEEEbT0_S4_T_PKc(i4, i8, 2, i3, 14711) | 0; i1 = i1 + 4 | 0; } } while (0); STACKTOP = i7; return; } function __ZNSt3__212_GLOBAL__N_117as_integer_helperIlNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFlPKcPPciEEET_RKS7_RKT0_PjiT1_(i5, i1, i6, i2) { i5 = i5 | 0; i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i7; HEAP32[i3 >> 2] = 0; i4 = (HEAP8[i1 + 11 >> 0] | 0) < 0 ? HEAP32[i1 >> 2] | 0 : i1; i8 = ___errno_location() | 0; i9 = HEAP32[i8 >> 2] | 0; HEAP32[i8 >> 2] = 0; i2 = _strtol(i4, i3, i2) | 0; i1 = HEAP32[i8 >> 2] | 0; HEAP32[i8 >> 2] = i9; if ((i1 | 0) == 34) __ZNSt3__212_GLOBAL__N_130throw_from_string_out_of_rangeERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(i5); i1 = HEAP32[i3 >> 2] | 0; if ((i1 | 0) == (i4 | 0)) __ZNSt3__212_GLOBAL__N_129throw_from_string_invalid_argERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(i5); if (i6 | 0) HEAP32[i6 >> 2] = i1 - i4; STACKTOP = i7; return i2 | 0; } function __ZNSt3__26vectorIjNS_9allocatorIjEEE21__push_back_slow_pathIRKjEEvOT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i7; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i1 >> 2] | 0; i6 = (i4 - i5 >> 2) + 1 | 0; if (i6 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i9 = (HEAP32[i1 + 8 >> 2] | 0) - i5 | 0; i8 = i9 >> 1; __ZNSt3__214__split_bufferIjRNS_9allocatorIjEEEC2EjjS3_(i3, i9 >> 2 >>> 0 < 536870911 ? (i8 >>> 0 < i6 >>> 0 ? i6 : i8) : 1073741823, i4 - i5 >> 2, i1 + 8 | 0); i6 = i3 + 8 | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = i5 + 4; __ZNSt3__26vectorIjNS_9allocatorIjEEE26__swap_out_circular_bufferERNS_14__split_bufferIjRS2_EE(i1, i3); __ZNSt3__214__split_bufferIjRNS_9allocatorIjEEED2Ev(i3); STACKTOP = i7; return; } } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm8FunctionENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i8 = (HEAP32[i6 >> 2] | 0) + -4 | 0; i7 = i1 + -4 | 0; i9 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = i9; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -4; i1 = i7; } i7 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i7; i7 = i3 + 8 | 0; i9 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i9; i7 = i2 + 8 | 0; i9 = i3 + 12 | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZN6cashew5Arena10allocArrayEv(i8) { i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i9; i5 = i8 + 16 | 0; i6 = i8 + 20 | 0; i7 = HEAP32[i6 >> 2] | 0; i1 = i7; if (!((i7 | 0) != (HEAP32[i5 >> 2] | 0) ? (i3 = i8 + 28 | 0, i2 = HEAP32[i3 >> 2] | 0, (i2 | 0) != 1e3) : 0)) { i2 = __Znaj(12004) | 0; HEAP32[i2 >> 2] = 1e3; i2 = i2 + 4 | 0; _memset(i2 | 0, 0, 12e3) | 0; HEAP32[i4 >> 2] = i2; if (i1 >>> 0 < (HEAP32[i8 + 24 >> 2] | 0) >>> 0) { HEAP32[i7 >> 2] = i2; i1 = (HEAP32[i6 >> 2] | 0) + 4 | 0; HEAP32[i6 >> 2] = i1; } else { __ZNSt3__26vectorIPNS0_IN6cashew3RefENS_9allocatorIS2_EEEENS3_IS6_EEE21__push_back_slow_pathIS6_EEvOT_(i5, i4); i1 = HEAP32[i6 >> 2] | 0; } i3 = i8 + 28 | 0; HEAP32[i3 >> 2] = 0; i2 = 0; } HEAP32[i3 >> 2] = i2 + 1; STACKTOP = i9; return (HEAP32[i1 + -4 >> 2] | 0) + (i2 * 12 | 0) | 0; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE7destroyEPNS_11__tree_nodeISB_PvEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i2) return; else { __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE7destroyEPNS_11__tree_nodeISB_PvEE(i1, HEAP32[i2 >> 2] | 0); __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE7destroyEPNS_11__tree_nodeISB_PvEE(i1, HEAP32[i2 + 4 >> 2] | 0); __ZNSt3__24pairIKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEED2Ev(i2 + 16 | 0); __ZdlPv(i2); return; } } function __ZN4wasm17WasmBinaryBuilder12getNextLabelEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i6 + 12 | 0; i4 = i6; i5 = i6 + 16 | 0; i1 = i1 + 36 | 0; i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = i2 + 1; __ZNSt3__29to_stringEj(i5, i2); i2 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKc(i5, 0, 20011) | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN6cashew7IStringC2EPKcb(i3, (HEAP8[i4 + 11 >> 0] | 0) < 0 ? HEAP32[i4 >> 2] | 0 : i4, 0); i3 = HEAP32[i3 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i4); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); STACKTOP = i6; return i3 | 0; } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i8 = (HEAP32[i6 >> 2] | 0) + -4 | 0; i7 = i1 + -4 | 0; i9 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = i9; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -4; i1 = i7; } i7 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i7; i7 = i3 + 8 | 0; i9 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i9; i7 = i2 + 8 | 0; i9 = i3 + 12 | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ImportENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i8 = (HEAP32[i6 >> 2] | 0) + -4 | 0; i7 = i1 + -4 | 0; i9 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = i9; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -4; i1 = i7; } i7 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i7; i7 = i3 + 8 | 0; i9 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i9; i7 = i2 + 8 | 0; i9 = i3 + 12 | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm6GlobalENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i8 = (HEAP32[i6 >> 2] | 0) + -4 | 0; i7 = i1 + -4 | 0; i9 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = i9; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -4; i1 = i7; } i7 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i7; i7 = i3 + 8 | 0; i9 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i9; i7 = i2 + 8 | 0; i9 = i3 + 12 | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZNSt3__26vectorINS_10unique_ptrIN4wasm6ExportENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i8 = (HEAP32[i6 >> 2] | 0) + -4 | 0; i7 = i1 + -4 | 0; i9 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = i9; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -4; i1 = i7; } i7 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i7; i7 = i3 + 8 | 0; i9 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i9; i7 = i2 + 8 | 0; i9 = i3 + 12 | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZN6cashew12ValueBuilder13makeStatementENS_3RefE(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 8 | 0; i3 = i5 + 4 | 0; i4 = i5; i6 = __ZN6cashew3RefixEj(i2, 0) | 0; if (!(__ZNKSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(45468, __ZN6cashew5Value10getIStringEv(HEAP32[i6 >> 2] | 0) | 0) | 0)) i1 = HEAP32[i2 >> 2] | 0; else { i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45048) | 0; HEAP32[i3 >> 2] = i7; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i1) | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i1) | 0; } STACKTOP = i5; return i1 | 0; } function __ZNSt3__26vectorINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEENS_9allocatorIS5_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS5_RS7_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i8 = (HEAP32[i6 >> 2] | 0) + -4 | 0; i7 = i1 + -4 | 0; i9 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = i9; HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -4; i1 = i7; } i7 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i7; i7 = i3 + 8 | 0; i9 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i9; i7 = i2 + 8 | 0; i9 = i3 + 12 | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; HEAP32[i9 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE12__find_equalIS2_EERPNS_16__tree_node_baseIPvEESD_RKT_(i1, i5, i4) { i1 = i1 | 0; i5 = i5 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; i2 = i1 + 4 | 0; i1 = HEAP32[i2 >> 2] | 0; do if (i1) { while (1) { i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i4, i2) | 0) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) { i2 = 5; break; } else i1 = i2; } else { if (!(__ZNK6cashew7IStringltERKS0_(i2, i4) | 0)) { i2 = 10; break; } i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; if (!i2) { i2 = 9; break; } else i1 = i2; } } if ((i2 | 0) == 5) { HEAP32[i5 >> 2] = i1; break; } else if ((i2 | 0) == 9) { HEAP32[i5 >> 2] = i1; i1 = i3; break; } else if ((i2 | 0) == 10) { HEAP32[i5 >> 2] = i1; i1 = i5; break; } } else { HEAP32[i5 >> 2] = i2; i1 = i2; } while (0); return i1 | 0; } function __ZN4wasm13WasmValidator17validateAlignmentEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i4; switch (i2 | 0) { case 8: case 4: case 2: case 1: break; default: { i2 = __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEElsEj(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZN4wasm13WasmValidator4failEv(i1) | 0, 15602) | 0, i2) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i3, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i3); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i2, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i2) | 0; HEAP8[i1 + 24 >> 0] = 0; } } STACKTOP = i4; return; } function __ZNSt3__212__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE4findIS2_EENS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i1 = __ZN6cashew7IString6hash_cEPKc(HEAP32[i3 >> 2] | 0) | 0; i5 = HEAP32[i2 + 4 >> 2] | 0; L1 : do if (i5) { i6 = i5 + -1 | 0; i7 = (i6 & i5 | 0) == 0; if (i7) i4 = i6 & i1; else i4 = (i1 >>> 0) % (i5 >>> 0) | 0; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + (i4 << 2) >> 2] | 0; if (i1) { i3 = HEAP32[i3 >> 2] | 0; do { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break L1; } i2 = HEAP32[i1 + 4 >> 2] | 0; if (i7) i2 = i2 & i6; else i2 = (i2 >>> 0) % (i5 >>> 0) | 0; if ((i2 | 0) != (i4 | 0)) { i1 = 0; break L1; } } while ((_strcmp(HEAP32[i1 + 8 >> 2] | 0, i3) | 0) != 0); } else i1 = 0; } else i1 = 0; while (0); return i1 | 0; } function __ZNKSt3__28time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPK2tmcc(i3, i7, i1, i2, i4, i5, i6) { i3 = i3 | 0; i7 = i7 | 0; i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 416 | 0; i1 = i8 + 8 | 0; i2 = i8; HEAP32[i2 >> 2] = i1 + 400; __ZNKSt3__210__time_put8__do_putEPwRS1_PK2tmcc(i3 + 8 | 0, i1, i2, i4, i5, i6); i6 = HEAP32[i2 >> 2] | 0; i5 = i1; i1 = HEAP32[i7 >> 2] | 0; while (1) { if ((i5 | 0) == (i6 | 0)) break; i2 = HEAP32[i5 >> 2] | 0; if (!i1) i1 = 0; else { i3 = i1 + 24 | 0; i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (HEAP32[i1 + 28 >> 2] | 0)) i2 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 52 >> 2] & 31](i1, i2) | 0; else { HEAP32[i3 >> 2] = i4 + 4; HEAP32[i4 >> 2] = i2; } i1 = (i2 | 0) == -1 ? 0 : i1; } i5 = i5 + 4 | 0; } STACKTOP = i8; return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__construct_nodeIJRKNS_21piecewise_construct_tENS_5tupleIJOS7_EEENSM_IJEEEEEENS_10unique_ptrINS_11__tree_nodeISB_PvEENS_22__tree_node_destructorINS5_IST_EEEEEEDpOT_(i3, i4, i1, i5, i2) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; i5 = i5 | 0; i2 = i2 | 0; var i6 = 0; i6 = __Znwj(72) | 0; HEAP32[i3 >> 2] = i6; HEAP32[i3 + 4 >> 2] = i4 + 4; i3 = i3 + 8 | 0; HEAP8[i3 >> 0] = 0; i1 = i6 + 16 | 0; i2 = HEAP32[i5 >> 2] | 0; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZN4wasm12PassRegistry8PassInfoC2Ev(i6 + 32 | 0); HEAP8[i3 >> 0] = 1; return; } function __ZN10__cxxabiv112_GLOBAL__N_119parse_discriminatorEPKcS2_(i1, i4) { i1 = i1 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0; L1 : do if ((i1 | 0) != (i4 | 0)) { i2 = HEAP8[i1 >> 0] | 0; if (i2 << 24 >> 24 != 95) { if (((i2 << 24 >> 24) + -48 | 0) >>> 0 >= 10) break; while (1) { i1 = i1 + 1 | 0; if ((i1 | 0) == (i4 | 0)) { i1 = i4; break L1; } if (((HEAP8[i1 >> 0] | 0) + -48 | 0) >>> 0 >= 10) break L1; } } i2 = i1 + 1 | 0; if ((i2 | 0) != (i4 | 0)) { i2 = HEAP8[i2 >> 0] | 0; if (((i2 << 24 >> 24) + -48 | 0) >>> 0 < 10) { i1 = i1 + 2 | 0; break; } if (i2 << 24 >> 24 == 95) { i2 = i1 + 2 | 0; while (1) { if ((i2 | 0) == (i4 | 0)) break L1; i3 = HEAP8[i2 >> 0] | 0; if (((i3 << 24 >> 24) + -48 | 0) >>> 0 >= 10) break; i2 = i2 + 1 | 0; } return (i3 << 24 >> 24 == 95 ? i2 + 1 | 0 : i1) | 0; } } } while (0); return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder9makeConstERNS_7ElementENS_8WasmTypeE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i5 + 16 | 0; i7 = i5 + 12 | 0; i4 = i5; i2 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i7 >> 2] = i2; i1 = HEAP32[i1 + 4 >> 2] | 0; HEAP32[i6 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN4wasm10parseConstEN6cashew7IStringENS_8WasmTypeER10MixedArena(i6, i3, i1) | 0; if (!i1) { i7 = ___cxa_allocate_exception(20) | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 17870, 9); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i7, i4); ___cxa_throw(i7 | 0, 8, 154); } else { STACKTOP = i5; return i1 | 0; } return 0; } function __ZNSt3__227__num_get_unsigned_integralItEET_PKcS3_Rji(i1, i4, i5, i2) { i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i2 = i2 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i9; do if ((i1 | 0) == (i4 | 0)) { HEAP32[i5 >> 2] = 4; i1 = 0; } else { if ((HEAP8[i1 >> 0] | 0) == 45) { HEAP32[i5 >> 2] = 4; i1 = 0; break; } i7 = ___errno_location() | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; i1 = _strtoull_l(i1, i6, i2, __ZNSt3__26__clocEv() | 0) | 0; i2 = tempRet0; i3 = HEAP32[i7 >> 2] | 0; if (!i3) HEAP32[i7 >> 2] = i8; do if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 65535 | (i3 | 0) == 34) { HEAP32[i5 >> 2] = 4; i1 = -1; break; } else { i1 = i1 & 65535; break; } else { HEAP32[i5 >> 2] = 4; i1 = 0; } while (0); } while (0); STACKTOP = i9; return i1 | 0; } function __ZN4wasm3LEBIiaE4readENSt3__28functionIFavEEE(i7, i2) { i7 = i7 | 0; i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0; HEAP32[i7 >> 2] = 0; i6 = 0; while (1) { i8 = (__ZNKSt3__28functionIFavEEclEv(i2) | 0) << 24 >> 24; i5 = i8 & 127; i1 = ((i6 | 0) == 0 ? 127 : (1 << 32 - i6) + 127 | 0) & i5; i3 = (i8 & 128 | 0) != 0; if (i3 & (i1 | 0) != (i5 | 0)) { i1 = 3; break; } i4 = HEAP32[i7 >> 2] | i1 << i6; HEAP32[i7 >> 2] = i4; i5 = i6 + 7 | 0; if (!i3) { i1 = 7; break; } if (i5 >>> 0 < 32) i6 = i5; else { i1 = 6; break; } } if ((i1 | 0) == 3) ___assert_fail(19019, 18854, 99, 18872); else if ((i1 | 0) == 6) ___assert_fail(19096, 18854, 104, 18872); else if ((i1 | 0) == 7) { if (i5 >>> 0 < 32 & (i8 & 64 | 0) != 0 ? (i8 = 25 - i6 | 0, i8 = i4 << i8 >> i8, HEAP32[i7 >> 2] = i8, (i8 | 0) >= 0) : 0) ___assert_fail(20807, 18854, 114, 18872); return; } } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner14visitSetGlobalEPNS_9SetGlobalE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; i4 = HEAP32[i3 + 8 >> 2] | 0; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i2, HEAP32[i3 + 12 >> 2] | 0); do if (!(HEAP32[i1 + 16 >> 2] | 0)) if ((HEAP32[i1 >> 2] | 0) == (HEAP32[i3 + 4 >> 2] | 0)) { i4 = (HEAP32[(HEAP32[i2 + 4 >> 2] | 0) + 4 >> 2] | 0) + (i4 << 4) | 0; HEAP32[i4 >> 2] = HEAP32[i1 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; break; } else ___assert_fail(25846, 24695, 722, 20668); while (0); return; } function __ZN4wasm34OptimizingIncrementalModuleBuilder20waitUntilAllFinishedEv(i5) { i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i1 = i6 + 16 | 0; i2 = i6 + 8 | 0; i3 = i6; i7 = i5 + 52 | 0; HEAP32[i2 >> 2] = i7; i4 = i2 + 4 | 0; HEAP8[i4 >> 0] = 1; __ZNSt3__25mutex4lockEv(i7); HEAP8[i5 + 128 >> 0] = 1; if (HEAP32[i5 + 36 >> 2] | 0) { HEAP32[i3 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; __ZNSt3__218condition_variable4waitIZN4wasm34OptimizingIncrementalModuleBuilder20waitUntilAllFinishedEvEUlvE_EEvRNS_11unique_lockINS_5mutexEEET_(i5 + 80 | 0, i2, i1); } if (HEAP8[i4 >> 0] | 0) __ZNSt3__25mutex6unlockEv(HEAP32[i2 >> 2] | 0); i2 = HEAP32[i5 + 28 >> 2] | 0; i1 = HEAP32[i5 + 24 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZNSt3__26thread4joinEv(HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } STACKTOP = i6; return; } function __ZNK4wasm7Literal3subERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, d5 = 0.0; switch (HEAP32[i2 >> 2] | 0) { case 1: { i3 = (HEAP32[i2 + 8 >> 2] | 0) - (HEAP32[i3 + 8 >> 2] | 0) | 0; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 2: { i4 = i2 + 8 | 0; i2 = i3 + 8 | 0; i2 = _i64Subtract(HEAP32[i4 >> 2] | 0, HEAP32[i4 + 4 >> 2] | 0, HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 >> 2] = 2; i3 = i1 + 8 | 0; HEAP32[i3 >> 2] = i2; HEAP32[i3 + 4 >> 2] = tempRet0; break; } case 3: { d5 = +__ZNK4wasm7Literal6getf32Ev(i2) - +__ZNK4wasm7Literal6getf32Ev(i3); HEAP32[i1 >> 2] = 3; HEAPF32[i1 + 8 >> 2] = d5; break; } case 4: { d5 = +__ZNK4wasm7Literal6getf64Ev(i2) - +__ZNK4wasm7Literal6getf64Ev(i3); HEAP32[i1 >> 2] = 4; HEAPF64[i1 + 8 >> 3] = d5; break; } default: {} } return; } function _atoll(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; while (1) { i2 = HEAP8[i1 >> 0] | 0; i3 = i2 << 24 >> 24; i4 = i1 + 1 | 0; if (!(_isspace(i3) | 0)) break; else i1 = i4; } switch (i3 | 0) { case 45: { i1 = 1; i5 = 5; break; } case 43: { i1 = 0; i5 = 5; break; } default: i6 = 0; } if ((i5 | 0) == 5) { i6 = i1; i1 = i4; i2 = HEAP8[i4 >> 0] | 0; } i4 = (i2 << 24 >> 24) + -48 | 0; if (i4 >>> 0 < 10) { i2 = 0; i3 = 0; do { i2 = ___muldi3(i2 | 0, i3 | 0, 10, 0) | 0; i1 = i1 + 1 | 0; i2 = _i64Subtract(i2 | 0, tempRet0 | 0, i4 | 0, ((i4 | 0) < 0) << 31 >> 31 | 0) | 0; i3 = tempRet0; i4 = (HEAP8[i1 >> 0] | 0) + -48 | 0; } while (i4 >>> 0 < 10); i1 = i3; } else { i2 = 0; i1 = 0; } i5 = (i6 | 0) != 0; i6 = _i64Subtract(0, 0, i2 | 0, i1 | 0) | 0; tempRet0 = i5 ? i1 : tempRet0; return (i5 ? i2 : i6) | 0; } function __ZNK4wasm7Literal3mulERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var d4 = 0.0; switch (HEAP32[i2 >> 2] | 0) { case 1: { i3 = Math_imul(HEAP32[i3 + 8 >> 2] | 0, HEAP32[i2 + 8 >> 2] | 0) | 0; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 2: { i2 = i2 + 8 | 0; i3 = i3 + 8 | 0; i2 = ___muldi3(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 >> 2] = 2; i3 = i1 + 8 | 0; HEAP32[i3 >> 2] = i2; HEAP32[i3 + 4 >> 2] = tempRet0; break; } case 3: { d4 = +__ZNK4wasm7Literal6getf32Ev(i2) * +__ZNK4wasm7Literal6getf32Ev(i3); HEAP32[i1 >> 2] = 3; HEAPF32[i1 + 8 >> 2] = d4; break; } case 4: { d4 = +__ZNK4wasm7Literal6getf64Ev(i2) * +__ZNK4wasm7Literal6getf64Ev(i3); HEAP32[i1 >> 2] = 4; HEAPF64[i1 + 8 >> 3] = d4; break; } default: {} } return; } function __ZNK10__cxxabiv117__class_type_info29process_static_type_above_dstEPNS_19__dynamic_cast_infoEPKvS4_i(i1, i5, i3, i2, i4) { i1 = i1 | 0; i5 = i5 | 0; i3 = i3 | 0; i2 = i2 | 0; i4 = i4 | 0; HEAP8[i5 + 53 >> 0] = 1; do if ((HEAP32[i5 + 4 >> 2] | 0) == (i2 | 0)) { HEAP8[i5 + 52 >> 0] = 1; i1 = i5 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; if (!i2) { HEAP32[i1 >> 2] = i3; HEAP32[i5 + 24 >> 2] = i4; HEAP32[i5 + 36 >> 2] = 1; if (!((i4 | 0) == 1 ? (HEAP32[i5 + 48 >> 2] | 0) == 1 : 0)) break; HEAP8[i5 + 54 >> 0] = 1; break; } if ((i2 | 0) != (i3 | 0)) { i4 = i5 + 36 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; HEAP8[i5 + 54 >> 0] = 1; break; } i2 = i5 + 24 | 0; i1 = HEAP32[i2 >> 2] | 0; if ((i1 | 0) == 2) { HEAP32[i2 >> 2] = i4; i1 = i4; } if ((i1 | 0) == 1 ? (HEAP32[i5 + 48 >> 2] | 0) == 1 : 0) HEAP8[i5 + 54 >> 0] = 1; } while (0); return; } function __ZN4wasm16PrintSExpression13printCallBodyINS_10CallImportEEEvPT_(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i5 + 4 | 0; i2 = i5; HEAP32[i2 >> 2] = HEAP32[i1 + 24 >> 2]; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; __ZN4wasm16PrintSExpression9printNameENS_4NameE(i3, i4) | 0; i4 = i1 + 8 | 0; i1 = i1 + 16 | 0; if (!(HEAP32[i1 >> 2] | 0)) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i3 >> 2] | 0, 41) | 0; else { __ZN4wasm16PrintSExpression9incIndentEv(i3); i2 = HEAP32[i1 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i6 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i1) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i3, HEAP32[i6 >> 2] | 0); i1 = i1 + 1 | 0; } __ZN4wasm16PrintSExpression9decIndentEv(i3); } STACKTOP = i5; return; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner13visitSetLocalEPNS_8SetLocalE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; i4 = HEAP32[i3 + 8 >> 2] | 0; __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i2, HEAP32[i3 + 12 >> 2] | 0); do if (!(HEAP32[i1 + 16 >> 2] | 0)) if ((HEAP32[i1 >> 2] | 0) == (HEAP32[i3 + 4 >> 2] | 0)) { i4 = (HEAP32[HEAP32[i2 + 8 >> 2] >> 2] | 0) + (i4 << 4) | 0; HEAP32[i4 >> 2] = HEAP32[i1 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; break; } else ___assert_fail(25846, 24695, 703, 20566); while (0); return; } function __ZNSt3__212__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE6rehashEj(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0; if ((i1 | 0) != 1) { if (i1 + -1 & i1) i1 = __ZNSt3__212__next_primeEj(i1) | 0; } else i1 = 2; i3 = HEAP32[i4 + 4 >> 2] | 0; if (i1 >>> 0 <= i3 >>> 0) { if (i1 >>> 0 < i3 >>> 0) { i2 = ~~+Math_ceil(+(+((HEAP32[i4 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i4 + 16 >> 2])) >>> 0; if (i3 >>> 0 > 2 & (i3 + -1 & i3 | 0) == 0) i2 = 1 << 32 - (Math_clz32(i2 + -1 | 0) | 0); else i2 = __ZNSt3__212__next_primeEj(i2) | 0; i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1; if (i1 >>> 0 < i3 >>> 0) __ZNSt3__212__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE8__rehashEj(i4, i1); } } else __ZNSt3__212__hash_tableIPKcN6cashew7IString11CStringHashENS4_12CStringEqualENS_9allocatorIS2_EEE8__rehashEj(i4, i1); return; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEEC2EOSF_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; i6 = i2 + 4 | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i6 >> 2] = 0; HEAP32[i1 >> 2] = i4; HEAP32[i1 + 4 >> 2] = i5; i6 = i1 + 8 | 0; i7 = i2 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i6 >> 2] = i3; i8 = i2 + 12 | 0; i9 = HEAP32[i8 >> 2] | 0; HEAP32[i1 + 12 >> 2] = i9; HEAP32[i1 + 16 >> 2] = HEAP32[i2 + 16 >> 2]; if (i9 | 0) { i1 = HEAP32[i3 + 4 >> 2] | 0; i2 = i5 + -1 | 0; if (!(i2 & i5)) i1 = i2 & i1; else i1 = (i1 >>> 0) % (i5 >>> 0) | 0; HEAP32[i4 + (i1 << 2) >> 2] = i6; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = 0; } return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBlockERPc(i3, i7) { i3 = i3 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0, i6 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i8 + 12 | 0; i1 = i8 + 8 | 0; i4 = i8 + 4 | 0; i5 = i8; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i7); i6 = HEAP32[i7 >> 2] | 0; if ((HEAP8[i6 >> 0] | 0) != 123) ___assert_fail(28776, 28546, 859, 28788); HEAP32[i7 >> 2] = i6 + 1; HEAP32[i4 >> 2] = 0; HEAP32[i5 >> 2] = 0; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBlockERPcPKcNS_7IStringES8_(i3, i7, 28808, i1, i2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((HEAP8[i2 >> 0] | 0) == 125) { HEAP32[i7 >> 2] = i2 + 1; STACKTOP = i8; return i1 | 0; } else ___assert_fail(28811, 28546, 862, 28788); return 0; } function ___strchrnul(i1, i4) { i1 = i1 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0, i5 = 0; i3 = i4 & 255; L1 : do if (!i3) i1 = i1 + (_strlen(i1) | 0) | 0; else { if (i1 & 3) { i2 = i4 & 255; do { i5 = HEAP8[i1 >> 0] | 0; if (i5 << 24 >> 24 == 0 ? 1 : i5 << 24 >> 24 == i2 << 24 >> 24) break L1; i1 = i1 + 1 | 0; } while ((i1 & 3 | 0) != 0); } i3 = Math_imul(i3, 16843009) | 0; i2 = HEAP32[i1 >> 2] | 0; L10 : do if (!((i2 & -2139062144 ^ -2139062144) & i2 + -16843009)) do { i5 = i2 ^ i3; if ((i5 & -2139062144 ^ -2139062144) & i5 + -16843009 | 0) break L10; i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; } while (!((i2 & -2139062144 ^ -2139062144) & i2 + -16843009 | 0)); while (0); i2 = i4 & 255; while (1) { i5 = HEAP8[i1 >> 0] | 0; if (i5 << 24 >> 24 == 0 ? 1 : i5 << 24 >> 24 == i2 << 24 >> 24) break; else i1 = i1 + 1 | 0; } } while (0); return i1 | 0; } function __ZNK4wasm7Literal3addERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var d4 = 0.0; switch (HEAP32[i2 >> 2] | 0) { case 1: { i3 = (HEAP32[i3 + 8 >> 2] | 0) + (HEAP32[i2 + 8 >> 2] | 0) | 0; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 2: { i2 = i2 + 8 | 0; i3 = i3 + 8 | 0; i2 = _i64Add(HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0) | 0; HEAP32[i1 >> 2] = 2; i3 = i1 + 8 | 0; HEAP32[i3 >> 2] = i2; HEAP32[i3 + 4 >> 2] = tempRet0; break; } case 3: { d4 = +__ZNK4wasm7Literal6getf32Ev(i2) + +__ZNK4wasm7Literal6getf32Ev(i3); HEAP32[i1 >> 2] = 3; HEAPF32[i1 + 8 >> 2] = d4; break; } case 4: { d4 = +__ZNK4wasm7Literal6getf64Ev(i2) + +__ZNK4wasm7Literal6getf64Ev(i3); HEAP32[i1 >> 2] = 4; HEAPF64[i1 + 8 >> 3] = d4; break; } default: {} } return; } function __ZN4wasm16PrintSExpression13printCallBodyINS_4CallEEEvPT_(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i5 + 4 | 0; i2 = i5; HEAP32[i2 >> 2] = HEAP32[i1 + 24 >> 2]; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; __ZN4wasm16PrintSExpression9printNameENS_4NameE(i3, i4) | 0; i4 = i1 + 8 | 0; i1 = i1 + 16 | 0; if (!(HEAP32[i1 >> 2] | 0)) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i3 >> 2] | 0, 41) | 0; else { __ZN4wasm16PrintSExpression9incIndentEv(i3); i2 = HEAP32[i1 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i6 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i1) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i3, HEAP32[i6 >> 2] | 0); i1 = i1 + 1 | 0; } __ZN4wasm16PrintSExpression9decIndentEv(i3); } STACKTOP = i5; return; } function __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i7 = i1 + -24 | 0; __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_((HEAP32[i6 >> 2] | 0) + -24 | 0, i7); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -24; i1 = i7; } i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i4; i4 = i3 + 8 | 0; i7 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i7; i4 = i2 + 8 | 0; i7 = i3 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZN4wasm22SExpressionWasmBuilder6makeIfERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i5; i4 = __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i6 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i4 + 8 >> 2] = i6; HEAP32[i3 >> 2] = i1; i1 = __ZZN4wasm22SExpressionWasmBuilder6makeIfERNS_7ElementEENKUlPKcS2_E_clES4_S2_(i3, 18585, __ZN4wasm7ElementixEj(i2, 2) | 0) | 0; HEAP32[i4 + 12 >> 2] = i1; i1 = (__ZN4wasm7Element4listEv(i2) | 0) + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == 4) { i6 = __ZZN4wasm22SExpressionWasmBuilder6makeIfERNS_7ElementEENKUlPKcS2_E_clES4_S2_(i3, 18593, __ZN4wasm7ElementixEj(i2, 3) | 0) | 0; HEAP32[i4 + 16 >> 2] = i6; __ZN4wasm2If8finalizeEv(i4); } STACKTOP = i5; return i4 | 0; } function __ZNSt3__227__num_get_unsigned_integralImEET_PKcS3_Rji(i1, i4, i5, i2) { i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i2 = i2 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i9; do if ((i1 | 0) == (i4 | 0)) { HEAP32[i5 >> 2] = 4; i1 = 0; } else { if ((HEAP8[i1 >> 0] | 0) == 45) { HEAP32[i5 >> 2] = 4; i1 = 0; break; } i7 = ___errno_location() | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; i1 = _strtoull_l(i1, i6, i2, __ZNSt3__26__clocEv() | 0) | 0; i2 = tempRet0; i3 = HEAP32[i7 >> 2] | 0; if (!i3) HEAP32[i7 >> 2] = i8; do if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 4294967295 | (i3 | 0) == 34) { HEAP32[i5 >> 2] = 4; i1 = -1; break; } else break; else { HEAP32[i5 >> 2] = 4; i1 = 0; } while (0); } while (0); STACKTOP = i9; return i1 | 0; } function __ZNSt3__227__num_get_unsigned_integralIjEET_PKcS3_Rji(i1, i4, i5, i2) { i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i2 = i2 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i9; do if ((i1 | 0) == (i4 | 0)) { HEAP32[i5 >> 2] = 4; i1 = 0; } else { if ((HEAP8[i1 >> 0] | 0) == 45) { HEAP32[i5 >> 2] = 4; i1 = 0; break; } i7 = ___errno_location() | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; i1 = _strtoull_l(i1, i6, i2, __ZNSt3__26__clocEv() | 0) | 0; i2 = tempRet0; i3 = HEAP32[i7 >> 2] | 0; if (!i3) HEAP32[i7 >> 2] = i8; do if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i1 >>> 0 > 4294967295 | (i3 | 0) == 34) { HEAP32[i5 >> 2] = 4; i1 = -1; break; } else break; else { HEAP32[i5 >> 2] = 4; i1 = 0; } while (0); } while (0); STACKTOP = i9; return i1 | 0; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initIPKwEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeESA_SA_(i2, i1, i7) { i2 = i2 | 0; i1 = i1 | 0; i7 = i7 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = i1; i5 = i7 - i4 >> 2; if (i5 >>> 0 > 1073741807) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i2); do if (i5 >>> 0 >= 2) { i3 = i5 + 4 & -4; if (i3 >>> 0 > 1073741823) ___assert_fail(41459, 41496, 1734, 41599); else { i6 = __Znwj(i3 << 2) | 0; HEAP32[i2 >> 2] = i6; HEAP32[i2 + 8 >> 2] = i3 | -2147483648; HEAP32[i2 + 4 >> 2] = i5; break; } } else { HEAP8[i2 + 8 + 3 >> 0] = i5; i6 = i2; } while (0); i3 = (i7 - i4 | 0) >>> 2; i2 = i6; while (1) { if ((i1 | 0) == (i7 | 0)) break; HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; i1 = i1 + 4 | 0; i2 = i2 + 4 | 0; } HEAP32[i6 + (i3 << 2) >> 2] = 0; return; } function __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE6rehashEj(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0; if ((i1 | 0) != 1) { if (i1 + -1 & i1) i1 = __ZNSt3__212__next_primeEj(i1) | 0; } else i1 = 2; i3 = HEAP32[i4 + 4 >> 2] | 0; if (i1 >>> 0 <= i3 >>> 0) { if (i1 >>> 0 < i3 >>> 0) { i2 = ~~+Math_ceil(+(+((HEAP32[i4 + 12 >> 2] | 0) >>> 0) / +HEAPF32[i4 + 16 >> 2])) >>> 0; if (i3 >>> 0 > 2 & (i3 + -1 & i3 | 0) == 0) i2 = 1 << 32 - (Math_clz32(i2 + -1 | 0) | 0); else i2 = __ZNSt3__212__next_primeEj(i2) | 0; i1 = i1 >>> 0 < i2 >>> 0 ? i2 : i1; if (i1 >>> 0 < i3 >>> 0) __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE8__rehashEj(i4, i1); } } else __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE8__rehashEj(i4, i1); return; } function __ZNSt3__26vectorINS_8functionIFN4wasm15ThreadWorkStateEvEEENS_9allocatorIS5_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS5_RS7_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i7 = i1 + -24 | 0; __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEC2EOS4_((HEAP32[i6 >> 2] | 0) + -24 | 0, i7); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -24; i1 = i7; } i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i4; i4 = i3 + 8 | 0; i7 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i7; i4 = i2 + 8 | 0; i7 = i3 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9parseFragERNS3_4FragE(i1, i6) { i1 = i1 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i4 + 8 | 0; i2 = i4 + 4 | 0; i3 = i4; switch (HEAP32[i6 + 12 >> 2] | 0) { case 2: { HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; i5 = __ZN6cashew12ValueBuilder8makeNameENS_7IStringE(i1) | 0; break; } case 3: { HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; i5 = __ZN6cashew12ValueBuilder10makeStringENS_7IStringE(i1) | 0; break; } case 4: { i5 = __ZN6cashew12ValueBuilder10makeDoubleEd(+(~~+HEAPF64[i6 >> 3] >>> 0 >>> 0)) | 0; break; } case 5: { i5 = __ZN6cashew19DotZeroValueBuilder10makeDoubleEd(+HEAPF64[i6 >> 3]) | 0; break; } default: _abort(); } STACKTOP = i4; return i5 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE14__erase_uniqueIS3_EEjRKT_(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i5 + 4 | 0; i4 = i5; i1 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE4findIS3_EENS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEERKT_(i3, i1) | 0; if ((i1 | 0) == (i3 + 4 | 0)) i1 = 0; else { HEAP32[i4 >> 2] = i1; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE5eraseENS_21__tree_const_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEE(i3, i2) | 0; i1 = 1; } STACKTOP = i5; return i1 | 0; } function __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS8_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 3) << 3) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__29__num_getIwE19__stage2_float_prepERNS_8ios_baseEPwRwS5_(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i6; i2 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i7 >> 2] = i2; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47508) | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i8 >> 2] | 0) + 48 >> 2] & 7](i8, 38819, 38851, i3) | 0; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47516) | 0; i7 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] & 127](i3) | 0; HEAP32[i4 >> 2] = i7; i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 127](i3) | 0; HEAP32[i5 >> 2] = i4; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 255](i1, i3); __ZNSt3__214__shared_count16__release_sharedEv(i2) | 0; STACKTOP = i6; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__erase_uniqueIS3_EEjRKT_(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i5 + 4 | 0; i4 = i5; i1 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i3, i1) | 0; if ((i1 | 0) == (i3 + 4 | 0)) i1 = 0; else { HEAP32[i4 >> 2] = i1; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE5eraseENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEE(i3, i2) | 0; i1 = 1; } STACKTOP = i5; return i1 | 0; } function __ZNSt3__29__num_getIcE19__stage2_float_prepERNS_8ios_baseEPcRcS5_(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i6; i2 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i7 >> 2] = i2; i8 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47476) | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i8 >> 2] | 0) + 32 >> 2] & 7](i8, 38819, 38851, i3) | 0; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i7, 47492) | 0; i7 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 12 >> 2] & 127](i3) | 0; HEAP8[i4 >> 0] = i7; i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 127](i3) | 0; HEAP8[i5 >> 0] = i4; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 255](i1, i3); __ZNSt3__214__shared_count16__release_sharedEv(i2) | 0; STACKTOP = i6; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i6, i4, i5) { i6 = i6 | 0; i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i7 = 0; i7 = i6 + 11 | 0; i1 = HEAP8[i7 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; if (i2) { i3 = HEAP32[i6 + 4 >> 2] | 0; i1 = (HEAP32[i6 + 8 >> 2] & 2147483647) + -1 | 0; } else { i3 = i1 & 255; i1 = 10; } if ((i1 - i3 | 0) >>> 0 >= i5 >>> 0) { if (i5 | 0) { if (i2) i2 = HEAP32[i6 >> 2] | 0; else i2 = i6; _memcpy(i2 + i3 | 0, i4 | 0, i5 | 0) | 0; i1 = i3 + i5 | 0; if ((HEAP8[i7 >> 0] | 0) < 0) HEAP32[i6 + 4 >> 2] = i1; else HEAP8[i7 >> 0] = i1; HEAP8[i2 + i1 >> 0] = 0; } } else __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i6, i1, i5 - i1 + i3 | 0, i3, i3, 0, i5, i4); return i6 | 0; } function __ZN4wasm15Asm2WasmBuilder15getFunctionTypeEN6cashew3RefER11ArenaVectorIPNS_10ExpressionEE(i4, i2, i5) { i4 = i4 | 0; i2 = i2 | 0; i5 = i5 | 0; var i1 = 0, i3 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i1 = i7 + 16 | 0; i3 = i7 + 12 | 0; i6 = i7; if (__ZN6cashew3RefntEv(i2) | 0) i1 = 0; else { HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; i1 = __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i4, i1, 0) | 0; } __ZN4wasm6getSigI11ArenaVectorIPNS_10ExpressionEEEENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS_8WasmTypeERKT_(i6, i1, i5); i5 = __ZN4wasm18ensureFunctionTypeENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEPNS_6ModuleE(i6, HEAP32[i4 >> 2] | 0) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i6); STACKTOP = i7; return i5 | 0; } function __ZN6cashew12ValueBuilder12makeContinueENS_7IStringE(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i6 + 8 | 0; i7 = i6 + 4 | 0; i3 = i6; i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45124) | 0; HEAP32[i7 >> 2] = i8; HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i1) | 0; i7 = HEAP32[i2 >> 2] | 0; if ((i7 | 0) != 0 ? (HEAP8[i7 >> 0] | 0) != 0 : 0) { i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i2) | 0; HEAP32[i3 >> 2] = i8; } else i5 = 4; if ((i5 | 0) == 4) { i8 = __ZN6cashew12ValueBuilder8makeNullEv() | 0; HEAP32[i3 >> 2] = i8; }; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; i8 = __ZN6cashew5Value9push_backENS_3RefE(i4, i1) | 0; STACKTOP = i6; return i8 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_117parse_call_offsetEPKcS2_(i1, i4) { i1 = i1 | 0; i4 = i4 | 0; var i2 = 0, i3 = 0, i5 = 0; L1 : do if ((i1 | 0) != (i4 | 0)) { switch (HEAP8[i1 >> 0] | 0) { case 104: { i3 = i1 + 1 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i3, i4) | 0; if ((i2 | 0) == (i3 | 0) | (i2 | 0) == (i4 | 0)) break L1; return ((HEAP8[i2 >> 0] | 0) == 95 ? i2 + 1 | 0 : i1) | 0; } case 118: break; default: break L1; } i5 = i1 + 1 | 0; i2 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i5, i4) | 0; if ((!((i2 | 0) == (i5 | 0) | (i2 | 0) == (i4 | 0)) ? (HEAP8[i2 >> 0] | 0) == 95 : 0) ? (i5 = i2 + 1 | 0, i3 = __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i5, i4) | 0, !((i3 | 0) == (i5 | 0) | (i3 | 0) == (i4 | 0))) : 0) i1 = (HEAP8[i3 >> 0] | 0) == 95 ? i3 + 1 | 0 : i1; } while (0); return i1 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i5, i6, i7) { i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0; i3 = i5 + 11 | 0; i1 = HEAP8[i3 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; if (i2) i4 = (HEAP32[i5 + 8 >> 2] & 2147483647) + -1 | 0; else i4 = 10; do if (i4 >>> 0 >= i7 >>> 0) { if (i2) i1 = HEAP32[i5 >> 2] | 0; else i1 = i5; if (i7 | 0) _memmove(i1 | 0, i6 | 0, i7 | 0) | 0; HEAP8[i1 + i7 >> 0] = 0; if ((HEAP8[i3 >> 0] | 0) < 0) { HEAP32[i5 + 4 >> 2] = i7; break; } else { HEAP8[i3 >> 0] = i7; break; } } else { if (i2) i1 = HEAP32[i5 + 4 >> 2] | 0; else i1 = i1 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE21__grow_by_and_replaceEjjjjjjPKc(i5, i4, i7 - i4 | 0, i1, 0, i1, i7, i6); } while (0); return; } function __ZN6cashew5Value4freeEv(i5) { i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i6 = 0; switch (HEAP32[i5 >> 2] | 0) { case 2: { i1 = i5 + 8 | 0; i3 = HEAP32[i1 >> 2] | 0; i2 = HEAP32[i3 >> 2] | 0; i3 = i3 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i6 = i4 + -4 | 0; HEAP32[i3 >> 2] = i6; i4 = i6; } __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE13shrink_to_fitEv(HEAP32[i1 >> 2] | 0); break; } case 5: { i1 = HEAP32[i5 + 8 >> 2] | 0; if (i1 | 0) { __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringENS2_3RefEEENS_22__unordered_map_hasherIS3_S5_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S5_NS_8equal_toIS3_EELb1EEENS_9allocatorIS5_EEED2Ev(i1); __ZdlPv(i1); } break; } default: {} } HEAP32[i5 >> 2] = 3; HEAPF64[i5 + 8 >> 3] = 0.0; return; } function __ZN6cashew12ValueBuilder9makeBreakENS_7IStringE(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i6 + 8 | 0; i7 = i6 + 4 | 0; i3 = i6; i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45120) | 0; HEAP32[i7 >> 2] = i8; HEAP32[i1 >> 2] = HEAP32[i7 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i1) | 0; i7 = HEAP32[i2 >> 2] | 0; if ((i7 | 0) != 0 ? (HEAP8[i7 >> 0] | 0) != 0 : 0) { i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i2) | 0; HEAP32[i3 >> 2] = i8; } else i5 = 4; if ((i5 | 0) == 4) { i8 = __ZN6cashew12ValueBuilder8makeNullEv() | 0; HEAP32[i3 >> 2] = i8; }; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; i8 = __ZN6cashew5Value9push_backENS_3RefE(i4, i1) | 0; STACKTOP = i6; return i8 | 0; } function __ZNSt3__227__num_get_unsigned_integralIyEET_PKcS3_Rji(i1, i4, i5, i2) { i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i2 = i2 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i9; do if ((i1 | 0) == (i4 | 0)) { HEAP32[i5 >> 2] = 4; i2 = 0; i1 = 0; } else { if ((HEAP8[i1 >> 0] | 0) == 45) { HEAP32[i5 >> 2] = 4; i2 = 0; i1 = 0; break; } i7 = ___errno_location() | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; i1 = _strtoull_l(i1, i6, i2, __ZNSt3__26__clocEv() | 0) | 0; i2 = tempRet0; i3 = HEAP32[i7 >> 2] | 0; if (!i3) HEAP32[i7 >> 2] = i8; if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) { if ((i3 | 0) == 34) { HEAP32[i5 >> 2] = 4; i1 = -1; i2 = -1; } } else { HEAP32[i5 >> 2] = 4; i1 = 0; i2 = 0; } } while (0); tempRet0 = i2; STACKTOP = i9; return i1 | 0; } function __ZNSt3__26vectorIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS7_RS9_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 3) << 3) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS7_RS9_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 3) << 3) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS7_RS9_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 3) << 3) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZN4wasm16PrintSExpression11visitGlobalEPNS_6GlobalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i5 = i3; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i1 >> 2] | 0, 33243, 0) | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasm16PrintSExpression9printNameENS_4NameE(i1, i4) | 0, 32) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i4, __ZN4wasm13printWasmTypeENS_8WasmTypeE(HEAP32[i2 + 4 >> 2] | 0) | 0) | 0; __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 8 >> 2] | 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i1 >> 2] | 0, 41) | 0; STACKTOP = i3; return; } function __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = i2 + 4 | 0; i1 = HEAP32[i6 >> 2] | 0; i5 = HEAP32[i2 >> 2] | 0; i4 = (i1 - i5 | 0) / 12 | 0; L1 : do if (i4 >>> 0 >= i3 >>> 0) { if (i4 >>> 0 > i3 >>> 0) { i2 = i5 + (i3 * 12 | 0) | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i5 = i1 + -12 | 0; HEAP32[i6 >> 2] = i5; __ZNSt3__213__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i5); i1 = HEAP32[i6 >> 2] | 0; } } } else __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE8__appendEj(i2, i3 - i4 | 0); while (0); return; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKwj(i6, i7, i8) { i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0; i1 = i6 + 8 | 0; i5 = i1 + 3 | 0; i2 = HEAP8[i5 >> 0] | 0; i3 = i2 << 24 >> 24 < 0; if (i3) i4 = (HEAP32[i1 >> 2] & 2147483647) + -1 | 0; else i4 = 1; do if (i4 >>> 0 >= i8 >>> 0) { if (i3) i1 = HEAP32[i6 >> 2] | 0; else i1 = i6; __ZNSt3__211char_traitsIwE4moveEPwPKwj(i1, i7, i8) | 0; HEAP32[i1 + (i8 << 2) >> 2] = 0; if ((HEAP8[i5 >> 0] | 0) < 0) { HEAP32[i6 + 4 >> 2] = i8; break; } else { HEAP8[i5 >> 0] = i8; break; } } else { if (i3) i1 = HEAP32[i6 + 4 >> 2] | 0; else i1 = i2 & 255; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE21__grow_by_and_replaceEjjjjjjPKw(i6, i4, i8 - i4 | 0, i1, 0, i1, i8, i7); } while (0); return i6 | 0; } function __ZN4wasm6ModuleC2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = i1 + 76 | 0; i3 = i1; i4 = i3 + 76 | 0; do { HEAP32[i3 >> 2] = 0; i3 = i3 + 4 | 0; } while ((i3 | 0) < (i4 | 0)); HEAP32[i2 >> 2] = 65535; i4 = i1 + 80 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; HEAP32[i4 + 12 >> 2] = 0; HEAP32[i4 + 16 >> 2] = 0; __ZN10MixedArenaC2Ev(i1 + 100 | 0); HEAP32[i1 + 132 >> 2] = 0; HEAP32[i1 + 136 >> 2] = 0; HEAP32[i1 + 128 >> 2] = i1 + 132; HEAP32[i1 + 144 >> 2] = 0; HEAP32[i1 + 148 >> 2] = 0; HEAP32[i1 + 140 >> 2] = i1 + 144; HEAP32[i1 + 156 >> 2] = 0; HEAP32[i1 + 160 >> 2] = 0; HEAP32[i1 + 152 >> 2] = i1 + 156; HEAP32[i1 + 168 >> 2] = 0; HEAP32[i1 + 172 >> 2] = 0; HEAP32[i1 + 164 >> 2] = i1 + 168; HEAP32[i1 + 180 >> 2] = 0; HEAP32[i1 + 184 >> 2] = 0; HEAP32[i1 + 176 >> 2] = i1 + 180; return; } function __ZNKSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE4findIS2_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = HEAP32[i1 >> 2] | 0; i1 = i6 * 33 ^ 5381; i5 = HEAP32[i2 + 4 >> 2] | 0; L1 : do if (i5) { i7 = i5 + -1 | 0; i4 = (i7 & i5 | 0) == 0; if (i4) i3 = i7 & i1; else i3 = (i1 >>> 0) % (i5 >>> 0) | 0; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + (i3 << 2) >> 2] | 0; if (i1) do { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break L1; } i2 = HEAP32[i1 + 4 >> 2] | 0; if (i4) i2 = i2 & i7; else i2 = (i2 >>> 0) % (i5 >>> 0) | 0; if ((i2 | 0) != (i3 | 0)) { i1 = 0; break L1; } } while ((HEAP32[i1 + 8 >> 2] | 0) != (i6 | 0)); else i1 = 0; } else i1 = 0; while (0); return i1 | 0; } function __ZNK10__cxxabiv121__vmi_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1, i2, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i5 = i5 | 0; i6 = i6 | 0; var i3 = 0, i4 = 0; L1 : do if ((i1 | 0) != (HEAP32[i2 + 8 >> 2] | 0)) { i4 = HEAP32[i1 + 12 >> 2] | 0; i3 = i1 + 16 + (i4 << 3) | 0; __ZNK10__cxxabiv122__base_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1 + 16 | 0, i2, i5, i6); if ((i4 | 0) > 1) { i4 = i2 + 54 | 0; i1 = i1 + 24 | 0; do { __ZNK10__cxxabiv122__base_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1, i2, i5, i6); if (HEAP8[i4 >> 0] | 0) break L1; i1 = i1 + 8 | 0; } while (i1 >>> 0 < i3 >>> 0); } } else __ZNK10__cxxabiv117__class_type_info24process_found_base_classEPNS_19__dynamic_cast_infoEPvi(0, i2, i5, i6); while (0); return; } function __ZN4wasm2If8finalizeEv(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0; i1 = HEAP32[i4 + 12 >> 2] | 0; if (!i1) ___assert_fail(18601, 14782, 982, 17861); i2 = HEAP32[i4 + 16 >> 2] | 0; L4 : do if (i2 | 0) { i3 = HEAP32[i1 + 4 >> 2] | 0; i1 = HEAP32[i2 + 4 >> 2] | 0; if ((i3 | 0) == (i1 | 0)) { HEAP32[i4 + 4 >> 2] = i3; break; } L9 : do switch (i3 | 0) { case 0: case 5: { switch (i1 | 0) { case 0: case 5: break; default: i5 = 10; } break; } default: { switch (i1 | 0) { case 0: break L9; case 5: break; default: { i5 = 10; break L9; } } HEAP32[i4 + 4 >> 2] = i3; break L4; } } while (0); if ((i5 | 0) == 10 ? (i3 | 0) == 5 : 0) { HEAP32[i4 + 4 >> 2] = i1; break; } HEAP32[i4 + 4 >> 2] = 0; } while (0); return; } function __ZN4wasm10TypeSeeker9visitLoopEPNS_4LoopE(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0; L1 : do if ((i1 | 0) == (HEAP32[i4 + 24 >> 2] | 0)) { i1 = (HEAP32[i1 + 16 >> 2] | 0) + 4 | 0; i2 = i4 + 36 | 0; i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (HEAP32[i4 + 40 >> 2] | 0)) { __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i4 + 32 | 0, i1); break; } else { HEAP32[i3 >> 2] = HEAP32[i1 >> 2]; HEAP32[i2 >> 2] = i3 + 4; break; } } else { i3 = HEAP32[i4 + 28 >> 2] | 0; if ((HEAP32[i1 + 12 >> 2] | 0) != (i3 | 0) ? (HEAP32[i1 + 8 >> 2] | 0) != (i3 | 0) : 0) break; i3 = HEAP32[i4 + 32 >> 2] | 0; i1 = i4 + 36 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break L1; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } } while (0); return; } function __ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i1, i2, i5, i6, i7) { i1 = i1 | 0; i2 = i2 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; var i3 = 0, i4 = 0; do if ((i1 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) { if ((HEAP32[i2 + 4 >> 2] | 0) == (i5 | 0) ? (i3 = i2 + 28 | 0, (HEAP32[i3 >> 2] | 0) != 1) : 0) HEAP32[i3 >> 2] = i6; } else if ((i1 | 0) == (HEAP32[i2 >> 2] | 0)) { if ((HEAP32[i2 + 16 >> 2] | 0) != (i5 | 0) ? (i4 = i2 + 20 | 0, (HEAP32[i4 >> 2] | 0) != (i5 | 0)) : 0) { HEAP32[i2 + 32 >> 2] = i6; HEAP32[i4 >> 2] = i5; i7 = i2 + 40 | 0; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + 1; if ((HEAP32[i2 + 36 >> 2] | 0) == 1 ? (HEAP32[i2 + 24 >> 2] | 0) == 2 : 0) HEAP8[i2 + 54 >> 0] = 1; HEAP32[i2 + 44 >> 2] = 4; break; } if ((i6 | 0) == 1) HEAP32[i2 + 32 >> 2] = 1; } while (0); return; } function __ZN4wasm22SExpressionWasmBuilder15getFunctionNameERNS_7ElementE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i5; i2 = (HEAP8[i1 + 24 >> 0] | 0) == 0; i1 = __ZN4wasm7Element3strEv(i1) | 0; do if (i2) { i2 = _atoi(i1) | 0; i1 = HEAP32[i3 + 8 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i3 + 12 >> 2] | 0) - i1 >> 2 >>> 0) { i1 = HEAP32[i1 + (i2 << 2) >> 2] | 0; break; } else { i5 = ___cxa_allocate_exception(20) | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i4, 17412, 16); __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i5, i4); ___cxa_throw(i5 | 0, 8, 154); } } while (0); STACKTOP = i5; return i1 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i5, i6, i1, i4, i8, i9, i10) { i5 = i5 | 0; i6 = i6 | 0; i1 = i1 | 0; i4 = i4 | 0; i8 = i8 | 0; i9 = i9 | 0; i10 = i10 | 0; var i2 = 0, i3 = 0, i7 = 0; if ((-17 - i6 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i5); if ((HEAP8[i5 + 11 >> 0] | 0) < 0) i7 = HEAP32[i5 >> 2] | 0; else i7 = i5; if (i6 >>> 0 < 2147483623) { i2 = i1 + i6 | 0; i3 = i6 << 1; i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2; i2 = i2 >>> 0 < 11 ? 11 : i2 + 16 & -16; } else i2 = -17; i3 = __Znwj(i2) | 0; if (i8 | 0) _memcpy(i3 | 0, i7 | 0, i8 | 0) | 0; i1 = i4 - i9 - i8 | 0; if (i1 | 0) _memcpy(i3 + i8 + i10 | 0, i7 + i8 + i9 | 0, i1 | 0) | 0; if ((i6 | 0) != 10) __ZdlPv(i7); HEAP32[i5 >> 2] = i3; HEAP32[i5 + 8 >> 2] = i2 | -2147483648; return; } function _load_s_expr2wasm(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; __ZL12prepare2wasmv(); if (HEAP8[49408] | 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 13025) | 0; i2 = __Znwj(44) | 0; __ZN4wasm17SExpressionParserC2EPc(i2, i1); HEAP32[11247] = i2; i1 = HEAP32[i2 + 40 >> 2] | 0; if (HEAP8[49408] | 0 ? (__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(46604, i1) | 0, 10) | 0, HEAP8[49408] | 0) : 0) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 12761) | 0; i3 = __Znwj(188) | 0; __ZN4wasm6ModuleC2Ev(i3); HEAP32[11250] = i3; i2 = __Znwj(84) | 0; __ZN4wasm22SExpressionWasmBuilderC2ERNS_6ModuleERNS_7ElementE(i2, i3, __ZN4wasm7ElementixEj(i1, 0) | 0); HEAP32[11248] = i2; __Z14finalizeModulev(); return; } function __ZN4wasm17WasmBinaryBuilder10readHeaderEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; if (HEAP8[i1 + 12 >> 0] | 0) { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 18905) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; } __ZN4wasm17WasmBinaryBuilder11verifyInt32Ei(i1, 1836278016); __ZN4wasm17WasmBinaryBuilder11verifyInt32Ei(i1, 11); STACKTOP = i3; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9push_backEc(i1, i6) { i1 = i1 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i5 = i1 + 11 | 0; i2 = HEAP8[i5 >> 0] | 0; i3 = i2 << 24 >> 24 < 0; if (i3) { i4 = HEAP32[i1 + 4 >> 2] | 0; i2 = (HEAP32[i1 + 8 >> 2] & 2147483647) + -1 | 0; } else { i4 = i2 & 255; i2 = 10; } if ((i4 | 0) == (i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i1, i2, 1, i2, i2, 0); if ((HEAP8[i5 >> 0] | 0) > -1) i2 = 7; else i2 = 8; } else if (i3) i2 = 8; else i2 = 7; if ((i2 | 0) == 7) HEAP8[i5 >> 0] = i4 + 1; else if ((i2 | 0) == 8) { i5 = HEAP32[i1 >> 2] | 0; HEAP32[i1 + 4 >> 2] = i4 + 1; i1 = i5; } i5 = i1 + i4 | 0; HEAP8[i5 >> 0] = i6; HEAP8[i5 + 1 >> 0] = 0; return; } function __ZN4wasm6getSigI11ArenaVectorIPNS_10ExpressionEEEENSt3__212basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS_8WasmTypeERKT_(i3, i2, i4) { i3 = i3 | 0; i2 = i2 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i3, __ZN4wasm6getSigENS_8WasmTypeE(i2) | 0); i2 = HEAP32[i4 + 8 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i5 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i4, i1) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i3, __ZN4wasm6getSigENS_8WasmTypeE(HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2] | 0) | 0); i1 = i1 + 1 | 0; } return; } function __ZN4wasm13WasmValidator11visitMemoryEPNS_6MemoryE(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0; i5 = i4 + 4 | 0; __ZN4wasm13WasmValidator13shouldBeFalseIPKcEEbbT_S3_(i3, (HEAP32[i4 >> 2] | 0) >>> 0 > (HEAP32[i5 >> 2] | 0) >>> 0, 34986, 16335) | 0; __ZN4wasm13WasmValidator12shouldBeTrueIPKcEEbbT_S3_(i3, (HEAP32[i5 >> 2] | 0) >>> 0 < 65536, 34986, 16357) | 0; i5 = HEAP32[i4 + 12 >> 2] | 0; i1 = 0; i2 = HEAP32[i4 + 8 >> 2] | 0; while (1) { if ((i2 | 0) == (i5 | 0)) break; __ZN4wasm13WasmValidator13shouldBeFalseIPKcEEbbT_S3_(i3, (HEAP32[i2 >> 2] | 0) >>> 0 < i1 >>> 0, 34986, 16383) | 0; i1 = (HEAP32[i2 + 8 >> 2] | 0) + (HEAP32[i2 >> 2] | 0) - (HEAP32[i2 + 4 >> 2] | 0) | 0; i2 = i2 + 16 | 0; } __ZN4wasm13WasmValidator13shouldBeFalseIPKcEEbbT_S3_(i3, i1 >>> 0 > HEAP32[i4 >> 2] << 16 >>> 0, 34986, 16414) | 0; return; } function __ZNSt3__26vectorINS_4pairIPN4wasm7ElementEPNS2_5BlockEEENS_9allocatorIS7_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS7_RS9_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 3) << 3) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 12 | 0; i8 = i3 + 8 | 0; i7 = i3 + 4 | 0; i5 = i3; i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45160) | 0; HEAP32[i8 >> 2] = i9; HEAP32[i4 >> 2] = HEAP32[i8 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; i1 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i1) | 0; HEAP32[i7 >> 2] = i1; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i1, i4) | 0; STACKTOP = i3; return i2 | 0; } function __ZNSt3__225__num_get_signed_integralIxEET_PKcS3_Rji(i1, i4, i5, i2) { i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i2 = i2 | 0; var i3 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i9; if ((i1 | 0) == (i4 | 0)) { HEAP32[i5 >> 2] = 4; i2 = 0; i1 = 0; } else { i7 = ___errno_location() | 0; i8 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = 0; i1 = _strtoll_l(i1, i6, i2, __ZNSt3__26__clocEv() | 0) | 0; i2 = tempRet0; i3 = HEAP32[i7 >> 2] | 0; if (!i3) HEAP32[i7 >> 2] = i8; if ((HEAP32[i6 >> 2] | 0) == (i4 | 0)) { if ((i3 | 0) == 34) { HEAP32[i5 >> 2] = 4; i2 = (i2 | 0) > 0 | (i2 | 0) == 0 & i1 >>> 0 > 0; i1 = i2 ? -1 : 0; i2 = i2 ? 2147483647 : -2147483648; } } else { HEAP32[i5 >> 2] = 4; i1 = 0; i2 = 0; } } tempRet0 = i2; STACKTOP = i9; return i1 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE9__grow_byEjjjjjj(i5, i6, i1, i4, i8, i9) { i5 = i5 | 0; i6 = i6 | 0; i1 = i1 | 0; i4 = i4 | 0; i8 = i8 | 0; i9 = i9 | 0; var i2 = 0, i3 = 0, i7 = 0; if ((-17 - i6 | 0) >>> 0 < i1 >>> 0) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i5); if ((HEAP8[i5 + 11 >> 0] | 0) < 0) i7 = HEAP32[i5 >> 2] | 0; else i7 = i5; if (i6 >>> 0 < 2147483623) { i2 = i1 + i6 | 0; i3 = i6 << 1; i2 = i2 >>> 0 < i3 >>> 0 ? i3 : i2; i2 = i2 >>> 0 < 11 ? 11 : i2 + 16 & -16; } else i2 = -17; i3 = _malloc(i2) | 0; if (i8 | 0) _memcpy(i3 | 0, i7 | 0, i8 | 0) | 0; i1 = i4 - i8 | 0; if (i1 | 0) _memcpy(i3 + i8 + i9 | 0, i7 + i8 | 0, i1 | 0) | 0; if ((i6 | 0) != 10) _free(i7); HEAP32[i5 >> 2] = i3; HEAP32[i5 + 8 >> 2] = i2 | -2147483648; return; } function __ZNSt3__26vectorIN6cashew13OperatorClassENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i7 = i1 + -40 | 0; __ZN6cashew13OperatorClassC2EOS0_((HEAP32[i6 >> 2] | 0) + -40 | 0, i7); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -40; i1 = i7; } i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i4; i4 = i3 + 8 | 0; i7 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i7; i4 = i2 + 8 | 0; i7 = i3 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZN6cashew12ValueBuilder9makeLabelENS_7IStringENS_3RefE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 12 | 0; i8 = i3 + 8 | 0; i7 = i3 + 4 | 0; i5 = i3; i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45116) | 0; HEAP32[i8 >> 2] = i9; HEAP32[i4 >> 2] = HEAP32[i8 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; i1 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i1) | 0; HEAP32[i7 >> 2] = i1; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i1, i4) | 0; STACKTOP = i3; return i2 | 0; } function __ZN4wasm7ElementixEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i4; i5 = (__ZN4wasm7Element4listEv(i1) | 0) + 8 | 0; if ((HEAP32[i5 >> 2] | 0) >>> 0 > i2 >>> 0) { i5 = __ZNK11ArenaVectorIPN4wasm7ElementEEixEj(__ZN4wasm7Element4listEv(i1) | 0, i2) | 0; STACKTOP = i4; return HEAP32[i5 >> 2] | 0; } else { i5 = ___cxa_allocate_exception(20) | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 17254, 30); i2 = HEAP32[i1 + 28 >> 2] | 0; i4 = HEAP32[i1 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i5, i3); HEAP32[i5 + 12 >> 2] = i2; HEAP32[i5 + 16 >> 2] = i4; ___cxa_throw(i5 | 0, 8, 154); } return 0; } function __ZNK4wasm7Literal2neERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; switch (HEAP32[i2 >> 2] | 0) { case 1: { i3 = (HEAP32[i2 + 8 >> 2] | 0) != (HEAP32[i3 + 8 >> 2] | 0) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 2: { i2 = i2 + 8 | 0; i3 = i3 + 8 | 0; i3 = ((HEAP32[i2 >> 2] | 0) != (HEAP32[i3 >> 2] | 0) ? 1 : (HEAP32[i2 + 4 >> 2] | 0) != (HEAP32[i3 + 4 >> 2] | 0)) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 3: { i3 = +__ZNK4wasm7Literal6getf32Ev(i2) != +__ZNK4wasm7Literal6getf32Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 4: { i3 = +__ZNK4wasm7Literal6getf64Ev(i2) != +__ZNK4wasm7Literal6getf64Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } default: {} } return; } function __ZNK4wasm7Literal2eqERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; switch (HEAP32[i2 >> 2] | 0) { case 1: { i3 = (HEAP32[i2 + 8 >> 2] | 0) == (HEAP32[i3 + 8 >> 2] | 0) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 2: { i2 = i2 + 8 | 0; i3 = i3 + 8 | 0; i3 = ((HEAP32[i2 >> 2] | 0) == (HEAP32[i3 >> 2] | 0) ? (HEAP32[i2 + 4 >> 2] | 0) == (HEAP32[i3 + 4 >> 2] | 0) : 0) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 3: { i3 = +__ZNK4wasm7Literal6getf32Ev(i2) == +__ZNK4wasm7Literal6getf32Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } case 4: { i3 = +__ZNK4wasm7Literal6getf64Ev(i2) == +__ZNK4wasm7Literal6getf64Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; break; } default: {} } return; } function __ZN6cashew12ValueBuilder7makeDotENS_3RefENS_7IStringE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 12 | 0; i8 = i3 + 8 | 0; i7 = i3 + 4 | 0; i5 = i3; i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45352) | 0; HEAP32[i8 >> 2] = i9; HEAP32[i4 >> 2] = HEAP32[i8 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i7 >> 2] = HEAP32[i1 >> 2]; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; i2 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i2) | 0; HEAP32[i5 >> 2] = i2; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i1, i4) | 0; STACKTOP = i3; return i2 | 0; } function __ZNSt3__211__stdoutbufIwE4syncEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i10 + 8 | 0; i4 = i10; i5 = i1 + 36 | 0; i6 = i1 + 40 | 0; i7 = i3 + 8 | 0; i8 = i3; i2 = i1 + 32 | 0; L1 : while (1) { i1 = HEAP32[i5 >> 2] | 0; i1 = FUNCTION_TABLE_iiiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 31](i1, HEAP32[i6 >> 2] | 0, i3, i7, i4) | 0; i11 = (HEAP32[i4 >> 2] | 0) - i8 | 0; if ((_fwrite(i3, 1, i11, HEAP32[i2 >> 2] | 0) | 0) != (i11 | 0)) { i1 = -1; break; } switch (i1 | 0) { case 1: break; case 2: { i1 = -1; break L1; } default: { i9 = 4; break L1; } } } if ((i9 | 0) == 4) i1 = ((_fflush(HEAP32[i2 >> 2] | 0) | 0) != 0) << 31 >> 31; STACKTOP = i10; return i1 | 0; } function __ZNSt3__211__stdoutbufIcE4syncEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i10 + 8 | 0; i4 = i10; i5 = i1 + 36 | 0; i6 = i1 + 40 | 0; i7 = i3 + 8 | 0; i8 = i3; i2 = i1 + 32 | 0; L1 : while (1) { i1 = HEAP32[i5 >> 2] | 0; i1 = FUNCTION_TABLE_iiiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 31](i1, HEAP32[i6 >> 2] | 0, i3, i7, i4) | 0; i11 = (HEAP32[i4 >> 2] | 0) - i8 | 0; if ((_fwrite(i3, 1, i11, HEAP32[i2 >> 2] | 0) | 0) != (i11 | 0)) { i1 = -1; break; } switch (i1 | 0) { case 1: break; case 2: { i1 = -1; break L1; } default: { i9 = 4; break L1; } } } if ((i9 | 0) == 4) i1 = ((_fflush(HEAP32[i2 >> 2] | 0) | 0) != 0) << 31 >> 31; STACKTOP = i10; return i1 | 0; } function __ZNSt3__26vectorIN4wasm6Memory7SegmentENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i4 = HEAP32[i2 >> 2] | 0; i5 = i2 + 4 | 0; i6 = i3 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i7 = i1 + -16 | 0; __ZN4wasm6Memory7SegmentC2EOS1_((HEAP32[i6 >> 2] | 0) + -16 | 0, i7); HEAP32[i6 >> 2] = (HEAP32[i6 >> 2] | 0) + -16; i1 = i7; } i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; HEAP32[i6 >> 2] = i4; i4 = i3 + 8 | 0; i7 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i7; i4 = i2 + 8 | 0; i7 = i3 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; return; } function __ZN4wasm13WasmValidator13visitSetLocalEPNS_8SetLocalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = i2 + 8 | 0; i6 = HEAP32[i4 >> 2] | 0; i5 = i1 + 16 | 0; __ZN4wasm13WasmValidator12shouldBeTrueIPNS_8SetLocalEEEbbT_PKc(i1, i6 >>> 0 < (__ZN4wasm8Function12getNumLocalsEv(HEAP32[i5 >> 2] | 0) | 0) >>> 0, i2, 15469) | 0; i6 = i2 + 12 | 0; i3 = HEAP32[(HEAP32[i6 >> 2] | 0) + 4 >> 2] | 0; if ((i3 | 0) != 5) { __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_8SetLocalENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i3, HEAP32[i2 + 4 >> 2] | 0, i2, 15506) | 0; i5 = __ZN4wasm8Function12getLocalTypeEj(HEAP32[i5 >> 2] | 0, HEAP32[i4 >> 2] | 0) | 0; __ZN4wasm13WasmValidator13shouldBeEqualIPNS_8SetLocalENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i5, HEAP32[(HEAP32[i6 >> 2] | 0) + 4 >> 2] | 0, i2, 15537) | 0; } return; } function __ZNSt3__26vectorIPNS0_IN6cashew3RefENS_9allocatorIS2_EEEENS3_IS6_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS6_RS7_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0; if (!(HEAP8[i1 >> 0] | 0)) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, HEAP32[i1 + 20 >> 2] | 0) | 0; else { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i3, 40) | 0; i4 = i1 + 4 | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i5 = __ZNK11ArenaVectorIPN4wasm7ElementEEixEj(i4, i1) | 0; i5 = HEAP32[i5 >> 2] | 0; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEERNS_7ElementE(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i3, 32) | 0, i5) | 0; i1 = i1 + 1 | 0; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i3, 17251) | 0; } return i3 | 0; } function __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementEENKUlvE_clEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i2 + 8 | 0; i8 = i2 + 4 | 0; i9 = i2; i6 = HEAP32[i1 >> 2] | 0; i3 = i6 + 44 | 0; HEAP32[i8 >> 2] = (HEAP32[i6 >> 2] | 0) + 100; HEAP32[i9 >> 2] = HEAP32[HEAP32[i1 + 4 >> 2] >> 2]; i6 = HEAP32[i1 + 8 >> 2] | 0; i5 = HEAP32[HEAP32[i1 + 12 >> 2] >> 2] | 0; i4 = HEAP32[i1 + 16 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i9 >> 2]; i4 = __ZN4wasm7Builder12makeFunctionENS_4NameEONSt3__26vectorINS_8NameTypeENS2_9allocatorIS4_EEEENS_8WasmTypeES8_PNS_10ExpressionE(i8, i7, i6, i5, i4, 0) | 0; i1 = HEAP32[i3 >> 2] | 0; HEAP32[i3 >> 2] = i4; if (i1 | 0) { __ZN4wasm8FunctionD2Ev(i1); __ZdlPv(i1); } STACKTOP = i2; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEjc(i6, i3, i5) { i6 = i6 | 0; i3 = i3 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i4 = 0, i7 = 0; if (i3 | 0) { i7 = i6 + 11 | 0; i1 = HEAP8[i7 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i4 = HEAP32[i6 + 4 >> 2] | 0; i2 = (HEAP32[i6 + 8 >> 2] & 2147483647) + -1 | 0; } else { i4 = i1 & 255; i2 = 10; } if ((i2 - i4 | 0) >>> 0 < i3 >>> 0) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i6, i2, i3 - i2 + i4 | 0, i4, i4, 0, 0); i1 = HEAP8[i7 >> 0] | 0; } if (i1 << 24 >> 24 < 0) i2 = HEAP32[i6 >> 2] | 0; else i2 = i6; _memset(i2 + i4 | 0, i5 | 0, i3 | 0) | 0; i1 = i4 + i3 | 0; if ((HEAP8[i7 >> 0] | 0) < 0) HEAP32[i6 + 4 >> 2] = i1; else HEAP8[i7 >> 0] = i1; HEAP8[i2 + i1 >> 0] = 0; } return i6 | 0; } function __ZNK10__cxxabiv117__class_type_info9can_catchEPKNS_16__shim_type_infoERPv(i3, i1, i4) { i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; var i2 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i5 = i7; if ((i3 | 0) != (i1 | 0)) if ((i1 | 0) != 0 ? (i6 = ___dynamic_cast(i1, 1984, 1968, 0) | 0, (i6 | 0) != 0) : 0) { i1 = i5 + 4 | 0; i2 = i1 + 52 | 0; do { HEAP32[i1 >> 2] = 0; i1 = i1 + 4 | 0; } while ((i1 | 0) < (i2 | 0)); HEAP32[i5 >> 2] = i6; HEAP32[i5 + 8 >> 2] = i3; HEAP32[i5 + 12 >> 2] = -1; HEAP32[i5 + 48 >> 2] = 1; FUNCTION_TABLE_viiii[HEAP32[(HEAP32[i6 >> 2] | 0) + 28 >> 2] & 15](i6, i5, HEAP32[i4 >> 2] | 0, 1); if ((HEAP32[i5 + 24 >> 2] | 0) == 1) { HEAP32[i4 >> 2] = HEAP32[i5 + 16 >> 2]; i1 = 1; } else i1 = 0; } else i1 = 0; else i1 = 1; STACKTOP = i7; return i1 | 0; } function _wcrtomb(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; do if (i1) { if (i2 >>> 0 < 128) { HEAP8[i1 >> 0] = i2; i1 = 1; break; } if (i2 >>> 0 < 2048) { HEAP8[i1 >> 0] = i2 >>> 6 | 192; HEAP8[i1 + 1 >> 0] = i2 & 63 | 128; i1 = 2; break; } if (i2 >>> 0 < 55296 | (i2 & -8192 | 0) == 57344) { HEAP8[i1 >> 0] = i2 >>> 12 | 224; HEAP8[i1 + 1 >> 0] = i2 >>> 6 & 63 | 128; HEAP8[i1 + 2 >> 0] = i2 & 63 | 128; i1 = 3; break; } if ((i2 + -65536 | 0) >>> 0 < 1048576) { HEAP8[i1 >> 0] = i2 >>> 18 | 240; HEAP8[i1 + 1 >> 0] = i2 >>> 12 & 63 | 128; HEAP8[i1 + 2 >> 0] = i2 >>> 6 & 63 | 128; HEAP8[i1 + 3 >> 0] = i2 & 63 | 128; i1 = 4; break; } else { i1 = ___errno_location() | 0; HEAP32[i1 >> 2] = 84; i1 = -1; break; } } else i1 = 1; while (0); return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder13getMaybeBlockEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = i1 + 96 | 0; i5 = i1 + 100 | 0; i6 = (HEAP32[i5 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2; __ZN4wasm17WasmBinaryBuilder18processExpressionsEv(i1); i5 = (HEAP32[i5 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) >> 2; if ((i6 - i5 | 0) == 1) i1 = __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i1) | 0; else { i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i3 = i1 + 12 | 0; i2 = i6; while (1) { if (i2 >>> 0 >= i5 >>> 0) break; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i3, HEAP32[(HEAP32[i4 >> 2] | 0) + (i2 << 2) >> 2] | 0); i2 = i2 + 1 | 0; } __ZN4wasm5Block8finalizeEv(i1); __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6resizeEj(i4, i6); } return i1 | 0; } function __ZNSt3__26vectorIPN4wasm12FunctionTypeENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZN4wasm16PrintSExpression9printNameENS_4NameE(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i7 + 8 | 0; i5 = i7 + 4 | 0; i6 = i7; i2 = HEAP32[i1 >> 2] | 0; i8 = (_strpbrk(i2, 33240) | 0) == 0; i1 = HEAP32[i4 >> 2] | 0; if (i8) { HEAP32[i6 >> 2] = i2; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i1, i3) | 0; } else { i8 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 34) | 0; HEAP32[i5 >> 2] = i2; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i8, i3) | 0, 34) | 0; } STACKTOP = i7; return HEAP32[i4 >> 2] | 0; } function __ZNSt3__219__thread_struct_impD2Ev(i3) { i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0; i4 = i3 + 12 | 0; i2 = HEAP32[i3 + 16 >> 2] | 0; i1 = HEAP32[i4 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZNSt3__25mutex6unlockEv(HEAP32[i1 + 4 >> 2] | 0); __ZNSt3__218condition_variable10notify_allEv(HEAP32[i1 >> 2] | 0); i1 = i1 + 8 | 0; } i2 = HEAP32[i3 + 4 >> 2] | 0; i1 = HEAP32[i3 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZNSt3__217__assoc_sub_state12__make_readyEv(HEAP32[i1 >> 2] | 0); __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i1 >> 2] | 0) | 0; i1 = i1 + 4 | 0; } __ZNSt3__213__vector_baseINS_4pairIPNS_18condition_variableEPNS_5mutexEEENS_18__hidden_allocatorIS6_EEED2Ev(i4); __ZNSt3__213__vector_baseIPNS_17__assoc_sub_stateENS_18__hidden_allocatorIS2_EEED2Ev(i3); return; } function __ZN4wasm22SExpressionWasmBuilder10parseTableERNS_7ElementE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i9; i1 = 1; while (1) { i8 = (__ZN4wasm7Element4listEv(i3) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i8 >> 2] | 0) >>> 0) break; i7 = HEAP32[i2 >> 2] | 0; i8 = __ZN4wasm22SExpressionWasmBuilder15getFunctionNameERNS_7ElementE(i2, __ZN4wasm7ElementixEj(i3, i1) | 0) | 0; HEAP32[i6 >> 2] = i8; i4 = i7 + 64 | 0; i5 = HEAP32[i4 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i7 + 68 >> 2] | 0) >>> 0) { HEAP32[i5 >> 2] = i8; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4; } else __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i7 + 60 | 0, i6); i1 = i1 + 1 | 0; } STACKTOP = i9; return; } function __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE25__emplace_unique_key_argsIS2_JRKS2_EEENS_4pairINS_15__tree_iteratorIS2_PNS_11__tree_nodeIS2_PvEEiEEbEERKT_DpOT0_(i6, i3, i1, i4) { i6 = i6 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; var i2 = 0, i5 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i7; i2 = __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE12__find_equalIS2_EERPNS_16__tree_node_baseIPvEESD_RKT_(i3, i5, i1) | 0; i1 = HEAP32[i2 >> 2] | 0; if (!i1) { i1 = __Znwj(20) | 0; HEAP32[i1 + 16 >> 2] = HEAP32[i4 >> 2]; __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSB_SB_(i3, HEAP32[i5 >> 2] | 0, i2, i1); i2 = 1; } else i2 = 0; HEAP32[i6 >> 2] = i1; HEAP8[i6 + 4 >> 0] = i2; STACKTOP = i7; return; } function __ZNSt3__26vectorIPN4wasm8FunctionENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIPN6cashew5ValueENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIPN4wasm7ElementENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 3) << 3) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw(i1, i7) { i1 = i1 | 0; i7 = i7 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i3 = i1 + 8 | 0; i6 = i3 + 3 | 0; i2 = HEAP8[i6 >> 0] | 0; i4 = i2 << 24 >> 24 < 0; if (i4) { i5 = HEAP32[i1 + 4 >> 2] | 0; i2 = (HEAP32[i3 >> 2] & 2147483647) + -1 | 0; } else { i5 = i2 & 255; i2 = 1; } if ((i5 | 0) == (i2 | 0)) { __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEjjjjjj(i1, i2, 1, i2, i2, 0, 0); if ((HEAP8[i6 >> 0] | 0) > -1) i2 = 7; else i2 = 8; } else if (i4) i2 = 8; else i2 = 7; if ((i2 | 0) == 7) HEAP8[i6 >> 0] = i5 + 1; else if ((i2 | 0) == 8) { i6 = HEAP32[i1 >> 2] | 0; HEAP32[i1 + 4 >> 2] = i5 + 1; i1 = i6; } i6 = i1 + (i5 << 2) | 0; HEAP32[i6 >> 2] = i7; HEAP32[i6 + 4 >> 2] = 0; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKcj(i5, i6, i7) { i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0; i3 = i5 + 11 | 0; i1 = HEAP8[i3 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; if (i2) i4 = (HEAP32[i5 + 8 >> 2] & 2147483647) + -1 | 0; else i4 = 10; do if (i4 >>> 0 >= i7 >>> 0) { if (i2) i1 = HEAP32[i5 >> 2] | 0; else i1 = i5; if (i7 | 0) _memmove(i1 | 0, i6 | 0, i7 | 0) | 0; HEAP8[i1 + i7 >> 0] = 0; if ((HEAP8[i3 >> 0] | 0) < 0) { HEAP32[i5 + 4 >> 2] = i7; break; } else { HEAP8[i3 >> 0] = i7; break; } } else { if (i2) i1 = HEAP32[i5 + 4 >> 2] | 0; else i1 = i1 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc(i5, i4, i7 - i4 | 0, i1, 0, i1, i7, i6); } while (0); return i5 | 0; } function __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 4) << 4) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pbackfailEi(i6, i1) { i6 = i6 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = i6 + 44 | 0; i2 = HEAP32[i3 >> 2] | 0; i4 = HEAP32[i6 + 24 >> 2] | 0; if (i2 >>> 0 < i4 >>> 0) { HEAP32[i3 >> 2] = i4; i2 = i4; } i5 = i6 + 12 | 0; i3 = HEAP32[i5 >> 2] | 0; do if ((HEAP32[i6 + 8 >> 2] | 0) >>> 0 < i3 >>> 0) { if ((i1 | 0) == -1) { HEAP32[i5 >> 2] = i3 + -1; HEAP32[i6 + 16 >> 2] = i2; i1 = 0; break; } if (!(HEAP32[i6 + 48 >> 2] & 16)) { i4 = i1 & 255; i3 = i3 + -1 | 0; if (i4 << 24 >> 24 != (HEAP8[i3 >> 0] | 0)) { i1 = -1; break; } } else { i4 = i1 & 255; i3 = i3 + -1 | 0; } HEAP32[i5 >> 2] = i3; HEAP32[i6 + 16 >> 2] = i2; HEAP8[i3 >> 0] = i4; } else i1 = -1; while (0); return i1 | 0; } function __ZN4wasm34OptimizingIncrementalModuleBuilder12createWorkerEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i6 + 4 | 0; i4 = i6; i3 = __Znwj(4) | 0; HEAP32[i4 >> 2] = i2; __ZNSt3__26threadC2IRFvPvEJPN4wasm34OptimizingIncrementalModuleBuilderEEvEEOT_DpOT0_(i3, 155, i4); HEAP32[i1 >> 2] = i3; i4 = i2 + 28 | 0; i5 = HEAP32[i4 >> 2] | 0; if (i5 >>> 0 < (HEAP32[i2 + 32 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = 0; HEAP32[i5 >> 2] = i3; HEAP32[i4 >> 2] = i5 + 4; } else __ZNSt3__26vectorINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEENS_9allocatorIS5_EEE24__emplace_back_slow_pathIJS5_EEEvDpOT_(i2 + 24 | 0, i1); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) { __ZNSt3__26threadD2Ev(i2); __ZdlPv(i2); } STACKTOP = i6; return; } function __ZNSt3__26vectorIPN4wasm5BlockENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIPN4wasm4CallENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i6, i4, i5) { i6 = i6 | 0; i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i2 = 0, i3 = 0, i7 = 0; i7 = i6 + 11 | 0; i1 = HEAP8[i7 >> 0] | 0; i2 = i1 << 24 >> 24 < 0; if (i2) { i3 = HEAP32[i6 + 4 >> 2] | 0; i1 = (HEAP32[i6 + 8 >> 2] & 2147483647) + -1 | 0; } else { i3 = i1 & 255; i1 = 10; } if ((i1 - i3 | 0) >>> 0 >= i5 >>> 0) { if (i5 | 0) { if (i2) i2 = HEAP32[i6 >> 2] | 0; else i2 = i6; _memcpy(i2 + i3 | 0, i4 | 0, i5 | 0) | 0; i1 = i3 + i5 | 0; if ((HEAP8[i7 >> 0] | 0) < 0) HEAP32[i6 + 4 >> 2] = i1; else HEAP8[i7 >> 0] = i1; HEAP8[i2 + i1 >> 0] = 0; } } else __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc(i6, i1, i5 - i1 + i3 | 0, i3, i3, 0, i5, i4); return i6 | 0; } function __ZNSt3__26vectorIN4wasm4NameENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EEPKS8_RKSB_(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i6 = _strlen(i3) | 0; i5 = i4 + 11 | 0; i1 = HEAP8[i5 >> 0] | 0; i1 = i1 << 24 >> 24 < 0 ? HEAP32[i4 + 4 >> 2] | 0 : i1 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcjj(i2, i3, i6, i1 + i6 | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2, (HEAP8[i5 >> 0] | 0) < 0 ? HEAP32[i4 >> 2] | 0 : i4, i1) | 0; return; } function __ZN4wasm17WasmBinaryBuilder9readStartEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; if (HEAP8[i1 + 12 >> 0] | 0) { i4 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 19382) | 0; i5 = __ZNKSt3__28ios_base6getlocEv(i4 + (HEAP32[(HEAP32[i4 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i2 >> 2] = i5; i5 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 47476) | 0; i5 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 28 >> 2] & 31](i5, 10) | 0; __ZNSt3__26localeD2Ev(i2); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i4, i5) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i4) | 0; } i5 = __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i1) | 0; HEAP32[i1 + 20 >> 2] = i5; STACKTOP = i3; return; } function __ZNSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEEclEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = HEAP32[i1 + 12 >> 2] | 0; i6 = HEAP32[i1 + 4 >> 2] | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i6 >> 2] = i5 + 1; i6 = i1 + 8 | 0; if (i5 >>> 0 < (HEAP32[HEAP32[i6 >> 2] >> 2] | 0) >>> 0) { i3 = HEAP32[(HEAP32[(HEAP32[i4 >> 2] | 0) + 36 >> 2] | 0) + (i5 << 2) >> 2] | 0; i1 = HEAP32[i1 + 16 >> 2] | 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i1 = HEAP32[i1 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZN4wasm10PassRunner17runPassOnFunctionEPNS_4PassEPNS_8FunctionE(i4, HEAP32[i1 >> 2] | 0, i3); i1 = i1 + 4 | 0; } i1 = (i5 + 1 | 0) == (HEAP32[HEAP32[i6 >> 2] >> 2] | 0) & 1; } else i1 = 1; return i1 | 0; } function __ZNSt3__26vectorIPcNS_9allocatorIS1_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS1_RS3_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZN4wasm14ModuleInstance10callExportENS_4NameERNSt3__26vectorINS_7LiteralENS2_9allocatorIS4_EEEE(i3, i4, i1, i5) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; i5 = i5 | 0; var i2 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i7 + 8 | 0; i9 = i7 + 4 | 0; i6 = i7; i8 = HEAP32[i4 >> 2] | 0; HEAP32[i9 >> 2] = HEAP32[i1 >> 2]; HEAP32[i2 >> 2] = HEAP32[i9 >> 2]; i1 = __ZN4wasm6Module11checkExportENS_4NameE(i8, i2) | 0; if (!i1) { i9 = HEAP32[i4 + 36 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i9 >> 2] | 0) + 20 >> 2] & 255](i9, 26230); } HEAP32[i6 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i3, i4, i2, i5); STACKTOP = i7; return; } function __ZNKSt3__27codecvtIwc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_(i1, i4, i3, i5, i6) { i1 = i1 | 0; i4 = i4 | 0; i3 = i3 | 0; i5 = i5 | 0; i6 = i6 | 0; var i2 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i7; HEAP32[i6 >> 2] = i3; i3 = _uselocale(HEAP32[i1 + 8 >> 2] | 0) | 0; i1 = _wcrtomb(i2, 0, i4) | 0; if (i3 | 0) _uselocale(i3) | 0; L4 : do switch (i1 | 0) { case 0: case -1: { i1 = 2; break; } default: { i1 = i1 + -1 | 0; if (i1 >>> 0 > (i5 - (HEAP32[i6 >> 2] | 0) | 0) >>> 0) i1 = 1; else while (1) { if (!i1) { i1 = 0; break L4; } i4 = HEAP8[i2 >> 0] | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i6 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i4; i2 = i2 + 1 | 0; i1 = i1 + -1 | 0; } } } while (0); STACKTOP = i7; return i1 | 0; } function __ZNSt3__26vectorIjNS_9allocatorIjEEE26__swap_out_circular_bufferERNS_14__split_bufferIjRS2_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - (i3 >> 2) << 2) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZN6cashew12ValueBuilder10makeSwitchENS_3RefE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i2 + 12 | 0; i7 = i2 + 8 | 0; i6 = i2 + 4 | 0; i4 = i2; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45128) | 0; HEAP32[i7 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i7 >> 2]; i5 = __ZN6cashew5Value9push_backENS_3RefE(i5, i3) | 0; HEAP32[i6 >> 2] = HEAP32[i1 >> 2]; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i5, i3) | 0; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i4 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0; STACKTOP = i2; return i1 | 0; } function __ZN4wasm16PrintSExpression10visitTableEPNS_5TableE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i6 + 4 | 0; i4 = i6; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i3 >> 2] | 0, 35038, 0) | 0; i5 = HEAP32[i1 + 4 >> 2] | 0; i1 = HEAP32[i1 >> 2] | 0; while (1) { if ((i1 | 0) == (i5 | 0)) break; i7 = HEAP32[i1 >> 2] | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i3 >> 2] | 0, 32) | 0; HEAP32[i4 >> 2] = i7; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; __ZN4wasm16PrintSExpression9printNameENS_4NameE(i3, i2) | 0; i1 = i1 + 4 | 0; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i3 >> 2] | 0, 41) | 0; STACKTOP = i6; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i4, i5) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i1 = i1 + 8 | 0; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] & 127](i1) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i1 = (__ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i2, i8, i1, i1 + 288 | 0, i5, i4, 0) | 0) - i1 | 0; if ((i1 | 0) < 288) HEAP32[i6 >> 2] = ((i1 | 0) / 12 | 0 | 0) % 12 | 0; STACKTOP = i7; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i4, i5) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i1 = i1 + 8 | 0; i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] & 127](i1) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i1 = (__ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i2, i8, i1, i1 + 288 | 0, i5, i4, 0) | 0) - i1 | 0; if ((i1 | 0) < 288) HEAP32[i6 >> 2] = ((i1 | 0) / 12 | 0 | 0) % 12 | 0; STACKTOP = i7; return; } function __ZN6cashew12ValueBuilder8makeCallENS_3RefE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i2 + 12 | 0; i7 = i2 + 8 | 0; i6 = i2 + 4 | 0; i4 = i2; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i8 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45108) | 0; HEAP32[i7 >> 2] = i8; HEAP32[i3 >> 2] = HEAP32[i7 >> 2]; i5 = __ZN6cashew5Value9push_backENS_3RefE(i5, i3) | 0; HEAP32[i6 >> 2] = HEAP32[i1 >> 2]; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i5, i3) | 0; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i4 >> 2] = i5; HEAP32[i3 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i1, i3) | 0; STACKTOP = i2; return i1 | 0; } function __ZN6cashew12ValueBuilder15setBlockContentENS_3RefES1_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; do if (!(__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i1, 0) | 0, 45036) | 0)) if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i1, 0) | 0, 45040) | 0) { i1 = __ZN6cashew3RefixEj(i1, 3) | 0; i1 = HEAP32[i1 >> 2] | 0; i2 = __ZN6cashew3RefixEj(i2, 1) | 0; __ZN6cashew5Value8setArrayERNSt3__26vectorINS_3RefENS1_9allocatorIS3_EEEE(i1, __ZN6cashew5Value8getArrayEv(HEAP32[i2 >> 2] | 0) | 0) | 0; break; } else _abort(); else { i1 = __ZN6cashew3RefixEj(i1, 1) | 0; i1 = HEAP32[i1 >> 2] | 0; i2 = __ZN6cashew3RefixEj(i2, 1) | 0; __ZN6cashew5Value8setArrayERNSt3__26vectorINS_3RefENS1_9allocatorIS3_EEEE(i1, __ZN6cashew5Value8getArrayEv(HEAP32[i2 >> 2] | 0) | 0) | 0; } while (0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, i1, i2) { i5 = i5 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i8 + 4 | 0; i7 = i8; HEAP32[i6 >> 2] = i1; HEAP32[i7 >> 2] = i2; i4 = i2; do if (HEAP32[i2 >> 2] | 0) { i3 = i5 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i5 + 12 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = i1; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i3 >> 2] = i2 + 8; break; } else { __ZNSt3__26vectorIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i5 + 4 | 0, i6, i7); break; } } while (0); STACKTOP = i8; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i1, i6) { i1 = i1 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i5 = i1 + 11 | 0; i2 = HEAP8[i5 >> 0] | 0; i3 = i2 << 24 >> 24 < 0; if (i3) { i4 = HEAP32[i1 + 4 >> 2] | 0; i2 = (HEAP32[i1 + 8 >> 2] & 2147483647) + -1 | 0; } else { i4 = i2 & 255; i2 = 10; } if ((i4 | 0) == (i2 | 0)) { __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj(i1, i2, 1, i2, i2, 0, 0); if ((HEAP8[i5 >> 0] | 0) > -1) i2 = 7; else i2 = 8; } else if (i3) i2 = 8; else i2 = 7; if ((i2 | 0) == 7) HEAP8[i5 >> 0] = i4 + 1; else if ((i2 | 0) == 8) { i5 = HEAP32[i1 >> 2] | 0; HEAP32[i1 + 4 >> 2] = i4 + 1; i1 = i5; } i5 = i1 + i4 | 0; HEAP8[i5 >> 0] = i6; HEAP8[i5 + 1 >> 0] = 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, i1, i2) { i5 = i5 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i8 + 4 | 0; i7 = i8; HEAP32[i6 >> 2] = i1; HEAP32[i7 >> 2] = i2; i4 = i2; do if (HEAP32[i2 >> 2] | 0) { i3 = i5 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i5 + 12 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = i1; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i3 >> 2] = i2 + 8; break; } else { __ZNSt3__26vectorIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i5 + 4 | 0, i6, i7); break; } } while (0); STACKTOP = i8; return; } function __ZNKSt3__220__time_get_c_storageIcE7__am_pmEv(i1) { i1 = i1 | 0; var i2 = 0; if ((HEAP8[44344] | 0) == 0 ? ___cxa_guard_acquire(44344) | 0 : 0) { if ((HEAP8[44352] | 0) == 0 ? ___cxa_guard_acquire(44352) | 0 : 0) { i2 = 47596; do { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = i2 + 12 | 0; } while ((i2 | 0) != 47884); ___cxa_atexit(172, 0, ___dso_handle | 0) | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47596, 39332) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(47608, 39335) | 0; HEAP32[11971] = 47596; } return HEAP32[11971] | 0; } function __ZNSt3__26vectorIcNS_9allocatorIcEEE26__swap_out_circular_bufferERNS_14__split_bufferIcRS2_EE(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0; i2 = HEAP32[i5 >> 2] | 0; i7 = i5 + 4 | 0; i4 = i6 + 4 | 0; i3 = (HEAP32[i7 >> 2] | 0) - i2 | 0; i1 = (HEAP32[i4 >> 2] | 0) + (0 - i3) | 0; HEAP32[i4 >> 2] = i1; if ((i3 | 0) > 0) { _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; i2 = i4; i1 = HEAP32[i4 >> 2] | 0; } else i2 = i4; i4 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = i1; HEAP32[i2 >> 2] = i4; i4 = i6 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i7 >> 2] = HEAP32[i4 >> 2]; HEAP32[i4 >> 2] = i3; i4 = i5 + 8 | 0; i7 = i6 + 12 | 0; i5 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; HEAP32[i7 >> 2] = i5; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13maybePushTaskEPFvPS1_PPNS_10ExpressionEES8_(i5, i1, i2) { i5 = i5 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i8 + 4 | 0; i7 = i8; HEAP32[i6 >> 2] = i1; HEAP32[i7 >> 2] = i2; i4 = i2; do if (HEAP32[i2 >> 2] | 0) { i3 = i5 + 8 | 0; i2 = HEAP32[i3 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i5 + 12 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = i1; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i3 >> 2] = i2 + 8; break; } else { __ZNSt3__26vectorIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i5 + 4 | 0, i6, i7); break; } } while (0); STACKTOP = i8; return; } function __ZNKSt3__220__time_get_c_storageIwE7__am_pmEv(i1) { i1 = i1 | 0; var i2 = 0; if ((HEAP8[44424] | 0) == 0 ? ___cxa_guard_acquire(44424) | 0 : 0) { if ((HEAP8[44432] | 0) == 0 ? ___cxa_guard_acquire(44432) | 0 : 0) { i2 = 48408; do { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = i2 + 12 | 0; } while ((i2 | 0) != 48696); ___cxa_atexit(176, 0, ___dso_handle | 0) | 0; } __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48408, 8628) | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(48420, 8640) | 0; HEAP32[12174] = 48408; } return HEAP32[12174] | 0; } function __ZNSt3__2plIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEENS_12basic_stringIT_T0_T1_EERKSB_PKS8_(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i5 = HEAP8[i3 + 11 >> 0] | 0; i6 = i5 << 24 >> 24 < 0; i5 = i6 ? HEAP32[i3 + 4 >> 2] | 0 : i5 & 255; i1 = _strlen(i4) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcjj(i2, i6 ? HEAP32[i3 >> 2] | 0 : i3, i5, i5 + i1 | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i2, i4, i1) | 0; return; } function __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEEC2EOS9_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = 0; i6 = i2 + 4 | 0; i5 = HEAP32[i6 >> 2] | 0; HEAP32[i6 >> 2] = 0; HEAP32[i1 >> 2] = i4; HEAP32[i1 + 4 >> 2] = i5; i6 = i1 + 8 | 0; i7 = i2 + 8 | 0; i3 = HEAP32[i7 >> 2] | 0; HEAP32[i6 >> 2] = i3; i8 = i2 + 12 | 0; i9 = HEAP32[i8 >> 2] | 0; HEAP32[i1 + 12 >> 2] = i9; HEAP32[i1 + 16 >> 2] = HEAP32[i2 + 16 >> 2]; if (i9 | 0) { i1 = HEAP32[i3 + 4 >> 2] | 0; i2 = i5 + -1 | 0; if (!(i2 & i5)) i1 = i2 & i1; else i1 = (i1 >>> 0) % (i5 >>> 0) | 0; HEAP32[i4 + (i1 << 2) >> 2] = i6; HEAP32[i7 >> 2] = 0; HEAP32[i8 >> 2] = 0; } return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i4, i5) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i1 = i1 + 8 | 0; i1 = FUNCTION_TABLE_ii[HEAP32[HEAP32[i1 >> 2] >> 2] & 127](i1) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i1 = (__ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEPKNS_12basic_stringIwS3_NS_9allocatorIwEEEENS_5ctypeIwEEEET0_RT_SE_SD_SD_RKT1_Rjb(i2, i8, i1, i1 + 168 | 0, i5, i4, 0) | 0) - i1 | 0; if ((i1 | 0) < 168) HEAP32[i6 >> 2] = ((i1 | 0) / 12 | 0 | 0) % 7 | 0; STACKTOP = i7; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i4, i5) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i7 = 0, i8 = 0, i9 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i1 = i1 + 8 | 0; i1 = FUNCTION_TABLE_ii[HEAP32[HEAP32[i1 >> 2] >> 2] & 127](i1) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; i1 = (__ZNSt3__214__scan_keywordINS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEPKNS_12basic_stringIcS3_NS_9allocatorIcEEEENS_5ctypeIcEEEET0_RT_SE_SD_SD_RKT1_Rjb(i2, i8, i1, i1 + 168 | 0, i5, i4, 0) | 0) - i1 | 0; if ((i1 | 0) < 168) HEAP32[i6 >> 2] = ((i1 | 0) / 12 | 0 | 0) % 7 | 0; STACKTOP = i7; return; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE11visitReturnEPNS_6ReturnE(i2, i3, i1) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; var i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i6; HEAP32[i2 >> 2] = 0; i5 = i2 + 8 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; i5 = i2 + 16 | 0; HEAP32[i5 >> 2] = 0; i1 = HEAP32[i1 + 8 >> 2] | 0; if (!((i1 | 0) != 0 ? (__ZN4wasm7VisitorINS_16GlobalInitRunnerENS_4FlowEE5visitEPNS_10ExpressionE(i4, i3, i1), HEAP32[i2 >> 2] = HEAP32[i4 >> 2], HEAP32[i2 + 4 >> 2] = HEAP32[i4 + 4 >> 2], HEAP32[i2 + 8 >> 2] = HEAP32[i4 + 8 >> 2], HEAP32[i2 + 12 >> 2] = HEAP32[i4 + 12 >> 2], HEAP32[i2 + 16 >> 2] = HEAP32[i4 + 16 >> 2], (HEAP32[i5 >> 2] | 0) != 0) : 0)) HEAP32[i2 + 16 >> 2] = HEAP32[11431]; STACKTOP = i6; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i10 = __ZNKSt3__28ios_base6getlocEv(i4) | 0; HEAP32[i8 >> 2] = i10; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47508) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i10) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6 + 16 | 0, i2, i8, i5, i4); STACKTOP = i7; return HEAP32[i2 >> 2] | 0; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i10 = __ZNKSt3__28ios_base6getlocEv(i4) | 0; HEAP32[i8 >> 2] = i10; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47508) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i10) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6 + 24 | 0, i2, i8, i5, i4); STACKTOP = i7; return HEAP32[i2 >> 2] | 0; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i10 = __ZNKSt3__28ios_base6getlocEv(i4) | 0; HEAP32[i8 >> 2] = i10; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47476) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i10) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6 + 16 | 0, i2, i8, i5, i4); STACKTOP = i7; return HEAP32[i2 >> 2] | 0; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i10 = __ZNKSt3__28ios_base6getlocEv(i4) | 0; HEAP32[i8 >> 2] = i10; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47476) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i10) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6 + 24 | 0, i2, i8, i5, i4); STACKTOP = i7; return HEAP32[i2 >> 2] | 0; } function __ZN6cashew12ValueBuilder12makeIndexingENS_3RefES1_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 12 | 0; i8 = i3 + 8 | 0; i7 = i3 + 4 | 0; i5 = i3; i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45104) | 0; HEAP32[i8 >> 2] = i9; HEAP32[i4 >> 2] = HEAP32[i8 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i7 >> 2] = HEAP32[i1 >> 2]; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i1, i4) | 0; STACKTOP = i3; return i2 | 0; } function __ZN4wasm5Block8finalizeEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i1 = i6 + 48 | 0; i3 = i6 + 4 | 0; i4 = i6; i5 = HEAP32[i2 + 8 >> 2] | 0; do if (!i5) if (!(HEAP32[i2 + 20 >> 2] | 0)) { HEAP32[i2 + 4 >> 2] = 5; break; } else { i5 = __ZNK11ArenaVectorIPN4wasm10ExpressionEE4backEv(i2 + 12 | 0) | 0; HEAP32[i2 + 4 >> 2] = HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2]; break; } else { HEAP32[i4 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN4wasm10TypeSeekerC2EPNS_10ExpressionENS_4NameE(i3, i2, i1); i5 = __ZN4wasmL10mergeTypesERNSt3__26vectorINS_8WasmTypeENS0_9allocatorIS2_EEEE(i3 + 32 | 0) | 0; HEAP32[i2 + 4 >> 2] = i5; __ZN4wasm10TypeSeekerD2Ev(i3); } while (0); STACKTOP = i6; return; } function __ZN6cashew12ValueBuilder9makeWhileENS_3RefES1_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 12 | 0; i8 = i3 + 8 | 0; i7 = i3 + 4 | 0; i5 = i3; i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45088) | 0; HEAP32[i8 >> 2] = i9; HEAP32[i4 >> 2] = HEAP32[i8 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i7 >> 2] = HEAP32[i1 >> 2]; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i1, i4) | 0; STACKTOP = i3; return i2 | 0; } function __ZN4wasm12PassRegistry10createPassENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((__ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE4findIS7_EENS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEERKT_(i1, i2) | 0) == (i1 + 4 | 0)) i1 = 0; else { i1 = __ZNKSt3__28functionIFPN4wasm4PassEvEEclEv((__ZNSt3__23mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixERSD_(i1, i2) | 0) + 16 | 0) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_(i1 + 4 | 0, i2) | 0; } return i1 | 0; } function __ZN4wasm16ExpressionRunnerIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerE9visitLoopEPNS_4LoopE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i4 = i3 + 16 | 0; i5 = i1 + 16 | 0; i6 = i3 + 12 | 0; while (1) { __ZN4wasm7VisitorIZNS_14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS4_9allocatorIS6_EEEEE23RuntimeExpressionRunnerNS_4FlowEE5visitEPNS_10ExpressionE(i1, i2, HEAP32[i4 >> 2] | 0); i7 = HEAP32[i5 >> 2] | 0; if (!i7) break; if ((i7 | 0) != (HEAP32[i6 >> 2] | 0)) { i8 = 4; break; } } if ((i8 | 0) == 4 ? (i7 | 0) == (HEAP32[i3 + 8 >> 2] | 0) : 0) HEAP32[i5 >> 2] = 0; return; } function __ZN6cashew12ValueBuilder6makeDoENS_3RefES1_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 12 | 0; i8 = i3 + 8 | 0; i7 = i3 + 4 | 0; i5 = i3; i6 = __ZN6cashew12ValueBuilder12makeRawArrayEi(3) | 0; i9 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45092) | 0; HEAP32[i8 >> 2] = i9; HEAP32[i4 >> 2] = HEAP32[i8 >> 2]; i6 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 >> 2] = HEAP32[i7 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i6, i4) | 0; HEAP32[i5 >> 2] = HEAP32[i1 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i2, i4) | 0; STACKTOP = i3; return i2 | 0; } function __ZN4wasm6Binary8finalizeEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = HEAP32[i1 + 12 >> 2] | 0; if (i2 | 0 ? (i3 = HEAP32[i1 + 16 >> 2] | 0, i3 | 0) : 0) { switch (HEAP32[i1 + 8 >> 2] | 0) { case 62: case 61: case 60: case 59: case 58: case 57: case 49: case 48: case 47: case 46: case 45: case 44: case 43: case 42: case 41: case 40: case 24: case 23: case 22: case 21: case 20: case 19: case 18: case 17: case 16: case 15: case 75: case 74: case 73: case 72: case 71: case 70: { HEAP32[i1 + 4 >> 2] = 1; break; } default: { i2 = HEAP32[i2 + 4 >> 2] | 0; HEAP32[i1 + 4 >> 2] = (i2 | 0) != 5 ? i2 : HEAP32[i3 + 4 >> 2] | 0; } } return; } ___assert_fail(17847, 14782, 1293, 17861); } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE6xsputnEPKwi(i5, i1, i6) { i5 = i5 | 0; i1 = i1 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = i5 + 24 | 0; i8 = i5 + 28 | 0; i2 = 0; while (1) { if ((i2 | 0) >= (i6 | 0)) break; i3 = HEAP32[i7 >> 2] | 0; i4 = HEAP32[i8 >> 2] | 0; if (i3 >>> 0 < i4 >>> 0) { i4 = i4 - i3 >> 2; i9 = i6 - i2 | 0; i4 = (i9 | 0) < (i4 | 0) ? i9 : i4; __ZNSt3__211char_traitsIwE4copyEPwPKwj(i3, i1, i4) | 0; HEAP32[i7 >> 2] = (HEAP32[i7 >> 2] | 0) + (i4 << 2); i1 = i1 + (i4 << 2) | 0; i2 = i4 + i2 | 0; continue; } if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 52 >> 2] & 31](i5, HEAP32[i1 >> 2] | 0) | 0) == -1) break; i1 = i1 + 4 | 0; i2 = i2 + 1 | 0; } return i2 | 0; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i10 = __ZNKSt3__28ios_base6getlocEv(i4) | 0; HEAP32[i8 >> 2] = i10; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47508) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i10) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6 + 20 | 0, i2, i8, i5, i4); STACKTOP = i7; return HEAP32[i2 >> 2] | 0; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 4 | 0; i9 = i7; i10 = __ZNKSt3__28ios_base6getlocEv(i4) | 0; HEAP32[i8 >> 2] = i10; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i8, 47476) | 0; __ZNSt3__214__shared_count16__release_sharedEv(i10) | 0; HEAP32[i9 >> 2] = HEAP32[i3 >> 2]; HEAP32[i8 >> 2] = HEAP32[i9 >> 2]; __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6 + 20 | 0, i2, i8, i5, i4); STACKTOP = i7; return HEAP32[i2 >> 2] | 0; } function __ZNK4wasm7LiteraleqERKS0_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i4 = HEAP32[i2 >> 2] | 0; L1 : do if ((i4 | 0) == (HEAP32[i3 >> 2] | 0)) switch (i4 | 0) { case 0: { i1 = 1; break L1; } case 1: { i1 = (HEAP32[i2 + 8 >> 2] | 0) == (HEAP32[i3 + 8 >> 2] | 0); break L1; } case 3: { i1 = +__ZNK4wasm7Literal6getf32Ev(i2) == +__ZNK4wasm7Literal6getf32Ev(i3); break L1; } case 2: { i4 = i2 + 8 | 0; i1 = i3 + 8 | 0; i1 = (HEAP32[i4 >> 2] | 0) == (HEAP32[i1 >> 2] | 0) ? (HEAP32[i4 + 4 >> 2] | 0) == (HEAP32[i1 + 4 >> 2] | 0) : 0; break L1; } case 4: { i1 = +__ZNK4wasm7Literal6getf64Ev(i2) == +__ZNK4wasm7Literal6getf64Ev(i3); break L1; } default: _abort(); } else i1 = 0; while (0); return i1 | 0; } function __ZNK4wasm7Literal4rotRERKS0_(i4, i1, i2) { i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = i1 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) { i3 = HEAP32[i3 >> 2] | 0; i1 = HEAP32[i2 + 8 >> 2] | 0; HEAP32[i4 + 8 >> 2] = i3 >>> (i1 & 31) | i3 << (0 - i1 & 31); i1 = 1; } else { i1 = i3; i6 = HEAP32[i1 >> 2] | 0; i1 = HEAP32[i1 + 4 >> 2] | 0; i2 = i2 + 8 | 0; i7 = HEAP32[i2 >> 2] | 0; i2 = HEAP32[i2 + 4 >> 2] | 0; i5 = _bitshift64Lshr(i6 | 0, i1 | 0, i7 & 63 | 0) | 0; i3 = tempRet0; i2 = _i64Subtract(0, 0, i7 | 0, i2 | 0) | 0; i2 = _bitshift64Shl(i6 | 0, i1 | 0, i2 & 63 | 0) | 0; i1 = i4 + 8 | 0; HEAP32[i1 >> 2] = i5 | i2; HEAP32[i1 + 4 >> 2] = i3 | tempRet0; i1 = 2; } HEAP32[i4 >> 2] = i1; return; } function __ZNK4wasm7Literal4rotLERKS0_(i4, i1, i2) { i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = i1 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) { i3 = HEAP32[i3 >> 2] | 0; i1 = HEAP32[i2 + 8 >> 2] | 0; HEAP32[i4 + 8 >> 2] = i3 << (i1 & 31) | i3 >>> (0 - i1 & 31); i1 = 1; } else { i1 = i3; i6 = HEAP32[i1 >> 2] | 0; i1 = HEAP32[i1 + 4 >> 2] | 0; i2 = i2 + 8 | 0; i7 = HEAP32[i2 >> 2] | 0; i2 = HEAP32[i2 + 4 >> 2] | 0; i5 = _bitshift64Shl(i6 | 0, i1 | 0, i7 & 63 | 0) | 0; i3 = tempRet0; i2 = _i64Subtract(0, 0, i7 | 0, i2 | 0) | 0; i2 = _bitshift64Lshr(i6 | 0, i1 | 0, i2 & 63 | 0) | 0; i1 = i4 + 8 | 0; HEAP32[i1 >> 2] = i5 | i2; HEAP32[i1 + 4 >> 2] = i3 | tempRet0; i1 = 2; } HEAP32[i4 >> 2] = i1; return; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE6xsputnEPKci(i5, i1, i6) { i5 = i5 | 0; i1 = i1 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0; i7 = i5 + 24 | 0; i8 = i5 + 28 | 0; i4 = 0; while (1) { if ((i4 | 0) >= (i6 | 0)) break; i2 = HEAP32[i7 >> 2] | 0; i3 = HEAP32[i8 >> 2] | 0; if (i2 >>> 0 >= i3 >>> 0) { if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i5 >> 2] | 0) + 52 >> 2] & 31](i5, HEAPU8[i1 >> 0] | 0) | 0) == -1) break; i1 = i1 + 1 | 0; i4 = i4 + 1 | 0; continue; } i3 = i3 - i2 | 0; i9 = i6 - i4 | 0; i3 = (i9 | 0) < (i3 | 0) ? i9 : i3; if (i3) { _memcpy(i2 | 0, i1 | 0, i3 | 0) | 0; i2 = HEAP32[i7 >> 2] | 0; } HEAP32[i7 >> 2] = i2 + i3; i1 = i1 + i3 | 0; i4 = i3 + i4 | 0; } return i4 | 0; } function ___remdi3(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i5 | 0; i7 = i2 >> 31 | ((i2 | 0) < 0 ? -1 : 0) << 1; i6 = ((i2 | 0) < 0 ? -1 : 0) >> 31 | ((i2 | 0) < 0 ? -1 : 0) << 1; i10 = i4 >> 31 | ((i4 | 0) < 0 ? -1 : 0) << 1; i9 = ((i4 | 0) < 0 ? -1 : 0) >> 31 | ((i4 | 0) < 0 ? -1 : 0) << 1; i1 = _i64Subtract(i7 ^ i1 | 0, i6 ^ i2 | 0, i7 | 0, i6 | 0) | 0; i2 = tempRet0; ___udivmoddi4(i1, i2, _i64Subtract(i10 ^ i3 | 0, i9 ^ i4 | 0, i10 | 0, i9 | 0) | 0, tempRet0, i8) | 0; i4 = _i64Subtract(HEAP32[i8 >> 2] ^ i7 | 0, HEAP32[i8 + 4 >> 2] ^ i6 | 0, i7 | 0, i6 | 0) | 0; i3 = tempRet0; STACKTOP = i5; return (tempRet0 = i3, i4) | 0; } function __ZN4wasm17WasmBinaryBuilder16visitUnreachableEPNS_11UnreachableE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i2; if (HEAP8[i3 + 12 >> 0] | 0) { i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20740) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i3, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i3) | 0; } STACKTOP = i2; return; } function __ZN4wasm17WasmBinaryBuilderD2Ev(i1) { i1 = i1 | 0; __ZNSt3__213__vector_baseIjNS_9allocatorIjEEED2Ev(i1 + 112 | 0); __ZNSt3__213__vector_baseIPN4wasm10ExpressionENS_9allocatorIS3_EEED2Ev(i1 + 96 | 0); __ZNSt3__213__vector_baseIN4wasm4NameENS_9allocatorIS2_EEED2Ev(i1 + 84 | 0); __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEED2Ev(i1 + 72 | 0); __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEED2Ev(i1 + 52 | 0); __ZNSt3__213__vector_baseIPN4wasm8FunctionENS_9allocatorIS3_EEED2Ev(i1 + 40 | 0); __ZNSt3__213__vector_baseIPN4wasm12FunctionTypeENS_9allocatorIS3_EEED2Ev(i1 + 24 | 0); return; } function __ZNSt3__23mapIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS5_EEEENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S8_EEEEEixERSD_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSM_IJEEEEEENS_4pairINS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initIPKcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeESA_SA_(i2, i1, i6) { i2 = i2 | 0; i1 = i1 | 0; i6 = i6 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0; i4 = i1; i3 = i6 - i4 | 0; if (i3 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i2); if (i3 >>> 0 < 11) { HEAP8[i2 + 11 >> 0] = i3; i5 = i2; } else { i7 = i3 + 16 & -16; i5 = __Znwj(i7) | 0; HEAP32[i2 >> 2] = i5; HEAP32[i2 + 8 >> 2] = i7 | -2147483648; HEAP32[i2 + 4 >> 2] = i3; } i3 = i6 - i4 | 0; i2 = i5; while (1) { if ((i1 | 0) == (i6 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } HEAP8[i5 + i3 >> 0] = 0; return; } function __ZN4wasm16PrintSExpression14visitSetGlobalEPNS_9SetGlobalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i6 = i3; i5 = __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i1 >> 2] | 0, 33044, 0) | 0; i7 = __ZN4wasm16PrintSExpression15printableGlobalEj(i1, HEAP32[i2 + 8 >> 2] | 0) | 0; HEAP32[i6 >> 2] = i7; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i4) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i1); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 12 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i1); STACKTOP = i3; return; } function __ZN4wasm14ModuleInstance12callFunctionEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i2, i3, i4, i5) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i10 + 4 | 0; i6 = i10; HEAP32[i3 + 16 >> 2] = 0; i7 = HEAP32[i3 + 20 >> 2] | 0; i8 = i3 + 24 | 0; i9 = HEAP32[i8 >> 2] | 0; while (1) { if ((i9 | 0) == (i7 | 0)) break; i11 = i9 + -4 | 0; HEAP32[i8 >> 2] = i11; i9 = i11; } HEAP32[i6 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; __ZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEE(i2, i3, i1, i5); STACKTOP = i10; return; } function _fputc(i1, i6) { i1 = i1 | 0; i6 = i6 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i7 = 0; if ((HEAP32[i6 + 76 >> 2] | 0) >= 0 ? (___lockfile(i6) | 0) != 0 : 0) { if ((HEAP8[i6 + 75 >> 0] | 0) != (i1 | 0) ? (i4 = i6 + 20 | 0, i5 = HEAP32[i4 >> 2] | 0, i5 >>> 0 < (HEAP32[i6 + 16 >> 2] | 0) >>> 0) : 0) { HEAP32[i4 >> 2] = i5 + 1; HEAP8[i5 >> 0] = i1; i1 = i1 & 255; } else i1 = ___overflow(i6, i1) | 0; ___unlockfile(i6); } else i7 = 3; do if ((i7 | 0) == 3) { if ((HEAP8[i6 + 75 >> 0] | 0) != (i1 | 0) ? (i2 = i6 + 20 | 0, i3 = HEAP32[i2 >> 2] | 0, i3 >>> 0 < (HEAP32[i6 + 16 >> 2] | 0) >>> 0) : 0) { HEAP32[i2 >> 2] = i3 + 1; HEAP8[i3 >> 0] = i1; i1 = i1 & 255; break; } i1 = ___overflow(i6, i1) | 0; } while (0); return i1 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initIPcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_(i2, i1, i6) { i2 = i2 | 0; i1 = i1 | 0; i6 = i6 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0; i4 = i1; i3 = i6 - i4 | 0; if (i3 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i2); if (i3 >>> 0 < 11) { HEAP8[i2 + 11 >> 0] = i3; i5 = i2; } else { i7 = i3 + 16 & -16; i5 = __Znwj(i7) | 0; HEAP32[i2 >> 2] = i5; HEAP32[i2 + 8 >> 2] = i7 | -2147483648; HEAP32[i2 + 4 >> 2] = i3; } i3 = i6 - i4 | 0; i2 = i5; while (1) { if ((i1 | 0) == (i6 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } HEAP8[i5 + i3 >> 0] = 0; return; } function __ZNSt3__29__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0, i7 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i5; i2 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i6 >> 2] = i2; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47508) | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 48 >> 2] & 7](i7, 38819, 38845, i3) | 0; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47516) | 0; i6 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 127](i3) | 0; HEAP32[i4 >> 2] = i6; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 255](i1, i3); __ZNSt3__214__shared_count16__release_sharedEv(i2) | 0; STACKTOP = i5; return; } function __ZNSt3__26vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEEC2EjRKS3_RKS5_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; HEAP32[i1 >> 2] = 0; i4 = i1 + 4 | 0; HEAP32[i4 >> 2] = 0; i3 = HEAP32[i3 >> 2] | 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = i3; i3 = __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE8allocateEj(i3, 24) | 0; HEAP32[i4 >> 2] = i3; HEAP32[i1 >> 2] = i3; HEAP32[i1 + 8 >> 2] = i3 + 24; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3, i2); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i3 + 12 | 0, i2 + 12 | 0); HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 24; return; } function __ZN4wasm22SExpressionWasmBuilder14makeCallImportERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 4 | 0; i7 = i4; i3 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i8 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i3 + 24 >> 2] = i8; i6 = HEAP32[i1 >> 2] | 0; HEAP32[i7 >> 2] = i8; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; i5 = (__ZN4wasm6Module9getImportENS_4NameE(i6, i5) | 0) + 12 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[(HEAP32[i5 >> 2] | 0) + 4 >> 2]; __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_10CallImportEEEvRNS_7ElementEjPT_(i1, i2, 2, i3); STACKTOP = i4; return i3 | 0; } function __ZNSt3__29__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0, i7 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i5; i2 = __ZNKSt3__28ios_base6getlocEv(i2) | 0; HEAP32[i6 >> 2] = i2; i7 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47476) | 0; FUNCTION_TABLE_iiiii[HEAP32[(HEAP32[i7 >> 2] | 0) + 32 >> 2] & 7](i7, 38819, 38845, i3) | 0; i3 = __ZNKSt3__26locale9use_facetERNS0_2idE(i6, 47492) | 0; i6 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 16 >> 2] & 127](i3) | 0; HEAP8[i4 >> 0] = i6; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i3 >> 2] | 0) + 20 >> 2] & 255](i1, i3); __ZNSt3__214__shared_count16__release_sharedEv(i2) | 0; STACKTOP = i5; return; } function __ZN4wasm16PrintSExpression13visitSetLocalEPNS_8SetLocalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i6 = i3; i5 = __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i1 >> 2] | 0, 33068, 0) | 0; i7 = __ZN4wasm16PrintSExpression14printableLocalEj(i1, HEAP32[i2 + 8 >> 2] | 0) | 0; HEAP32[i6 >> 2] = i7; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i4) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i1); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 12 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i1); STACKTOP = i3; return; } function __ZNSt3__23mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixERSD_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE25__emplace_unique_key_argsIS7_JRKNS_21piecewise_construct_tENS_5tupleIJRKS7_EEENSM_IJEEEEEENS_4pairINS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 51419, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 32 | 0; } function __ZNSt3__23mapINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoENS_4lessIS6_EENS4_INS_4pairIKS6_S9_EEEEEixEOS6_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE25__emplace_unique_key_argsIS7_JRKNS_21piecewise_construct_tENS_5tupleIJOS7_EEENSM_IJEEEEEENS_4pairINS_15__tree_iteratorISB_PNS_11__tree_nodeISB_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 51419, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 32 | 0; } function __ZNSt3__26vectorIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEE5eraseENS_11__wrap_iterIPKS6_EESD_(i4, i1, i2) { i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i5 = 0, i6 = 0; i6 = HEAP32[i4 >> 2] | 0; i3 = HEAP32[i1 >> 2] | 0; i6 = i6 + (i3 - i6 >> 3 << 3) | 0; i1 = HEAP32[i2 >> 2] | 0; L1 : do if ((i3 | 0) != (i1 | 0)) { i3 = i6 + (i1 - i3 >> 3 << 3) | 0; i5 = i4 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; i2 = i1 - i3 | 0; i4 = i2 >> 3; if (i4) { _memmove(i6 | 0, i3 | 0, i2 | 0) | 0; i1 = HEAP32[i5 >> 2] | 0; } i2 = i6 + (i4 << 3) | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i4 = i1 + -8 | 0; HEAP32[i5 >> 2] = i4; i1 = i4; } } while (0); return i6 | 0; } function __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE7destroyEPNS_11__tree_nodeIS9_PvEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i2) return; else { __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE7destroyEPNS_11__tree_nodeIS9_PvEE(i1, HEAP32[i2 >> 2] | 0); __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE7destroyEPNS_11__tree_nodeIS9_PvEE(i1, HEAP32[i2 + 4 >> 2] | 0); __ZNSt3__213__vector_baseIPN4wasm4CallENS_9allocatorIS3_EEED2Ev(i2 + 20 | 0); __ZdlPv(i2); return; } } function __ZNSt3__219__double_or_nothingIwEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i4, i5, i7) { i4 = i4 | 0; i5 = i5 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i8 = 0; i8 = i4 + 4 | 0; i2 = (HEAP32[i8 >> 2] | 0) != 178; i1 = HEAP32[i4 >> 2] | 0; i3 = (HEAP32[i7 >> 2] | 0) - i1 | 0; i3 = i3 >>> 0 < 2147483647 ? i3 << 1 : -1; i3 = (i3 | 0) == 0 ? 4 : i3; i6 = (HEAP32[i5 >> 2] | 0) - i1 >> 2; i1 = _realloc(i2 ? i1 : 0, i3) | 0; if (!i2) { i2 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = i1; if (i2) { FUNCTION_TABLE_vi[HEAP32[i8 >> 2] & 255](i2); i1 = HEAP32[i4 >> 2] | 0; } } else HEAP32[i4 >> 2] = i1; HEAP32[i8 >> 2] = 179; HEAP32[i5 >> 2] = i1 + (i6 << 2); HEAP32[i7 >> 2] = (HEAP32[i4 >> 2] | 0) + (i3 >>> 2 << 2); return; } function __ZNSt3__219__double_or_nothingIjEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i4, i5, i7) { i4 = i4 | 0; i5 = i5 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i8 = 0; i8 = i4 + 4 | 0; i2 = (HEAP32[i8 >> 2] | 0) != 178; i1 = HEAP32[i4 >> 2] | 0; i3 = (HEAP32[i7 >> 2] | 0) - i1 | 0; i3 = i3 >>> 0 < 2147483647 ? i3 << 1 : -1; i3 = (i3 | 0) == 0 ? 4 : i3; i6 = (HEAP32[i5 >> 2] | 0) - i1 >> 2; i1 = _realloc(i2 ? i1 : 0, i3) | 0; if (!i2) { i2 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = i1; if (i2) { FUNCTION_TABLE_vi[HEAP32[i8 >> 2] & 255](i2); i1 = HEAP32[i4 >> 2] | 0; } } else HEAP32[i4 >> 2] = i1; HEAP32[i8 >> 2] = 179; HEAP32[i5 >> 2] = i1 + (i6 << 2); HEAP32[i7 >> 2] = (HEAP32[i4 >> 2] | 0) + (i3 >>> 2 << 2); return; } function __ZN4wasm10WalkerPassINS_10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS5_vEEEEE3runEPNS_10PassRunnerEPNS_6ModuleE(i2, i3, i6) { i2 = i2 | 0; i3 = i3 | 0; i6 = i6 | 0; var i1 = 0, i4 = 0, i5 = 0; FUNCTION_TABLE_viii[HEAP32[(HEAP32[i2 >> 2] | 0) + 8 >> 2] & 7](i2, i3, i6); HEAP32[i2 + 36 >> 2] = i6; i4 = HEAP32[i6 + 40 >> 2] | 0; i5 = i2 + 16 + -16 + 16 | 0; i1 = HEAP32[i6 + 36 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12walkFunctionEPNS_8FunctionE(i5, HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } FUNCTION_TABLE_viii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 7](i2, i3, i6); return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE4findIS3_EENS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEEiEERKT_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i1 = i2 + 4 | 0; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE13__lower_boundIS3_EENS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEEiEERKT_SN_SN_(i2, i3, HEAP32[i1 >> 2] | 0, i1) | 0; if ((i2 | 0) != (i1 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i3, i2 + 16 | 0) | 0) : 0) i1 = i2; return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__construct_nodeIJRKNS_21piecewise_construct_tENS_5tupleIJRKS7_EEENSM_IJEEEEEENS_10unique_ptrINS_11__tree_nodeISB_PvEENS_22__tree_node_destructorINS5_ISU_EEEEEEDpOT_(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i3 = __Znwj(72) | 0; HEAP32[i1 >> 2] = i3; HEAP32[i1 + 4 >> 2] = i2 + 4; i5 = i1 + 8 | 0; HEAP8[i5 >> 0] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i3 + 16 | 0, HEAP32[i4 >> 2] | 0); __ZN4wasm12PassRegistry8PassInfoC2Ev(i3 + 32 | 0); HEAP8[i5 >> 0] = 1; return; } function __ZN4wasm17WasmBinaryBuilder8visitNopEPNS_3NopE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i2; if (HEAP8[i3 + 12 >> 0] | 0) { i3 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 20727) | 0; i4 = __ZNKSt3__28ios_base6getlocEv(i3 + (HEAP32[(HEAP32[i3 >> 2] | 0) + -12 >> 2] | 0) | 0) | 0; HEAP32[i1 >> 2] = i4; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i1, 47476) | 0; i4 = FUNCTION_TABLE_iii[HEAP32[(HEAP32[i4 >> 2] | 0) + 28 >> 2] & 31](i4, 10) | 0; __ZNSt3__26localeD2Ev(i1); __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE3putEc(i3, i4) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i3) | 0; } STACKTOP = i2; return; } function ___overflow(i5, i6) { i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i9; i8 = i6 & 255; HEAP8[i7 >> 0] = i8; i2 = i5 + 16 | 0; i3 = HEAP32[i2 >> 2] | 0; if (!i3) if (!(___towrite(i5) | 0)) { i3 = HEAP32[i2 >> 2] | 0; i4 = 4; } else i1 = -1; else i4 = 4; do if ((i4 | 0) == 4) { i4 = i5 + 20 | 0; i2 = HEAP32[i4 >> 2] | 0; if (i2 >>> 0 < i3 >>> 0 ? (i1 = i6 & 255, (i1 | 0) != (HEAP8[i5 + 75 >> 0] | 0)) : 0) { HEAP32[i4 >> 2] = i2 + 1; HEAP8[i2 >> 0] = i8; break; } if ((FUNCTION_TABLE_iiii[HEAP32[i5 + 36 >> 2] & 31](i5, i7, 1) | 0) == 1) i1 = HEAPU8[i7 >> 0] | 0; else i1 = -1; } while (0); STACKTOP = i9; return i1 | 0; } function __ZN4wasm34OptimizingIncrementalModuleBuilder17waitUntilAllReadyEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i1 = i6 + 16 | 0; i3 = i6 + 8 | 0; i4 = i6; i7 = i2 + 52 | 0; HEAP32[i3 >> 2] = i7; i5 = i3 + 4 | 0; HEAP8[i5 >> 0] = 1; __ZNSt3__25mutex4lockEv(i7); if ((HEAP32[i2 + 36 >> 2] | 0) >>> 0 < (HEAP32[i2 + 20 >> 2] | 0) >>> 0) { HEAP32[i4 >> 2] = i2; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZNSt3__218condition_variable4waitIZN4wasm34OptimizingIncrementalModuleBuilder17waitUntilAllReadyEvEUlvE_EEvRNS_11unique_lockINS_5mutexEEET_(i2 + 80 | 0, i3, i1); } if (HEAP8[i5 >> 0] | 0) __ZNSt3__25mutex6unlockEv(HEAP32[i3 >> 2] | 0); STACKTOP = i6; return; } function __ZN6cashew12ValueBuilder7makeDotENS_3RefES1_(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i7 + 12 | 0; i1 = i7 + 8 | 0; i5 = i7 + 4 | 0; i6 = i7; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i4, 0) | 0, 45056) | 0) { HEAP32[i5 >> 2] = HEAP32[i3 >> 2]; i4 = __ZN6cashew3RefixEj(i4, 1) | 0; i4 = __ZN6cashew5Value10getIStringEv(HEAP32[i4 >> 2] | 0) | 0; HEAP32[i6 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; i6 = __ZN6cashew12ValueBuilder7makeDotENS_3RefENS_7IStringE(i1, i2) | 0; STACKTOP = i7; return i6 | 0; } else ___assert_fail(29477, 34046, 1629, 29492); return 0; } function __ZNSt3__2plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EEPKS6_RKS9_(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i6 = _strlen(i3) | 0; i5 = i4 + 11 | 0; i1 = HEAP8[i5 >> 0] | 0; i1 = i1 << 24 >> 24 < 0 ? HEAP32[i4 + 4 >> 2] | 0 : i1 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcjj(i2, i3, i6, i1 + i6 | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i2, (HEAP8[i5 >> 0] | 0) < 0 ? HEAP32[i4 >> 2] | 0 : i4, i1) | 0; return; } function __ZN4wasm11BreakSeeker3hasEPNS_10ExpressionENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 48 | 0; i5 = i3; i4 = i3 + 8 | 0; HEAP32[i5 >> 2] = i1; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; HEAP32[i4 + 12 >> 2] = 0; HEAP32[i4 + 16 >> 2] = 0; HEAP32[i4 + 20 >> 2] = 0; HEAP32[i4 + 24 >> 2] = i2; i2 = i4 + 28 | 0; HEAP32[i2 >> 2] = 0; __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE4walkERPNS_10ExpressionE(i4, i5); i2 = (HEAP32[i2 >> 2] | 0) != 0; __ZNSt3__213__vector_baseIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEED2Ev(i4 + 4 | 0); STACKTOP = i3; return i2 | 0; } function __ZNSt3__214__num_put_base12__format_intEPcPKcbj(i1, i2, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i3 = 0; if (i5 & 2048) { HEAP8[i1 >> 0] = 43; i1 = i1 + 1 | 0; } if (i5 & 512) { HEAP8[i1 >> 0] = 35; i1 = i1 + 1 | 0; } while (1) { i3 = HEAP8[i2 >> 0] | 0; if (!(i3 << 24 >> 24)) break; HEAP8[i1 >> 0] = i3; i2 = i2 + 1 | 0; i1 = i1 + 1 | 0; } L10 : do switch (i5 & 74) { case 64: { HEAP8[i1 >> 0] = 111; break; } case 8: if (!(i5 & 16384)) { HEAP8[i1 >> 0] = 120; break L10; } else { HEAP8[i1 >> 0] = 88; break L10; } default: if (i4) { HEAP8[i1 >> 0] = 100; break L10; } else { HEAP8[i1 >> 0] = 117; break L10; } } while (0); return; } function __ZN4wasm16PrintSExpression11visitSelectEPNS_6SelectE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i1 >> 2] | 0, 40) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__Z12prepareColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(HEAP32[i1 >> 2] | 0) | 0, 31703) | 0; __ZN4wasm16PrintSExpression9incIndentEv(i1); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 8 >> 2] | 0); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 12 >> 2] | 0); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, HEAP32[i2 + 16 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i1); return; } function __ZNSt3__219__double_or_nothingIcEEvRNS_10unique_ptrIT_PFvPvEEERPS2_S9_(i4, i5, i7) { i4 = i4 | 0; i5 = i5 | 0; i7 = i7 | 0; var i1 = 0, i2 = 0, i3 = 0, i6 = 0, i8 = 0; i8 = i4 + 4 | 0; i2 = (HEAP32[i8 >> 2] | 0) != 178; i1 = HEAP32[i4 >> 2] | 0; i3 = (HEAP32[i7 >> 2] | 0) - i1 | 0; i3 = i3 >>> 0 < 2147483647 ? i3 << 1 : -1; i3 = (i3 | 0) == 0 ? 1 : i3; i6 = (HEAP32[i5 >> 2] | 0) - i1 | 0; i1 = _realloc(i2 ? i1 : 0, i3) | 0; if (!i2) { i2 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = i1; if (i2) { FUNCTION_TABLE_vi[HEAP32[i8 >> 2] & 255](i2); i1 = HEAP32[i4 >> 2] | 0; } } else HEAP32[i4 >> 2] = i1; HEAP32[i8 >> 2] = 179; HEAP32[i5 >> 2] = i1 + i6; HEAP32[i7 >> 2] = (HEAP32[i4 >> 2] | 0) + i3; return; } function _fflush(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0; do if (i2) { if ((HEAP32[i2 + 76 >> 2] | 0) <= -1) { i1 = ___fflush_unlocked(i2) | 0; break; } i3 = (___lockfile(i2) | 0) == 0; i1 = ___fflush_unlocked(i2) | 0; if (!i3) ___unlockfile(i2); } else { if (!(HEAP32[864] | 0)) i1 = 0; else i1 = _fflush(HEAP32[864] | 0) | 0; ___lock(45896); i2 = HEAP32[11473] | 0; if (i2) do { if ((HEAP32[i2 + 76 >> 2] | 0) > -1) i3 = ___lockfile(i2) | 0; else i3 = 0; if ((HEAP32[i2 + 20 >> 2] | 0) >>> 0 > (HEAP32[i2 + 28 >> 2] | 0) >>> 0) i1 = ___fflush_unlocked(i2) | 0 | i1; if (i3 | 0) ___unlockfile(i2); i2 = HEAP32[i2 + 56 >> 2] | 0; } while ((i2 | 0) != 0); ___unlock(45896); } while (0); return i1 | 0; } function __ZN6cashew12ValueBuilder10makeReturnENS_3RefE(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 8 | 0; i6 = i5 + 4 | 0; i3 = i5; i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45076) | 0; HEAP32[i6 >> 2] = i7; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i1) | 0; if (__ZN6cashew3RefntEv(i2) | 0) { i7 = __ZN6cashew12ValueBuilder8makeNullEv() | 0; HEAP32[i3 >> 2] = i7; } else HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; i7 = __ZN6cashew5Value9push_backENS_3RefE(i4, i1) | 0; STACKTOP = i5; return i7 | 0; } function __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEE5flushEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; if (HEAP32[i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0) { __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEE6sentryC2ERS3_(i2, i1); if (HEAP8[i2 >> 0] | 0 ? (i4 = HEAP32[i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0, (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 24 >> 2] & 127](i4) | 0) == -1) : 0) { i4 = i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i4 >> 2] = HEAP32[i4 >> 2] | 1; } __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEE6sentryD2Ev(i2); } STACKTOP = i3; return i1 | 0; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; if (HEAP32[i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0) { __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i2, i1); if (HEAP8[i2 >> 0] | 0 ? (i4 = HEAP32[i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0, (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 24 >> 2] & 127](i4) | 0) == -1) : 0) { i4 = i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i4 >> 2] = HEAP32[i4 >> 2] | 1; } __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i2); } STACKTOP = i3; return i1 | 0; } function _pad(i6, i2, i4, i5, i1) { i6 = i6 | 0; i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; var i3 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 256 | 0; i7 = i8; do if ((i4 | 0) > (i5 | 0) & (i1 & 73728 | 0) == 0) { i1 = i4 - i5 | 0; _memset(i7 | 0, i2 | 0, (i1 >>> 0 > 256 ? 256 : i1) | 0) | 0; i2 = HEAP32[i6 >> 2] | 0; i3 = (i2 & 32 | 0) == 0; if (i1 >>> 0 > 255) { i4 = i4 - i5 | 0; do { if (i3) { ___fwritex(i7, 256, i6) | 0; i2 = HEAP32[i6 >> 2] | 0; } i1 = i1 + -256 | 0; i3 = (i2 & 32 | 0) == 0; } while (i1 >>> 0 > 255); if (i3) i1 = i4 & 255; else break; } else if (!i3) break; ___fwritex(i7, i1, i6) | 0; } while (0); STACKTOP = i8; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseContinueERPcPKc(i1, i5, i2) { i1 = i1 | 0; i5 = i5 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i1 = i4 + 20 | 0; i2 = i4; i3 = i4 + 16 | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i5); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i2, HEAP32[i5 >> 2] | 0); if ((HEAP32[i2 + 12 >> 2] | 0) == 2) { HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + (HEAP32[i2 + 8 >> 2] | 0); HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; } else HEAP32[i3 >> 2] = 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; i5 = __ZN6cashew12ValueBuilder12makeContinueENS_7IStringE(i1) | 0; STACKTOP = i4; return i5 | 0; } function __ZN4wasm16PrintSExpression11visitExportEPNS_6ExportE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i5 = i3; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i1 >> 2] | 0, 31576, 0) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z9printTextRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i1 >> 2] | 0, HEAP32[i2 >> 2] | 0) | 0, 32) | 0; HEAP32[i5 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasm16PrintSExpression9printNameENS_4NameE(i1, i4) | 0, 41) | 0; STACKTOP = i3; return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__construct_nodeIJRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSJ_IJEEEEEENS_10unique_ptrINS_11__tree_nodeIS7_PvEENS_22__tree_node_destructorINSC_ISR_EEEEEEDpOT_(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i5 = __Znwj(40) | 0; HEAP32[i1 >> 2] = i5; HEAP32[i1 + 4 >> 2] = i2 + 4; HEAP32[i5 + 16 >> 2] = HEAP32[HEAP32[i4 >> 2] >> 2]; HEAP32[i5 + 20 >> 2] = 0; HEAP32[i5 + 24 >> 2] = 0; HEAP8[i5 + 28 >> 0] = 0; HEAP32[i5 + 32 >> 2] = 0; HEAP32[i5 + 36 >> 2] = 0; HEAP8[i1 + 8 >> 0] = 1; return; } function __ZNSt3__2plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_PKS6_(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i5 = HEAP8[i3 + 11 >> 0] | 0; i6 = i5 << 24 >> 24 < 0; i5 = i6 ? HEAP32[i3 + 4 >> 2] | 0 : i5 & 255; i1 = _strlen(i4) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcjj(i2, i6 ? HEAP32[i3 >> 2] | 0 : i3, i5, i5 + i1 | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i2, i4, i1) | 0; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_(i1, i9, i8, i4, i5, i6, 39593, 39601) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__210__time_put8__do_putEPwRS1_PK2tmcc(i1, i5, i6, i2, i3, i4) { i1 = i1 | 0; i5 = i5 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 128 | 0; i10 = i7 + 16 | 0; i11 = i7 + 12 | 0; i8 = i7; i9 = i7 + 8 | 0; HEAP32[i11 >> 2] = i10 + 100; __ZNKSt3__210__time_put8__do_putEPcRS1_PK2tmcc(i1, i10, i11, i2, i3, i4); i2 = i8; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i9 >> 2] = i10; i2 = (HEAP32[i6 >> 2] | 0) - i5 >> 2; i1 = _uselocale(HEAP32[i1 >> 2] | 0) | 0; i2 = _mbsrtowcs(i5, i9, i2, i8) | 0; if (i1 | 0) _uselocale(i1) | 0; HEAP32[i6 >> 2] = i5 + (i2 << 2); STACKTOP = i7; return; } function __ZN6cashew12ValueBuilder10makeDoubleEd(d1) { d1 = +d1; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3 + 8 | 0; i6 = i3 + 4 | 0; i5 = i3; i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45112) | 0; HEAP32[i6 >> 2] = i7; HEAP32[i2 >> 2] = HEAP32[i6 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i2) | 0; i6 = __ZN6cashew5Arena5allocEv(45436) | 0; __ZN6cashew5Value4freeEv(i6); HEAP32[i6 >> 2] = 1; HEAPF64[i6 + 8 >> 3] = d1; HEAP32[i5 >> 2] = i6; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; i2 = __ZN6cashew5Value9push_backENS_3RefE(i4, i2) | 0; STACKTOP = i3; return i2 | 0; } function __ZZ11instantiateEN19JSExternalInterface4initERN4wasm6ModuleE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i8; _emscripten_asm_const_ii(14, HEAP32[i2 + 72 >> 2] << 16 | 0) | 0; i3 = HEAP32[i2 + 84 >> 2] | 0; i4 = i7 + 4 | 0; i5 = i7 + 8 | 0; i6 = i7 + 4 | 0; i1 = HEAP32[i2 + 80 >> 2] | 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; __ZN4wasm6Memory7SegmentC2ERKS1_(i7, i1); i2 = HEAP32[i4 >> 2] | 0; _emscripten_asm_const_iiii(15, HEAP32[i7 >> 2] | 0, i2 | 0, (HEAP32[i5 >> 2] | 0) - i2 | 0) | 0; __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i6); i1 = i1 + 16 | 0; } STACKTOP = i8; return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_(i1, i9, i8, i4, i5, i6, 9672, 9704) | 0; STACKTOP = i7; return i6 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseBreakERPcPKc(i1, i5, i2) { i1 = i1 | 0; i5 = i5 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i1 = i4 + 20 | 0; i2 = i4; i3 = i4 + 16 | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i5); __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4FragC2EPc(i2, HEAP32[i5 >> 2] | 0); if ((HEAP32[i2 + 12 >> 2] | 0) == 2) { HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + (HEAP32[i2 + 8 >> 2] | 0); HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; } else HEAP32[i3 >> 2] = 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; i5 = __ZN6cashew12ValueBuilder9makeBreakENS_7IStringE(i1) | 0; STACKTOP = i4; return i5 | 0; } function __ZNSt3__28functionIFPN4wasm4PassEvEEaSEOS5_(i3, i4) { i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i2 = 0, i5 = 0; i5 = i3 + 16 | 0; i1 = HEAP32[i5 >> 2] | 0; if ((i1 | 0) != (i3 | 0)) { if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 255](i1); } else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 255](i1); HEAP32[i5 >> 2] = 0; i1 = i4 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; do if (i2) if ((i2 | 0) == (i4 | 0)) { HEAP32[i5 >> 2] = i3; i5 = HEAP32[i1 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i5 >> 2] | 0) + 12 >> 2] & 255](i5, i3); break; } else { HEAP32[i5 >> 2] = i2; HEAP32[i1 >> 2] = 0; break; } else HEAP32[i5 >> 2] = 0; while (0); return i3 | 0; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSL_SL_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__23mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSJ_IJEEEEEENS_4pairINS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRf(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIfEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRe(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIeEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRd(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIdEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRf(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIfEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRe(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIeEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRd(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIdEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function _scalbn(d2, i1) { d2 = +d2; i1 = i1 | 0; var i3 = 0; if ((i1 | 0) > 1023) { d2 = d2 * 8988465674311579538646525.0e283; i3 = i1 + -1023 | 0; i1 = i1 + -2046 | 0; if ((i3 | 0) > 1023) { d2 = d2 * 8988465674311579538646525.0e283; i1 = (i1 | 0) > 1023 ? 1023 : i1; } else i1 = i3; } else if ((i1 | 0) < -1022) { d2 = d2 * 2.2250738585072014e-308; i3 = i1 + 1022 | 0; i1 = i1 + 2044 | 0; if ((i3 | 0) < -1022) { d2 = d2 * 2.2250738585072014e-308; i1 = (i1 | 0) < -1022 ? -1022 : i1; } else i1 = i3; } i1 = _bitshift64Shl(i1 + 1023 | 0, 0, 52) | 0; i3 = tempRet0; HEAP32[tempDoublePtr >> 2] = i1; HEAP32[tempDoublePtr + 4 >> 2] = i3; return +(d2 * +HEAPF64[tempDoublePtr >> 3]); } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i8 + 4 | 0; i5 = i8; HEAP32[i4 >> 2] = i2; HEAP32[i5 >> 2] = i3; i6 = i1 + 8 | 0; i7 = HEAP32[i6 >> 2] | 0; if (i7 >>> 0 < (HEAP32[i1 + 12 >> 2] | 0) >>> 0) { HEAP32[i7 >> 2] = i2; HEAP32[i7 + 4 >> 2] = i3; HEAP32[i6 >> 2] = i7 + 8; } else __ZNSt3__26vectorIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i1 + 4 | 0, i4, i5); STACKTOP = i8; return; } function __ZNK4wasm7Literal8copysignERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i7 + 16 | 0; i5 = i7; i6 = i2 + 8 | 0; if ((HEAP32[i2 >> 2] | 0) == 3) { i6 = HEAP32[i3 + 8 >> 2] & -2147483648 | HEAP32[i6 >> 2] & 2147483647; HEAP32[i4 >> 2] = 1; HEAP32[i4 + 8 >> 2] = i6; __ZN4wasm7Literal9castToF32Ev(i1, i4); } else { i4 = i6; i2 = HEAP32[i4 >> 2] | 0; i4 = HEAP32[i3 + 8 + 4 >> 2] & -2147483648 | HEAP32[i4 + 4 >> 2] & 2147483647; HEAP32[i5 >> 2] = 2; i6 = i5 + 8 | 0; HEAP32[i6 >> 2] = i2; HEAP32[i6 + 4 >> 2] = i4; __ZN4wasm7Literal9castToF64Ev(i1, i5); } STACKTOP = i7; return; } function __ZNSt3__214__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEED2Ev(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0; i1 = HEAP32[i4 + 4 >> 2] | 0; i2 = i4 + 8 | 0; while (1) { i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (i1 | 0)) break; i3 = i3 + -16 | 0; HEAP32[i2 >> 2] = i3; __ZNSt3__213__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i3); } i1 = HEAP32[i4 >> 2] | 0; if (i1 | 0) __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[HEAP32[i4 + 16 >> 2] >> 2] | 0, i1, (HEAP32[i4 + 12 >> 2] | 0) - i1 | 0); return; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedIjEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedIjEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i8 + 4 | 0; i5 = i8; HEAP32[i4 >> 2] = i2; HEAP32[i5 >> 2] = i3; i6 = i1 + 8 | 0; i7 = HEAP32[i6 >> 2] | 0; if (i7 >>> 0 < (HEAP32[i1 + 12 >> 2] | 0) >>> 0) { HEAP32[i7 >> 2] = i2; HEAP32[i7 + 4 >> 2] = i3; HEAP32[i6 >> 2] = i7 + 8; } else __ZNSt3__26vectorIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i1 + 4 | 0, i4, i5); STACKTOP = i8; return; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRy(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedIyEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRt(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedItEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedImEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRy(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedIyEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRt(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedItEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRm(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedImEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE8pushTaskEPFvPS1_PPNS_10ExpressionEES8_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i8 + 4 | 0; i5 = i8; HEAP32[i4 >> 2] = i2; HEAP32[i5 >> 2] = i3; i6 = i1 + 8 | 0; i7 = HEAP32[i6 >> 2] | 0; if (i7 >>> 0 < (HEAP32[i1 + 12 >> 2] | 0) >>> 0) { HEAP32[i7 >> 2] = i2; HEAP32[i7 + 4 >> 2] = i3; HEAP32[i6 >> 2] = i7 + 8; } else __ZNSt3__26vectorIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEE24__emplace_back_slow_pathIJRPFvPS3_PPNS1_10ExpressionEERSF_EEEvDpOT_(i1 + 4 | 0, i4, i5); STACKTOP = i8; return; } function _atoi(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; while (1) { i4 = HEAP8[i1 >> 0] | 0; i2 = i4 << 24 >> 24; i5 = i1 + 1 | 0; if (!(_isspace(i2) | 0)) break; else i1 = i5; } switch (i2 | 0) { case 45: { i1 = 1; i6 = 5; break; } case 43: { i1 = 0; i6 = 5; break; } default: { i7 = 0; i3 = i1; i1 = i4; } } if ((i6 | 0) == 5) { i7 = i1; i3 = i5; i1 = HEAP8[i5 >> 0] | 0; } i2 = (i1 << 24 >> 24) + -48 | 0; if (i2 >>> 0 < 10) { i1 = 0; do { i3 = i3 + 1 | 0; i1 = (i1 * 10 | 0) - i2 | 0; i2 = (HEAP8[i3 >> 0] | 0) + -48 | 0; } while (i2 >>> 0 < 10); } else i1 = 0; return (i7 | 0 ? i1 : 0 - i1 | 0) | 0; } function __ZNSt3__213__vector_baseINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEENS5_IS9_Lj4096EEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -16 | 0; HEAP32[i3 >> 2] = i4; __ZNSt3__213__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i4); } i4 = HEAP32[i1 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[i1 + 12 >> 2] | 0, i4, (HEAP32[i1 + 8 >> 2] | 0) - i4 | 0); } return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i7, i2, i3, i5, i4) { i1 = i1 | 0; i7 = i7 | 0; i2 = i2 | 0; i3 = i3 | 0; i5 = i5 | 0; i4 = i4 | 0; var i6 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i6 + 4 | 0; i8 = i6; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i5, i4, 4) | 0; if (!(HEAP32[i5 >> 2] & 4)) { if ((i1 | 0) < 69) i1 = i1 + 2e3 | 0; else i1 = (i1 | 0) < 100 ? i1 + 1900 | 0 : i1; HEAP32[i7 >> 2] = i1 + -1900; } STACKTOP = i6; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i7, i2, i3, i5, i4) { i1 = i1 | 0; i7 = i7 | 0; i2 = i2 | 0; i3 = i3 | 0; i5 = i5 | 0; i4 = i4 | 0; var i6 = 0, i8 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i6 + 4 | 0; i8 = i6; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i5, i4, 4) | 0; if (!(HEAP32[i5 >> 2] & 4)) { if ((i1 | 0) < 69) i1 = i1 + 2e3 | 0; else i1 = (i1 | 0) < 100 ? i1 + 1900 | 0 : i1; HEAP32[i7 >> 2] = i1 + -1900; } STACKTOP = i6; return; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRx(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__do_get_signedIxEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRl(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__do_get_signedIlEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRx(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__do_get_signedIxEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRl(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0; i7 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i8 = i7 + 12 | 0; i9 = i7 + 8 | 0; i11 = i7 + 4 | 0; i10 = i7; HEAP32[i11 >> 2] = HEAP32[i2 >> 2]; HEAP32[i10 >> 2] = HEAP32[i3 >> 2]; HEAP32[i9 >> 2] = HEAP32[i11 >> 2]; HEAP32[i8 >> 2] = HEAP32[i10 >> 2]; i6 = __ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__do_get_signedIlEES4_S4_S4_RNS_8ios_baseERjRT_(i1, i9, i8, i4, i5, i6) | 0; STACKTOP = i7; return i6 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE10parseWhileERPcPKc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 12 | 0; i6 = i4 + 8 | 0; i8 = i4 + 4 | 0; i7 = i4; i9 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERPc(i1, i2) | 0; i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i1, i2, i3) | 0; HEAP32[i8 >> 2] = i9; HEAP32[i7 >> 2] = i3; HEAP32[i6 >> 2] = HEAP32[i8 >> 2]; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; i3 = __ZN6cashew12ValueBuilder9makeWhileENS_3RefES1_(i6, i5) | 0; STACKTOP = i4; return i3 | 0; } function __ZN4wasm6getSigEPKNS_12FunctionTypeE(i4, i2) { i4 = i4 | 0; i2 = i2 | 0; var i1 = 0, i3 = 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i4 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i4, __ZN4wasm6getSigENS_8WasmTypeE(HEAP32[i2 + 4 >> 2] | 0) | 0); i3 = HEAP32[i2 + 12 >> 2] | 0; i1 = HEAP32[i2 + 8 >> 2] | 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i4, __ZN4wasm6getSigENS_8WasmTypeE(HEAP32[i1 >> 2] | 0) | 0); i1 = i1 + 4 | 0; } return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i1 = i2 + 4 | 0; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_SK_SK_(i2, i3, HEAP32[i1 >> 2] | 0, i1) | 0; if ((i2 | 0) != (i1 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i3, i2 + 16 | 0) | 0) : 0) i1 = i2; return i1 | 0; } function __ZN4wasm17WasmBinaryBuilder18processExpressionsEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i8; i4 = i2 + 100 | 0; i5 = i2 + 104 | 0; i6 = i2 + 96 | 0; while (1) { i1 = __ZN4wasm17WasmBinaryBuilder14readExpressionERPNS_10ExpressionE(i2, i3) | 0; i7 = HEAP32[i3 >> 2] | 0; if (!i7) break; i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (HEAP32[i5 >> 2] | 0)) __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_(i6, i3); else { HEAP32[i1 >> 2] = i7; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4; } } HEAP32[i2 + 108 >> 2] = i1; STACKTOP = i8; return; } function __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEE6sentryD2Ev(i1) { i1 = i1 | 0; var i2 = 0; i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i2 = i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) | 0; if ((((HEAP32[i2 + 24 >> 2] | 0 ? (HEAP32[i2 + 16 >> 2] | 0) == 0 : 0) ? HEAP32[i2 + 4 >> 2] & 8192 | 0 : 0) ? !(__ZSt18uncaught_exceptionv() | 0) : 0) ? (i2 = HEAP32[i1 >> 2] | 0, i2 = HEAP32[i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0, (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i2) | 0) == -1) : 0) { i2 = HEAP32[i1 >> 2] | 0; i2 = i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i2 >> 2] = HEAP32[i2 >> 2] | 1; } return; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev(i1) { i1 = i1 | 0; var i2 = 0; i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; i2 = i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) | 0; if ((((HEAP32[i2 + 24 >> 2] | 0 ? (HEAP32[i2 + 16 >> 2] | 0) == 0 : 0) ? HEAP32[i2 + 4 >> 2] & 8192 | 0 : 0) ? !(__ZSt18uncaught_exceptionv() | 0) : 0) ? (i2 = HEAP32[i1 >> 2] | 0, i2 = HEAP32[i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) + 24 >> 2] | 0, (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 127](i2) | 0) == -1) : 0) { i2 = HEAP32[i1 >> 2] | 0; i2 = i2 + (HEAP32[(HEAP32[i2 >> 2] | 0) + -12 >> 2] | 0) + 16 | 0; HEAP32[i2 >> 2] = HEAP32[i2 >> 2] | 1; } return; } function __ZNSt3__23mapIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S5_EEEEEixERSA_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSJ_IJEEEEEENS_4pairINS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__214__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE(i1, i3, i2) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; var i4 = 0; L1 : do switch ((HEAP32[i2 + 4 >> 2] & 176) << 24 >> 24) { case 16: { i2 = HEAP8[i1 >> 0] | 0; switch (i2 << 24 >> 24) { case 43: case 45: { i1 = i1 + 1 | 0; break L1; } default: {} } if ((i3 - i1 | 0) > 1 & i2 << 24 >> 24 == 48) { switch (HEAP8[i1 + 1 >> 0] | 0) { case 88: case 120: break; default: { i4 = 7; break L1; } } i1 = i1 + 2 | 0; } else i4 = 7; break; } case 32: { i1 = i3; break; } default: i4 = 7; } while (0); return i1 | 0; } function __ZN4wasm6getSigEPNS_8FunctionE(i4, i2) { i4 = i4 | 0; i2 = i2 | 0; var i1 = 0, i3 = 0; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i4 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i4, __ZN4wasm6getSigENS_8WasmTypeE(HEAP32[i2 + 4 >> 2] | 0) | 0); i3 = HEAP32[i2 + 12 >> 2] | 0; i1 = HEAP32[i2 + 8 >> 2] | 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i4, __ZN4wasm6getSigENS_8WasmTypeE(HEAP32[i1 >> 2] | 0) | 0); i1 = i1 + 4 | 0; } return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__211__stdoutbufIwEC2EP8_IO_FILEP11__mbstate_t(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i4 + 4 | 0; i5 = i4; __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEEC2Ev(i1); HEAP32[i1 >> 2] = 7712; HEAP32[i1 + 32 >> 2] = i2; __ZNSt3__26localeC2ERKS0_(i6, i1 + 4 | 0); HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 49276) | 0; __ZNSt3__26localeD2Ev(i5); HEAP32[i1 + 36 >> 2] = i2; HEAP32[i1 + 40 >> 2] = i3; i3 = (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i2) | 0) & 1; HEAP8[i1 + 44 >> 0] = i3; STACKTOP = i4; return; } function __ZNSt3__211__stdoutbufIcEC2EP8_IO_FILEP11__mbstate_t(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i4 + 4 | 0; i5 = i4; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1); HEAP32[i1 >> 2] = 7776; HEAP32[i1 + 32 >> 2] = i2; __ZNSt3__26localeC2ERKS0_(i6, i1 + 4 | 0); HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i5, 49268) | 0; __ZNSt3__26localeD2Ev(i5); HEAP32[i1 + 36 >> 2] = i2; HEAP32[i1 + 40 >> 2] = i3; i3 = (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i2) | 0) & 1; HEAP8[i1 + 44 >> 0] = i3; STACKTOP = i4; return; } function __Z14finalizeModulev() { var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i5 + 4 | 0; i3 = i5; i1 = _emscripten_asm_const_i(0) | 0; if (i1 & 65535 | 0) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 12693) | 0; _exit(1); } i4 = HEAP32[11250] | 0; __ZN4wasm7AddressC2Ey(i2, i1 >>> 16, 0); HEAP32[i4 + 72 >> 2] = HEAP32[i2 >> 2]; i4 = HEAP32[11250] | 0; HEAP32[i3 >> 2] = HEAP32[11432]; HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; if (!(__ZN4wasm6Module11checkExportENS_4NameE(i4, i2) | 0)) i1 = HEAP32[(HEAP32[11250] | 0) + 72 >> 2] | 0; else i1 = 65535; HEAP32[i4 + 76 >> 2] = i1; STACKTOP = i5; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 + -1 | 0) >>> 0 < 12 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 + -1 | 0) >>> 0 < 12 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZN4wasm17WasmBinaryBuilder11verifyInt32Ei(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i4; if ((__ZN4wasm17WasmBinaryBuilder8getInt32Ev(i1) | 0) == (i2 | 0)) { STACKTOP = i4; return; } else { i4 = ___cxa_allocate_exception(20) | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 18919, 16); i2 = HEAP32[i1 + 16 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i4, i3); HEAP32[i4 + 12 >> 2] = 0; HEAP32[i4 + 16 >> 2] = i2; ___cxa_throw(i4 | 0, 8, 154); } } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE4findIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i1 = i2 + 4 | 0; i2 = __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_SK_SK_(i2, i3, HEAP32[i1 >> 2] | 0, i1) | 0; if ((i2 | 0) != (i1 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i3, i2 + 16 | 0) | 0) : 0) i1 = i2; return i1 | 0; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 + -1 | 0) >>> 0 < 31 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 3) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 366 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 + -1 | 0) >>> 0 < 31 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 3) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 366 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSI_SI_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0; if (i4 >>> 0 > 1073741807) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i2); do if (i4 >>> 0 >= 2) { i5 = i4 + 4 & -4; if (i5 >>> 0 > 1073741823) ___assert_fail(41459, 41496, 1734, 41599); else { i1 = __Znwj(i5 << 2) | 0; HEAP32[i2 >> 2] = i1; HEAP32[i2 + 8 >> 2] = i5 | -2147483648; HEAP32[i2 + 4 >> 2] = i4; break; } } else { HEAP8[i2 + 8 + 3 >> 0] = i4; i1 = i2; } while (0); __ZNSt3__211char_traitsIwE4copyEPwPKwj(i1, i3, i4) | 0; HEAP32[i1 + (i4 << 2) >> 2] = 0; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 13 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1 + -1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 13 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1 + -1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZN4wasm13WasmValidator4failEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i4 + 4 | 0; i3 = i4; i1 = i1 + 16 | 0; if (!(HEAP32[i1 >> 2] | 0)) __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 14831) | 0; else { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 14793) | 0; HEAP32[i3 >> 2] = HEAP32[HEAP32[i1 >> 2] >> 2]; HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(46772, i2) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 14828) | 0; } STACKTOP = i4; return 46772; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEjw(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0; if (i3 >>> 0 > 1073741807) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i2); do if (i3 >>> 0 >= 2) { i5 = i3 + 4 & -4; if (i5 >>> 0 > 1073741823) ___assert_fail(41459, 41496, 1734, 41599); else { i1 = __Znwj(i5 << 2) | 0; HEAP32[i2 >> 2] = i1; HEAP32[i2 + 8 >> 2] = i5 | -2147483648; HEAP32[i2 + 4 >> 2] = i3; break; } } else { HEAP8[i2 + 8 + 3 >> 0] = i3; i1 = i2; } while (0); __ZNSt3__211char_traitsIwE6assignEPwjw(i1, i3, i4) | 0; HEAP32[i1 + (i3 << 2) >> 2] = 0; return; } function __ZN6cashew12ValueBuilder10makeStringENS_7IStringE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i2 + 8 | 0; i6 = i2 + 4 | 0; i5 = i2; i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45132) | 0; HEAP32[i6 >> 2] = i7; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0; i1 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i1) | 0; HEAP32[i5 >> 2] = i1; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0; STACKTOP = i2; return i1 | 0; } function __ZNSt3__2plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_S6_(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = HEAP8[i3 + 11 >> 0] | 0; i5 = i1 << 24 >> 24 < 0; i1 = i5 ? HEAP32[i3 + 4 >> 2] | 0 : i1 & 255; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcjj(i2, i5 ? HEAP32[i3 >> 2] | 0 : i3, i1, i1 + 1 | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc(i2, i4); return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 1) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 7 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 61 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 60 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 1) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 7 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 61 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 60 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZN6cashew12ValueBuilder8makeNameENS_7IStringE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i2 + 8 | 0; i6 = i2 + 4 | 0; i5 = i2; i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45056) | 0; HEAP32[i6 >> 2] = i7; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0; i1 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i1) | 0; HEAP32[i5 >> 2] = i1; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0; STACKTOP = i2; return i1 | 0; } function __ZN4wasm7Element4listEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; if (!(HEAP8[i1 >> 0] | 0)) { i3 = ___cxa_allocate_exception(20) | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i2, 17221, 13); i4 = HEAP32[i1 + 28 >> 2] | 0; i1 = HEAP32[i1 + 32 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i3, i2); HEAP32[i3 + 12 >> 2] = i4; HEAP32[i3 + 16 >> 2] = i1; ___cxa_throw(i3 | 0, 8, 154); } else { STACKTOP = i3; return i1 + 4 | 0; } return 0; } function __ZN4wasm22SExpressionWasmBuilder14makeThenOrElseERNS_7ElementE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i2 + 4 >> 2] | 0) | 0; i1 = __ZN4wasm7ElementixEj(i3, 1) | 0; i5 = i4 + 12 | 0; i1 = (HEAP8[i1 >> 0] | 0) == 0 ? 2 : 1; while (1) { i6 = (__ZN4wasm7Element4listEv(i3) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i6 >> 2] | 0) >>> 0) break; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i5, __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i2, __ZN4wasm7ElementixEj(i3, i1) | 0) | 0); i1 = i1 + 1 | 0; } __ZN4wasm5Block8finalizeEv(i4); return i4 | 0; } function _frexp(d1, i5) { d1 = +d1; i5 = i5 | 0; var i2 = 0, i3 = 0, i4 = 0; HEAPF64[tempDoublePtr >> 3] = d1; i2 = HEAP32[tempDoublePtr >> 2] | 0; i3 = HEAP32[tempDoublePtr + 4 >> 2] | 0; i4 = _bitshift64Lshr(i2 | 0, i3 | 0, 52) | 0; switch (i4 & 2047) { case 0: { if (d1 != 0.0) { d1 = +_frexp(d1 * 18446744073709551616.0, i5); i2 = (HEAP32[i5 >> 2] | 0) + -64 | 0; } else i2 = 0; HEAP32[i5 >> 2] = i2; break; } case 2047: break; default: { HEAP32[i5 >> 2] = (i4 & 2047) + -1022; HEAP32[tempDoublePtr >> 2] = i2; HEAP32[tempDoublePtr + 4 >> 2] = i3 & -2146435073 | 1071644672; d1 = +HEAPF64[tempDoublePtr >> 3]; } } return +d1; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 24 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 2) | 0; i2 = HEAP32[i7 >> 2] | 0; if ((i1 | 0) < 24 & (i2 & 4 | 0) == 0) HEAP32[i6 >> 2] = i1; else HEAP32[i7 >> 2] = i2 | 4; STACKTOP = i5; return; } function __ZN4wasm22SExpressionWasmBuilder10makeSelectERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = __ZN10MixedArena5allocIN4wasm6SelectEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i4 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i3 + 8 >> 2] = i4; i4 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 2) | 0) | 0; HEAP32[i3 + 12 >> 2] = i4; i2 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 3) | 0) | 0; HEAP32[i3 + 16 >> 2] = i2; __ZN4wasm6Select8finalizeEv(i3); return i3 | 0; } function _ungetc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; do if ((i1 | 0) != -1) { if ((HEAP32[i2 + 76 >> 2] | 0) > -1) i5 = ___lockfile(i2) | 0; else i5 = 0; if (!((HEAP32[i2 + 8 >> 2] | 0) == 0 ? (___toread(i2) | 0) != 0 : 0)) i6 = 6; if ((i6 | 0) == 6 ? (i3 = i2 + 4 | 0, i4 = HEAP32[i3 >> 2] | 0, i4 >>> 0 > ((HEAP32[i2 + 44 >> 2] | 0) + -8 | 0) >>> 0) : 0) { i6 = i4 + -1 | 0; HEAP32[i3 >> 2] = i6; HEAP8[i6 >> 0] = i1; HEAP32[i2 >> 2] = HEAP32[i2 >> 2] & -17; if (!i5) break; ___unlockfile(i2); break; } if (i5) { ___unlockfile(i2); i1 = -1; } else i1 = -1; } else i1 = -1; while (0); return i1 | 0; } function __ZN4wasm6ThreadC2Ev(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5; HEAP32[i4 + 104 >> 2] = 0; i2 = i4; i3 = i2 + 80 | 0; do { HEAP32[i2 >> 2] = 0; i2 = i2 + 4 | 0; } while ((i2 | 0) < (i3 | 0)); HEAP8[i4 + 80 >> 0] = 0; __ZN4wasm10ThreadPool3getEv() | 0; if (__ZN4wasm10ThreadPool9isRunningEv() | 0) ___assert_fail(34349, 34381, 49, 34413); i3 = __Znwj(4) | 0; HEAP32[i1 >> 2] = i4; __ZNSt3__26threadC2IRFvPvEJPN4wasm6ThreadEEvEEOT_DpOT0_(i3, 164, i1); i1 = HEAP32[i4 >> 2] | 0; HEAP32[i4 >> 2] = i3; if (i1 | 0) { __ZNSt3__26threadD2Ev(i1); __ZdlPv(i1); } STACKTOP = i5; return; } function __ZN4wasm13WasmValidator13visitFunctionEPNS_8FunctionE(i5, i1) { i5 = i5 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i6 = 0; i6 = i1 + 4 | 0; i3 = HEAP32[i6 >> 2] | 0; if (i3) { i4 = i1 + 36 | 0; i1 = HEAP32[i4 >> 2] | 0; i2 = HEAP32[i1 + 4 >> 2] | 0; if ((i2 | 0) != 5) __ZN4wasm13WasmValidator13shouldBeEqualIPNS_10ExpressionENS_8WasmTypeEEEbT0_S5_T_PKc(i5, i3, i2, i1, 16236) | 0; i1 = i5 + 40 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) != 5) __ZN4wasm13WasmValidator13shouldBeEqualIPNS_10ExpressionENS_8WasmTypeEEEbT0_S5_T_PKc(i5, HEAP32[i6 >> 2] | 0, i2, HEAP32[i4 >> 2] | 0, 16287) | 0; } else i1 = i5 + 40 | 0; HEAP32[i1 >> 2] = 5; return; } function __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSJ_SJ_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__23mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE13parseParennedERPc(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i3); i2 = HEAP32[i3 >> 2] | 0; if ((HEAP8[i2 >> 0] | 0) != 40) ___assert_fail(28704, 28546, 899, 28912); HEAP32[i3 >> 2] = i2 + 1; i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i1, i3, 42358) | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i3); i2 = HEAP32[i3 >> 2] | 0; if ((HEAP8[i2 >> 0] | 0) == 41) { HEAP32[i3 >> 2] = i2 + 1; return i1 | 0; } else ___assert_fail(28926, 28546, 903, 28912); return 0; } function __ZN4wasm12PassRegistry8PassInfoaSEOS1_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i1 = i2 + 11 | 0; if ((HEAP8[i1 >> 0] | 0) < 0) { HEAP8[HEAP32[i2 >> 2] >> 0] = 0; HEAP32[i2 + 4 >> 2] = 0; } else { HEAP8[i2 >> 0] = 0; HEAP8[i1 >> 0] = 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj(i2, 0); HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } __ZNSt3__28functionIFPN4wasm4PassEvEEaSEOS5_(i2 + 16 | 0, i3 + 16 | 0) | 0; return i2 | 0; } function __ZNSt3__23mapIjNS_6vectorIPN4wasm4CallENS_9allocatorIS4_EEEENS_4lessIjEENS5_INS_4pairIKjS7_EEEEEixERSB_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE25__emplace_unique_key_argsIjJRKNS_21piecewise_construct_tENS_5tupleIJRKjEEENSK_IJEEEEEENS_4pairINS_15__tree_iteratorIS9_PNS_11__tree_nodeIS9_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZN4wasm10ThreadPool11getNumCoresEv() { var i1 = 0, i2 = 0, i3 = 0, i4 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i4; i2 = __ZNSt3__26thread20hardware_concurrencyEv() | 0; i3 = _getenv(34489) | 0; if (!i3) i1 = i2 >>> 0 > 1 ? i2 : 1; else { HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, i3, _strlen(i3) | 0); i3 = __ZNSt3__24stoiERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPji(i1, 0, 10) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); i1 = i3; } STACKTOP = i4; return i1 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZN4wasm6ThreadD2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; __ZN4wasm10ThreadPool3getEv() | 0; if (__ZN4wasm10ThreadPool9isRunningEv() | 0) ___assert_fail(34349, 34381, 54, 34405); i2 = i1 + 4 | 0; __ZNSt3__25mutex4lockEv(i2); HEAP8[i1 + 80 >> 0] = 1; i3 = i1 + 32 | 0; __ZNSt3__218condition_variable10notify_oneEv(i3); __ZNSt3__25mutex6unlockEv(i2); __ZNSt3__26thread4joinEv(HEAP32[i1 >> 2] | 0); __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEED2Ev(i1 + 88 | 0); __ZNSt3__218condition_variableD2Ev(i3); __ZNSt3__25mutexD2Ev(i2); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) { __ZNSt3__26threadD2Ev(i2); __ZdlPv(i2); } return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6GlobalEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSH_SH_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__214__split_bufferINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEERNS8_ISA_EEEC2EjjSC_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 357913941) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 * 12 | 0) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 * 12 | 0) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 * 12 | 0); return; } function __ZNSt3__214__split_bufferINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEERNS8_ISD_EEEC2EjjSF_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 214748364) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 * 20 | 0) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 * 20 | 0) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 * 20 | 0); return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i2) return; else { __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, HEAP32[i2 >> 2] | 0); __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, HEAP32[i2 + 4 >> 2] | 0); __ZdlPv(i2); return; } } function __ZNSt3__23mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZN4wasm3LEBIjhE4readENSt3__28functionIFhvEEE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0; HEAP32[i2 >> 2] = 0; i1 = 0; while (1) { i4 = (__ZNKSt3__28functionIFhvEEclEv(i3) | 0) & 255; i5 = i4 & 127; if ((((i1 | 0) == 0 ? 127 : (1 << 32 - i1) + 127 | 0) & i5 | 0) != (i5 | 0)) { i1 = 3; break; } HEAP32[i2 >> 2] = HEAP32[i2 >> 2] | i5 << i1; if (!(i4 & 128)) { i1 = 7; break; } i1 = i1 + 7 | 0; if (i1 >>> 0 >= 32) { i1 = 6; break; } } if ((i1 | 0) == 3) ___assert_fail(19019, 18854, 99, 18872); else if ((i1 | 0) == 6) ___assert_fail(19096, 18854, 104, 18872); else if ((i1 | 0) == 7) return; } function __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSH_IJEEEEEENS_4pairINS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEED2Ev(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0; i1 = HEAP32[i4 + 4 >> 2] | 0; i2 = i4 + 8 | 0; while (1) { i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (i1 | 0)) break; i3 = i3 + -16 | 0; HEAP32[i2 >> 2] = i3; __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i3); } i1 = HEAP32[i4 >> 2] | 0; if (i1 | 0) __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[HEAP32[i4 + 16 >> 2] >> 2] | 0, i1, (HEAP32[i4 + 12 >> 2] | 0) - i1 | 0); return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i2) return; else { __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE(i1, HEAP32[i2 >> 2] | 0); __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE(i1, HEAP32[i2 + 4 >> 2] | 0); __ZdlPv(i2); return; } } function __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixEOS2_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJOS3_EEENSH_IJEEEEEENS_4pairINS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__23mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__23mapIN4wasm4NameEPNS1_6GlobalENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6GlobalEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__23mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZN4wasm22SExpressionWasmBuilder13makeSetGlobalERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i3 = __ZN10MixedArena5allocIN4wasm9SetGlobalEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i5 = __ZN4wasm22SExpressionWasmBuilder14getGlobalIndexERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = i5; i2 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 2) | 0) | 0; HEAP32[i3 + 12 >> 2] = i2; i2 = (__ZN4wasm6Module9getGlobalEj(HEAP32[i1 >> 2] | 0, HEAP32[i4 >> 2] | 0) | 0) + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i2 >> 2]; return i3 | 0; } function ___divdi3(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0; i10 = i2 >> 31 | ((i2 | 0) < 0 ? -1 : 0) << 1; i9 = ((i2 | 0) < 0 ? -1 : 0) >> 31 | ((i2 | 0) < 0 ? -1 : 0) << 1; i6 = i4 >> 31 | ((i4 | 0) < 0 ? -1 : 0) << 1; i5 = ((i4 | 0) < 0 ? -1 : 0) >> 31 | ((i4 | 0) < 0 ? -1 : 0) << 1; i8 = _i64Subtract(i10 ^ i1 | 0, i9 ^ i2 | 0, i10 | 0, i9 | 0) | 0; i7 = tempRet0; i1 = i6 ^ i10; i2 = i5 ^ i9; return _i64Subtract((___udivmoddi4(i8, i7, _i64Subtract(i6 ^ i3 | 0, i5 ^ i4 | 0, i6 | 0, i5 | 0) | 0, tempRet0, 0) | 0) ^ i1 | 0, tempRet0 ^ i2 | 0, i1 | 0, i2 | 0) | 0; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSF_SF_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__23mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixEOS2_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJOS3_EEENSI_IJEEEEEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__213__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -16 | 0; HEAP32[i3 >> 2] = i4; __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i4); } i4 = HEAP32[i1 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[i1 + 12 >> 2] | 0, i4, (HEAP32[i1 + 8 >> 2] | 0) - i4 | 0); } return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj5EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP8[i1 + 11 >> 0] = 4; i2 = HEAPU8[i2 >> 0] | HEAPU8[i2 + 1 >> 0] << 8 | HEAPU8[i2 + 2 >> 0] << 16 | HEAPU8[i2 + 3 >> 0] << 24; HEAP8[i1 >> 0] = i2; HEAP8[i1 + 1 >> 0] = i2 >> 8; HEAP8[i1 + 2 >> 0] = i2 >> 16; HEAP8[i1 + 3 >> 0] = i2 >> 24; HEAP8[i1 + 4 >> 0] = 0; i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSG_SG_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj6EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP8[i1 + 11 >> 0] = 5; HEAP8[i1 >> 0] = HEAP8[i2 >> 0] | 0; HEAP8[i1 + 1 >> 0] = HEAP8[i2 + 1 >> 0] | 0; HEAP8[i1 + 2 >> 0] = HEAP8[i2 + 2 >> 0] | 0; HEAP8[i1 + 3 >> 0] = HEAP8[i2 + 3 >> 0] | 0; HEAP8[i1 + 4 >> 0] = HEAP8[i2 + 4 >> 0] | 0; HEAP8[i1 + 5 >> 0] = 0; i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__27codecvtIwc11__mbstate_tE9do_lengthERS1_PKcS5_j(i1, i7, i2, i8, i9) { i1 = i1 | 0; i7 = i7 | 0; i2 = i2 | 0; i8 = i8 | 0; i9 = i9 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i10 = 0; i10 = i8; i6 = i1 + 8 | 0; i4 = 0; i5 = 0; L1 : while (1) { if ((i2 | 0) == (i8 | 0) | i4 >>> 0 >= i9 >>> 0) break; i3 = _uselocale(HEAP32[i6 >> 2] | 0) | 0; i1 = _mbrlen(i2, i10 - i2 | 0, i7) | 0; if (i3 | 0) _uselocale(i3) | 0; switch (i1 | 0) { case -2: case -1: break L1; case 0: { i2 = i2 + 1 | 0; i1 = 1; break; } default: i2 = i2 + i1 | 0; } i4 = i4 + 1 | 0; i5 = i1 + i5 | 0; } return i5 | 0; } function __ZN4wasm10PassRunner3addINS_7PrinterEPNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEEEvT0_(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i6; i5 = __Znwj(20) | 0; __ZN4wasm4PassC2Ev(i5); HEAP32[i5 >> 2] = 3060; HEAP32[i5 + 16 >> 2] = i1; HEAP32[i4 >> 2] = i5; i1 = i3 + 12 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i3 + 16 >> 2] | 0) >>> 0) { HEAP32[i2 >> 2] = i5; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4; } else __ZNSt3__26vectorIPN4wasm4PassENS_9allocatorIS3_EEE21__push_back_slow_pathIS3_EEvOT_(i3 + 8 | 0, i4); STACKTOP = i6; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSF_SF_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZN4wasm10TypeSeeker10visitBreakEPNS_5BreakE(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6; if ((HEAP32[i1 + 8 >> 2] | 0) == (HEAP32[i4 + 28 >> 2] | 0)) { i1 = HEAP32[i1 + 12 >> 2] | 0; if (!i1) i1 = 0; else i1 = HEAP32[i1 + 4 >> 2] | 0; HEAP32[i5 >> 2] = i1; i2 = i4 + 36 | 0; i3 = HEAP32[i2 >> 2] | 0; if (i3 >>> 0 < (HEAP32[i4 + 40 >> 2] | 0) >>> 0) { HEAP32[i3 >> 2] = i1; HEAP32[i2 >> 2] = i3 + 4; } else __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_(i4 + 32 | 0, i5); } STACKTOP = i6; return; } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE13shrink_to_fitEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i2 = i4; i5 = HEAP32[i1 >> 2] | 0; i3 = (HEAP32[i1 + 4 >> 2] | 0) - i5 | 0; if (((HEAP32[i1 + 8 >> 2] | 0) - i5 | 0) >>> 0 > i3 >>> 0) { i5 = i3 >> 2; __ZNSt3__214__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEEC2EjjS5_(i2, i5, i5, i1 + 8 | 0); __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i2); __ZNSt3__214__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEED2Ev(i2); } STACKTOP = i4; return; } function __ZNSt3__24stoiERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPji(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4; HEAP32[i5 >> 2] = 0; HEAP32[i5 + 4 >> 2] = 0; HEAP32[i5 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i5, 41608, 4); i3 = __ZNSt3__212_GLOBAL__N_117as_integer_helperIlNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPFlPKcPPciEEET_RKS7_RKT0_PjiT1_(i5, i1, i2, i3) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i5); STACKTOP = i4; return i3 | 0; } function __ZN4wasm16PrintSExpression14visitGetGlobalEPNS_9GetGlobalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i6 = i3; i5 = __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i1 >> 2] | 0, 33056, 0) | 0; i2 = __ZN4wasm16PrintSExpression15printableGlobalEj(i1, HEAP32[i2 + 8 >> 2] | 0) | 0; HEAP32[i6 >> 2] = i2; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i4) | 0, 41) | 0; STACKTOP = i3; return; } function ___fflush_unlocked(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i2 = i1 + 20 | 0; i7 = i1 + 28 | 0; if ((HEAP32[i2 >> 2] | 0) >>> 0 > (HEAP32[i7 >> 2] | 0) >>> 0 ? (FUNCTION_TABLE_iiii[HEAP32[i1 + 36 >> 2] & 31](i1, 0, 0) | 0, (HEAP32[i2 >> 2] | 0) == 0) : 0) i1 = -1; else { i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; i5 = i1 + 8 | 0; i6 = HEAP32[i5 >> 2] | 0; if (i4 >>> 0 < i6 >>> 0) FUNCTION_TABLE_iiii[HEAP32[i1 + 40 >> 2] & 31](i1, i4 - i6 | 0, 1) | 0; HEAP32[i1 + 16 >> 2] = 0; HEAP32[i7 >> 2] = 0; HEAP32[i2 >> 2] = 0; HEAP32[i5 >> 2] = 0; HEAP32[i3 >> 2] = 0; i1 = 0; } return i1 | 0; } function __ZN4wasm16PrintSExpression13visitGetLocalEPNS_8GetLocalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i6 = i3; i5 = __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i1 >> 2] | 0, 33079, 0) | 0; i2 = __ZN4wasm16PrintSExpression14printableLocalEj(i1, HEAP32[i2 + 8 >> 2] | 0) | 0; HEAP32[i6 >> 2] = i2; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i5, i4) | 0, 41) | 0; STACKTOP = i3; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE4findIS3_EENS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEERKT_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i1 = i2 + 4 | 0; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEERKT_SI_SI_(i2, i3, HEAP32[i1 >> 2] | 0, i1) | 0; if ((i2 | 0) != (i1 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i3, i2 + 16 | 0) | 0) : 0) i1 = i2; return i1 | 0; } function __ZNSt3__215__num_get_floatIfEET_PKcS3_Rj(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var d1 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i8; if ((i2 | 0) == (i3 | 0)) { HEAP32[i4 >> 2] = 4; d1 = 0.0; } else { i6 = ___errno_location() | 0; i7 = HEAP32[i6 >> 2] | 0; HEAP32[i6 >> 2] = 0; d1 = +_strtold_l(i2, i5, __ZNSt3__26__clocEv() | 0); i2 = HEAP32[i6 >> 2] | 0; if (!i2) HEAP32[i6 >> 2] = i7; if ((HEAP32[i5 >> 2] | 0) == (i3 | 0)) { if ((i2 | 0) == 34) HEAP32[i4 >> 2] = 4; } else { HEAP32[i4 >> 2] = 4; d1 = 0.0; } } STACKTOP = i8; return +d1; } function __ZNSt3__215__num_get_floatIeEET_PKcS3_Rj(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var d1 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i8; if ((i2 | 0) == (i3 | 0)) { HEAP32[i4 >> 2] = 4; d1 = 0.0; } else { i6 = ___errno_location() | 0; i7 = HEAP32[i6 >> 2] | 0; HEAP32[i6 >> 2] = 0; d1 = +_strtold_l(i2, i5, __ZNSt3__26__clocEv() | 0); i2 = HEAP32[i6 >> 2] | 0; if (!i2) HEAP32[i6 >> 2] = i7; if ((HEAP32[i5 >> 2] | 0) == (i3 | 0)) { if ((i2 | 0) == 34) HEAP32[i4 >> 2] = 4; } else { HEAP32[i4 >> 2] = 4; d1 = 0.0; } } STACKTOP = i8; return +d1; } function __ZNSt3__215__num_get_floatIdEET_PKcS3_Rj(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var d1 = 0.0, i5 = 0, i6 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i8; if ((i2 | 0) == (i3 | 0)) { HEAP32[i4 >> 2] = 4; d1 = 0.0; } else { i6 = ___errno_location() | 0; i7 = HEAP32[i6 >> 2] | 0; HEAP32[i6 >> 2] = 0; d1 = +_strtold_l(i2, i5, __ZNSt3__26__clocEv() | 0); i2 = HEAP32[i6 >> 2] | 0; if (!i2) HEAP32[i6 >> 2] = i7; if ((HEAP32[i5 >> 2] | 0) == (i3 | 0)) { if ((i2 | 0) == 34) HEAP32[i4 >> 2] = 4; } else { HEAP32[i4 >> 2] = 4; d1 = 0.0; } } STACKTOP = i8; return +d1; } function __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE16__construct_nodeIJRKNS_21piecewise_construct_tENS_5tupleIJRKjEEENSK_IJEEEEEENS_10unique_ptrINS_11__tree_nodeIS9_PvEENS_22__tree_node_destructorINS6_ISS_EEEEEEDpOT_(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i5 = __Znwj(32) | 0; HEAP32[i1 >> 2] = i5; HEAP32[i1 + 4 >> 2] = i2 + 4; HEAP32[i5 + 16 >> 2] = HEAP32[HEAP32[i4 >> 2] >> 2]; HEAP32[i5 + 20 >> 2] = 0; HEAP32[i5 + 24 >> 2] = 0; HEAP32[i5 + 28 >> 2] = 0; HEAP8[i1 + 8 >> 0] = 1; return; } function _strtox_17(i6, i7, i1) { i6 = i6 | 0; i7 = i7 | 0; i1 = i1 | 0; var d2 = 0.0, i3 = 0, i4 = 0, i5 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 112 | 0; i5 = i8; i3 = i5; i4 = i3 + 112 | 0; do { HEAP32[i3 >> 2] = 0; i3 = i3 + 4 | 0; } while ((i3 | 0) < (i4 | 0)); i3 = i5 + 4 | 0; HEAP32[i3 >> 2] = i6; i4 = i5 + 8 | 0; HEAP32[i4 >> 2] = -1; HEAP32[i5 + 44 >> 2] = i6; HEAP32[i5 + 76 >> 2] = -1; ___shlim(i5, 0); d2 = +___floatscan(i5, i1, 1); i1 = (HEAP32[i3 >> 2] | 0) - (HEAP32[i4 >> 2] | 0) + (HEAP32[i5 + 108 >> 2] | 0) | 0; if (i7 | 0) HEAP32[i7 >> 2] = i1 | 0 ? i6 + i1 | 0 : i6; STACKTOP = i8; return +d2; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i1 = i2 + 4 | 0; i2 = __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_SJ_SJ_(i2, i3, HEAP32[i1 >> 2] | 0, i1) | 0; if ((i2 | 0) != (i1 | 0) ? !(__ZNK6cashew7IStringltERKS0_(i3, i2 + 16 | 0) | 0) : 0) i1 = i2; return i1 | 0; } function __ZNSt3__214__split_bufferINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEERNS8_ISD_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -20 | 0; HEAP32[i3 >> 2] = i4; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i4); } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZN6cashew12ValueBuilder7makeVarEb(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i2 + 8 | 0; i5 = i2 + 4 | 0; i4 = i2; i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45060) | 0; HEAP32[i5 >> 2] = i6; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i4 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; STACKTOP = i2; return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder12makeSetLocalERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i3 = __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i5 = __ZN4wasm22SExpressionWasmBuilder13getLocalIndexERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = i5; i2 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 2) | 0) | 0; HEAP32[i3 + 12 >> 2] = i2; i2 = __ZN4wasm8Function12getLocalTypeEj(HEAP32[i1 + 44 >> 2] | 0, HEAP32[i4 >> 2] | 0) | 0; HEAP32[i3 + 4 >> 2] = i2; return i3 | 0; } function __ZN4wasm12FunctionType20structuralComparisonERS0_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; L1 : do if ((HEAP32[i1 + 4 >> 2] | 0) == (HEAP32[i2 + 4 >> 2] | 0) ? (i5 = HEAP32[i1 + 8 >> 2] | 0, i3 = (HEAP32[i1 + 12 >> 2] | 0) - i5 | 0, i1 = HEAP32[i2 + 8 >> 2] | 0, i4 = i1, i5, (i3 | 0) == ((HEAP32[i2 + 12 >> 2] | 0) - i1 | 0)) : 0) { i2 = i3 >> 2; i1 = 0; while (1) { if (i1 >>> 0 >= i2 >>> 0) { i1 = 1; break L1; } if ((HEAP32[i5 + (i1 << 2) >> 2] | 0) == (HEAP32[i4 + (i1 << 2) >> 2] | 0)) i1 = i1 + 1 | 0; else { i1 = 0; break; } } } else i1 = 0; while (0); return i1 | 0; } function __ZNSt3__23mapIN6cashew7IStringEiNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_iEEEEEixERS7_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEiEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSG_IJEEEEEENS_4pairINS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZNSt3__213__vector_baseINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -20 | 0; HEAP32[i3 >> 2] = i4; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i4); } __ZdlPv(HEAP32[i1 >> 2] | 0); } return; } function __ZN6cashew12ValueBuilder12makeToplevelEv() { var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i2 + 8 | 0; i5 = i2 + 4 | 0; i4 = i2; i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45036) | 0; HEAP32[i5 >> 2] = i6; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i4 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; STACKTOP = i2; return i1 | 0; } function __ZN6cashew12ValueBuilder10makeObjectEv() { var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i2 + 8 | 0; i5 = i2 + 4 | 0; i4 = i2; i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45368) | 0; HEAP32[i5 >> 2] = i6; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i4 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; STACKTOP = i2; return i1 | 0; } function __ZNSt3__23mapIPN4wasm6ExportEjNS_4lessIS3_EENS_9allocatorINS_4pairIKS3_jEEEEEixERS8_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE25__emplace_unique_key_argsIS4_JRKNS_21piecewise_construct_tENS_5tupleIJRKS4_EEENSH_IJEEEEEENS_4pairINS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE4dumpEPKcPc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i6; i5 = HEAP32[806] | 0; HEAP32[i3 >> 2] = i1; _fprintf(i5, 28626, i3) | 0; i3 = 200; i1 = 2; L1 : while (1) { i4 = HEAP8[i2 >> 0] | 0; switch (i4 << 24 >> 24) { case 0: break L1; case 10: { i1 = i1 + -1 | 0; if (!i1) break L1; break; } default: {} } i3 = i3 + -1 | 0; if (!i3) break; _fputc(i4 << 24 >> 24, i5) | 0; i2 = i2 + 1 | 0; } _fwrite(28642, 2, 1, i5) | 0; STACKTOP = i6; return; } function __ZN6cashew12ValueBuilder9makeBlockEv() { var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i2 + 8 | 0; i5 = i2 + 4 | 0; i4 = i2; i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45044) | 0; HEAP32[i5 >> 2] = i6; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i4 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; STACKTOP = i2; return i1 | 0; } function __ZN6cashew12ValueBuilder9makeArrayEv() { var i1 = 0, i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i2 + 8 | 0; i5 = i2 + 4 | 0; i4 = i2; i3 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i6 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45364) | 0; HEAP32[i5 >> 2] = i6; HEAP32[i1 >> 2] = HEAP32[i5 >> 2]; i3 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; i5 = __ZN6cashew12ValueBuilder12makeRawArrayEi(0) | 0; HEAP32[i4 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i3, i1) | 0; STACKTOP = i2; return i1 | 0; } function __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE7reserveEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i5; i4 = HEAP32[i1 >> 2] | 0; if ((HEAP32[i1 + 8 >> 2] | 0) - i4 >> 4 >>> 0 < i2 >>> 0) { __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i3, i2, (HEAP32[i1 + 4 >> 2] | 0) - i4 >> 4, i1 + 8 | 0); __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEED2Ev(i3); } STACKTOP = i5; return; } function __ZN4wasm22SExpressionWasmBuilder18parseFunctionNamesERNS_7ElementERNS_4NameES4_(i1, i3, i4, i5) { i1 = i1 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i2 = 0, i6 = 0; i1 = 1; while (1) { i2 = (__ZN4wasm7Element4listEv(i3) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i2 >> 2] | 0) >>> 0) break; i2 = __ZN4wasm7ElementixEj(i3, i1) | 0; if (HEAP8[i2 >> 0] | 0) break; i6 = (__ZN4wasm7ElementixEj(i3, i1) | 0) + 24 | 0; i6 = (HEAP8[i6 >> 0] | 0) == 0; i2 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i3, i1) | 0) | 0; if (i6) HEAP32[i5 >> 2] = i2; else HEAP32[i4 >> 2] = i2; i1 = i1 + 1 | 0; } return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pair9move_fullEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0; i5 = i1 + 12 | 0; i3 = HEAP8[i5 + 11 >> 0] | 0; i4 = i3 << 24 >> 24 < 0; i3 = __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1, i4 ? HEAP32[i5 >> 2] | 0 : i5, i4 ? HEAP32[i1 + 16 >> 2] | 0 : i3 & 255) | 0; HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i2) return; else { __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, HEAP32[i2 >> 2] | 0); __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, HEAP32[i2 + 4 >> 2] | 0); __ZdlPv(i2); return; } } function __ZNSt3__23mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 8 | 0; i3 = i4; HEAP32[i5 >> 2] = i2; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIS3_JRKNS_21piecewise_construct_tENS_5tupleIJRKS3_EEENSG_IJEEEEEENS_4pairINS_15__tree_iteratorIS4_PNS_11__tree_nodeIS4_PvEEiEEbEERKT_DpOT0_(i3, i1, i2, 49409, i5, i4 + 12 | 0); STACKTOP = i4; return (HEAP32[i3 >> 2] | 0) + 20 | 0; } function __ZN6cashew12ValueBuilder24appendArgumentToFunctionENS_3RefENS_7IStringE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i4 = i5; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45040) | 0) { i2 = __ZN6cashew3RefixEj(i2, 2) | 0; i2 = HEAP32[i2 >> 2] | 0; i3 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i3) | 0; HEAP32[i4 >> 2] = i3; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i2, i1) | 0; STACKTOP = i5; return; } else ___assert_fail(28734, 34046, 1509, 28751); } function __ZNSt3__214__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 536870911) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 3) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 3) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 3); return; } function _vasprintf(i2, i3, i6) { i2 = i2 | 0; i3 = i3 | 0; i6 = i6 | 0; var i1 = 0, i4 = 0, i5 = 0, i7 = 0, i8 = 0; i8 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i8; i7 = _malloc(240) | 0; do if (i7) { HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; i1 = _vsnprintf(i7, 240, i3, i1) | 0; if (i1 >>> 0 < 240) { i6 = _realloc(i7, i1 + 1 | 0) | 0; HEAP32[i2 >> 2] = i6 | 0 ? i6 : i7; break; } _free(i7); if ((i1 | 0) >= 0 ? (i4 = i1 + 1 | 0, i5 = _malloc(i4) | 0, HEAP32[i2 >> 2] = i5, (i5 | 0) != 0) : 0) i1 = _vsnprintf(i5, i4, i3, i6) | 0; else i1 = -1; } else i1 = -1; while (0); STACKTOP = i8; return i1 | 0; } function _getc(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0; if ((HEAP32[i4 + 76 >> 2] | 0) >= 0 ? (___lockfile(i4) | 0) != 0 : 0) { i1 = i4 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i4 + 8 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = i2 + 1; i1 = HEAPU8[i2 >> 0] | 0; } else i1 = ___uflow(i4) | 0; ___unlockfile(i4); } else i3 = 3; do if ((i3 | 0) == 3) { i1 = i4 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i4 + 8 >> 2] | 0) >>> 0) { HEAP32[i1 >> 2] = i2 + 1; i1 = HEAPU8[i2 >> 0] | 0; break; } else { i1 = ___uflow(i4) | 0; break; } } while (0); return i1 | 0; } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE7reserveEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i5; i4 = HEAP32[i1 >> 2] | 0; if ((HEAP32[i1 + 8 >> 2] | 0) - i4 >> 2 >>> 0 < i2 >>> 0) { __ZNSt3__214__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEEC2EjjS5_(i3, i2, (HEAP32[i1 + 4 >> 2] | 0) - i4 >> 2, i1 + 8 | 0); __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(i1, i3); __ZNSt3__214__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEED2Ev(i3); } STACKTOP = i5; return; } function _realloc(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; if (!i2) { i3 = _malloc(i3) | 0; return i3 | 0; } if (i3 >>> 0 > 4294967231) { i3 = ___errno_location() | 0; HEAP32[i3 >> 2] = 12; i3 = 0; return i3 | 0; } i1 = _try_realloc_chunk(i2 + -8 | 0, i3 >>> 0 < 11 ? 16 : i3 + 11 & -8) | 0; if (i1 | 0) { i3 = i1 + 8 | 0; return i3 | 0; } i1 = _malloc(i3) | 0; if (!i1) { i3 = 0; return i3 | 0; } i4 = HEAP32[i2 + -4 >> 2] | 0; i4 = (i4 & -8) - ((i4 & 3 | 0) == 0 ? 8 : 4) | 0; _memcpy(i1 | 0, i2 | 0, (i4 >>> 0 < i3 >>> 0 ? i4 : i3) | 0) | 0; _free(i2); i3 = i1; return i3 | 0; } function __ZN4wasm13WasmValidator11visitGlobalEPNS_6GlobalE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i3 + 4 | 0; i7 = i3; i4 = i2 + 8 | 0; i6 = (HEAP32[HEAP32[i4 >> 2] >> 2] | 0) == 15; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; __ZN4wasm13WasmValidator12shouldBeTrueINS_4NameEEEbbT_PKc(i1, i6, i5, 14960) | 0; __ZN4wasm13WasmValidator13shouldBeEqualIPNS_6GlobalENS_8WasmTypeEEEbT0_S5_T_PKc(i1, HEAP32[i2 + 4 >> 2] | 0, HEAP32[(HEAP32[i4 >> 2] | 0) + 4 >> 2] | 0, i2, 14986) | 0; STACKTOP = i3; return; } function __ZN4wasm10TypeSeekerC2EPNS_10ExpressionENS_4NameE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; HEAP32[i1 + 20 >> 2] = 0; HEAP32[i1 + 24 >> 2] = i2; HEAP32[i1 + 28 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 + 32 >> 2] = 0; HEAP32[i1 + 36 >> 2] = 0; HEAP32[i1 + 40 >> 2] = 0; HEAP32[i5 >> 2] = i2; __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE4walkERPNS_10ExpressionE(i1, i5); STACKTOP = i4; return; } function _memcpy(i1, i4, i2) { i1 = i1 | 0; i4 = i4 | 0; i2 = i2 | 0; var i3 = 0; if ((i2 | 0) >= 4096) return _emscripten_memcpy_big(i1 | 0, i4 | 0, i2 | 0) | 0; i3 = i1 | 0; if ((i1 & 3) == (i4 & 3)) { while (i1 & 3) { if (!i2) return i3 | 0; HEAP8[i1 >> 0] = HEAP8[i4 >> 0] | 0; i1 = i1 + 1 | 0; i4 = i4 + 1 | 0; i2 = i2 - 1 | 0; } while ((i2 | 0) >= 4) { HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; i1 = i1 + 4 | 0; i4 = i4 + 4 | 0; i2 = i2 - 4 | 0; } } while ((i2 | 0) > 0) { HEAP8[i1 >> 0] = HEAP8[i4 >> 0] | 0; i1 = i1 + 1 | 0; i4 = i4 + 1 | 0; i2 = i2 - 1 | 0; } return i3 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE7destroyEPNS_11__tree_nodeIS4_PvEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i2) return; else { __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE7destroyEPNS_11__tree_nodeIS4_PvEE(i1, HEAP32[i2 >> 2] | 0); __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE7destroyEPNS_11__tree_nodeIS4_PvEE(i1, HEAP32[i2 + 4 >> 2] | 0); __ZdlPv(i2); return; } } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE12__deallocateEPNS_11__hash_nodeIS6_PvEE(i1, HEAP32[i1 + 8 >> 2] | 0); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) __ZdlPv(i2); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZN7AsmData8addParamEN6cashew7IStringE7AsmType(i3, i4, i1) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; var i2 = 0; i2 = __ZNSt3__213unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERSB_(i3, i4) | 0; HEAP32[i2 >> 2] = i1; HEAP8[i2 + 4 >> 0] = 1; i1 = i3 + 24 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 28 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i3 + 20 | 0, i4); else { HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4; } return; } function __ZN7AsmData6addVarEN6cashew7IStringE7AsmType(i3, i4, i1) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; var i2 = 0; i2 = __ZNSt3__213unordered_mapIN6cashew7IStringEN7AsmData5LocalENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERSB_(i3, i4) | 0; HEAP32[i2 >> 2] = i1; HEAP8[i2 + 4 >> 0] = 0; i1 = i3 + 36 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) == (HEAP32[i3 + 40 >> 2] | 0)) __ZNSt3__26vectorIN6cashew7IStringENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i3 + 32 | 0, i4); else { HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 4; } return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm8FunctionENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEEC2EjjSA_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 536870911) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 3) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 3) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 3); return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIwEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 4) | 0; if (!(HEAP32[i7 >> 2] & 4)) HEAP32[i6 >> 2] = i1 + -1900; STACKTOP = i5; return; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIcEE(i1, i6, i2, i3, i7, i4) { i1 = i1 | 0; i6 = i6 | 0; i2 = i2 | 0; i3 = i3 | 0; i7 = i7 | 0; i4 = i4 | 0; var i5 = 0, i8 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i8 = i5; HEAP32[i8 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i8 >> 2]; i1 = __ZNSt3__220__get_up_to_n_digitsIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEiRT0_S5_RjRKNS_5ctypeIT_EEi(i2, i1, i7, i4, 4) | 0; if (!(HEAP32[i7 >> 2] & 4)) HEAP32[i6 >> 2] = i1 + -1900; STACKTOP = i5; return; } function __ZN4wasm4Loop8finalizeEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 64 | 0; i1 = i6 + 48 | 0; i3 = i6 + 4 | 0; i4 = i6; i5 = HEAP32[i2 + 8 >> 2] | 0; if (!i5) HEAP32[i2 + 4 >> 2] = HEAP32[(HEAP32[i2 + 16 >> 2] | 0) + 4 >> 2]; else { HEAP32[i4 >> 2] = i5; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN4wasm10TypeSeekerC2EPNS_10ExpressionENS_4NameE(i3, i2, i1); i5 = __ZN4wasmL10mergeTypesERNSt3__26vectorINS_8WasmTypeENS0_9allocatorIS2_EEEE(i3 + 32 | 0) | 0; HEAP32[i2 + 4 >> 2] = i5; __ZN4wasm10TypeSeekerD2Ev(i3); } STACKTOP = i6; return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ImportENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6GlobalENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ExportENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEEC2EjjSA_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 536870911) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 3) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 3) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 3); return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; if (i3 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i1); if (i3 >>> 0 < 11) { HEAP8[i1 + 11 >> 0] = i3; if (i3) i4 = 6; } else { i5 = i3 + 16 & -16; i4 = _malloc(i5) | 0; HEAP32[i1 >> 2] = i4; HEAP32[i1 + 8 >> 2] = i5 | -2147483648; HEAP32[i1 + 4 >> 2] = i3; i1 = i4; i4 = 6; } if ((i4 | 0) == 6) _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; HEAP8[i1 + i3 >> 0] = 0; return; } function __ZN6cashew12ValueBuilder7makeNewENS_3RefE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i2 + 8 | 0; i6 = i2 + 4 | 0; i5 = i2; i4 = __ZN6cashew12ValueBuilder12makeRawArrayEi(2) | 0; i7 = __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(45360) | 0; HEAP32[i6 >> 2] = i7; HEAP32[i3 >> 2] = HEAP32[i6 >> 2]; i4 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0; HEAP32[i5 >> 2] = HEAP32[i1 >> 2]; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; i1 = __ZN6cashew5Value9push_backENS_3RefE(i4, i3) | 0; STACKTOP = i2; return i1 | 0; } function __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEEC2EjjSA_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 536870911) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 3) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 3) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 3); return; } function __ZNKSt3__210__time_put8__do_putEPcRS1_PK2tmcc(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i7 = 0, i8 = 0, i9 = 0, i10 = 0; i10 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i10; HEAP8[i7 >> 0] = 37; i8 = i7 + 1 | 0; HEAP8[i8 >> 0] = i5; i9 = i7 + 2 | 0; HEAP8[i9 >> 0] = i6; HEAP8[i7 + 3 >> 0] = 0; if (i6 << 24 >> 24) { HEAP8[i8 >> 0] = i6; HEAP8[i9 >> 0] = i5; } i9 = i2 + (_strftime_l(i2 | 0, (HEAP32[i3 >> 2] | 0) - i2 | 0, i7 | 0, i4 | 0, HEAP32[i1 >> 2] | 0) | 0) | 0; HEAP32[i3 >> 2] = i9; STACKTOP = i10; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE5eraseENS_21__tree_const_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0; i1 = HEAP32[i1 >> 2] | 0; i2 = __ZNSt3__211__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0; if ((HEAP32[i3 >> 2] | 0) == (i1 | 0)) HEAP32[i3 >> 2] = i2; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + -1; __ZNSt3__213__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i3 + 4 >> 2] | 0, i1); __ZdlPv(i1); return i2 | 0; } function __ZNSt3__214__split_bufferINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEERNS_9allocatorIS5_EEEC2EjjS8_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEjc(i2, i3, i4) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i1 = 0, i5 = 0, i6 = 0; i5 = i2 + 11 | 0; i1 = HEAP8[i5 >> 0] | 0; i6 = i1 << 24 >> 24 < 0; if (i6) i1 = HEAP32[i2 + 4 >> 2] | 0; else i1 = i1 & 255; do if (i1 >>> 0 >= i3 >>> 0) if (i6) { HEAP8[(HEAP32[i2 >> 2] | 0) + i3 >> 0] = 0; HEAP32[i2 + 4 >> 2] = i3; break; } else { HEAP8[i2 + i3 >> 0] = 0; HEAP8[i5 >> 0] = i3; break; } else __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEjc(i2, i3 - i1 | 0, i4) | 0; while (0); return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2EOS1_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i1 = i2 + 12 | 0; i2 = i3 + 12 | 0; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE5eraseENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0; i1 = HEAP32[i1 >> 2] | 0; i2 = __ZNSt3__211__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i1) | 0; if ((HEAP32[i3 >> 2] | 0) == (i1 | 0)) HEAP32[i3 >> 2] = i2; i4 = i3 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + -1; __ZNSt3__213__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i3 + 4 >> 2] | 0, i1); __ZdlPv(i1); return i2 | 0; } function __ZNSt3__214__split_bufferINS_8functionIFN4wasm15ThreadWorkStateEvEEERNS_9allocatorIS5_EEEC2EjjS8_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 178956970) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 * 24 | 0) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 * 24 | 0) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 * 24 | 0); return; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE6xsgetnEPci(i4, i1, i5) { i4 = i4 | 0; i1 = i1 | 0; i5 = i5 | 0; var i2 = 0, i3 = 0, i6 = 0, i7 = 0; i6 = i4 + 12 | 0; i7 = i4 + 16 | 0; i3 = 0; while (1) { if ((i3 | 0) >= (i5 | 0)) break; i2 = HEAP32[i6 >> 2] | 0; if (i2 >>> 0 < (HEAP32[i7 >> 2] | 0) >>> 0) { HEAP32[i6 >> 2] = i2 + 1; i2 = HEAP8[i2 >> 0] | 0; } else { i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 40 >> 2] & 127](i4) | 0; if ((i2 | 0) == -1) break; i2 = i2 & 255; } HEAP8[i1 >> 0] = i2; i3 = i3 + 1 | 0; i1 = i1 + 1 | 0; } return i3 | 0; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringENS2_3RefEEENS_22__unordered_map_hasherIS3_S5_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S5_NS_8equal_toIS3_EELb1EEENS_9allocatorIS5_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringENS2_3RefEEENS_22__unordered_map_hasherIS3_S5_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S5_NS_8equal_toIS3_EELb1EEENS_9allocatorIS5_EEE12__deallocateEPNS_11__hash_nodeIS5_PvEE(i1, HEAP32[i1 + 8 >> 2] | 0); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) __ZdlPv(i2); return; } function __ZN4wasm16PrintSExpression11visitReturnEPNS_6ReturnE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i2 >> 2] | 0, 33426, 0) | 0; i1 = i1 + 8 | 0; i3 = HEAP32[i1 >> 2] | 0; if ((i3 | 0) != 0 ? (HEAP32[i3 >> 2] | 0) != 21 : 0) { __ZN4wasm16PrintSExpression9incIndentEv(i2); __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i2, HEAP32[i1 >> 2] | 0); __ZN4wasm16PrintSExpression9decIndentEv(i2); } else __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i2 >> 2] | 0, 41) | 0; return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS0_12malloc_allocIcEEEE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i3 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } i2 = i2 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function ___toread(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0; i1 = i2 + 74 | 0; i3 = HEAP8[i1 >> 0] | 0; HEAP8[i1 >> 0] = i3 + 255 | i3; i1 = i2 + 20 | 0; i3 = i2 + 44 | 0; if ((HEAP32[i1 >> 2] | 0) >>> 0 > (HEAP32[i3 >> 2] | 0) >>> 0) FUNCTION_TABLE_iiii[HEAP32[i2 + 36 >> 2] & 31](i2, 0, 0) | 0; HEAP32[i2 + 16 >> 2] = 0; HEAP32[i2 + 28 >> 2] = 0; HEAP32[i1 >> 2] = 0; i1 = HEAP32[i2 >> 2] | 0; if (i1 & 20) if (!(i1 & 4)) i1 = -1; else { HEAP32[i2 >> 2] = i1 | 32; i1 = -1; } else { i1 = HEAP32[i3 >> 2] | 0; HEAP32[i2 + 8 >> 2] = i1; HEAP32[i2 + 4 >> 2] = i1; i1 = 0; } return i1 | 0; } function __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i2, i4, i5) { i2 = i2 | 0; i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i3 = 0; __ZNSt3__214__shared_count12__add_sharedEv(i4); i3 = i2 + 8 | 0; i1 = HEAP32[i3 >> 2] | 0; if ((HEAP32[i2 + 12 >> 2] | 0) - i1 >> 2 >>> 0 > i5 >>> 0) i2 = i3; else { __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE6resizeEj(i3, i5 + 1 | 0); i2 = i3; i1 = HEAP32[i3 >> 2] | 0; } i1 = HEAP32[i1 + (i5 << 2) >> 2] | 0; if (i1 | 0) __ZNSt3__214__shared_count16__release_sharedEv(i1) | 0; HEAP32[(HEAP32[i2 >> 2] | 0) + (i5 << 2) >> 2] = i4; return; } function __ZN4wasm22SExpressionWasmBuilder10makeBinaryERNS_7ElementENS_8BinaryOpENS_8WasmTypeE(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i4 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; HEAP32[i4 + 8 >> 2] = i3; i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i4 + 12 >> 2] = i3; i3 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 2) | 0) | 0; HEAP32[i4 + 16 >> 2] = i3; __ZN4wasm6Binary8finalizeEv(i4); return i4 | 0; } function __ZNK10__cxxabiv117__class_type_info24process_found_base_classEPNS_19__dynamic_cast_infoEPvi(i1, i3, i4, i5) { i1 = i1 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i2 = 0; i1 = i3 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; do if (i2) { if ((i2 | 0) != (i4 | 0)) { i5 = i3 + 36 | 0; HEAP32[i5 >> 2] = (HEAP32[i5 >> 2] | 0) + 1; HEAP32[i3 + 24 >> 2] = 2; HEAP8[i3 + 54 >> 0] = 1; break; } i1 = i3 + 24 | 0; if ((HEAP32[i1 >> 2] | 0) == 2) HEAP32[i1 >> 2] = i5; } else { HEAP32[i1 >> 2] = i4; HEAP32[i3 + 24 >> 2] = i5; HEAP32[i3 + 36 >> 2] = 1; } while (0); return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj11EEERAT__Kc(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; HEAP8[i3 + 11 >> 0] = 10; i4 = i3; i2 = i4 + 10 | 0; do { HEAP8[i4 >> 0] = HEAP8[i1 >> 0] | 0; i4 = i4 + 1 | 0; i1 = i1 + 1 | 0; } while ((i4 | 0) < (i2 | 0)); HEAP8[i3 + 10 >> 0] = 0; i2 = i3 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function _strtox(i4, i5, i1, i2, i3) { i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i6 = 0, i7 = 0, i8 = 0, i9 = 0; i9 = STACKTOP; STACKTOP = STACKTOP + 112 | 0; i7 = i9; HEAP32[i7 >> 2] = 0; i8 = i7 + 4 | 0; HEAP32[i8 >> 2] = i4; HEAP32[i7 + 44 >> 2] = i4; i6 = i7 + 8 | 0; HEAP32[i6 >> 2] = (i4 | 0) < 0 ? -1 : i4 + 2147483647 | 0; HEAP32[i7 + 76 >> 2] = -1; ___shlim(i7, 0); i1 = ___intscan(i7, i1, 1, i2, i3) | 0; if (i5 | 0) HEAP32[i5 >> 2] = i4 + ((HEAP32[i8 >> 2] | 0) + (HEAP32[i7 + 108 >> 2] | 0) - (HEAP32[i6 >> 2] | 0)); STACKTOP = i9; return i1 | 0; } function __ZNSt3__210__stdinbufIwEC2EP8_IO_FILEP11__mbstate_t(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i4 + 4 | 0; i5 = i4; __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEEC2Ev(i1); HEAP32[i1 >> 2] = 7840; HEAP32[i1 + 32 >> 2] = i2; HEAP32[i1 + 40 >> 2] = i3; HEAP32[i1 + 48 >> 2] = -1; HEAP8[i1 + 52 >> 0] = 0; __ZNSt3__26localeC2ERKS0_(i6, i1 + 4 | 0); HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; __ZNSt3__210__stdinbufIwE5imbueERKNS_6localeE(i1, i5); __ZNSt3__26localeD2Ev(i5); STACKTOP = i4; return; } function __ZNSt3__210__stdinbufIcEC2EP8_IO_FILEP11__mbstate_t(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i4 + 4 | 0; i5 = i4; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1); HEAP32[i1 >> 2] = 7904; HEAP32[i1 + 32 >> 2] = i2; HEAP32[i1 + 40 >> 2] = i3; HEAP32[i1 + 48 >> 2] = -1; HEAP8[i1 + 52 >> 0] = 0; __ZNSt3__26localeC2ERKS0_(i6, i1 + 4 | 0); HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; __ZNSt3__210__stdinbufIcE5imbueERKNS_6localeE(i1, i5); __ZNSt3__26localeD2Ev(i5); STACKTOP = i4; return; } function __ZN4wasm11WasmPrinter15printExpressionEPNS_10ExpressionERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEb(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i5 = i4; HEAP32[i5 >> 2] = i2; HEAP32[i5 + 4 >> 2] = 0; HEAP8[i5 + 20 >> 0] = 0; HEAP32[i5 + 24 >> 2] = 0; HEAP32[i5 + 28 >> 2] = 0; HEAP8[i5 + 8 >> 0] = i3 & 1; HEAP32[i5 + 12 >> 2] = i3 ? 53494 : 42465; HEAP32[i5 + 16 >> 2] = i3 ? 53494 : 31522; __ZN4wasm7VisitorINS_16PrintSExpressionEvE5visitEPNS_10ExpressionE(i5, i1); STACKTOP = i4; return i2 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj10EEERAT__Kc(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0, i4 = 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; HEAP8[i3 + 11 >> 0] = 9; i4 = i3; i2 = i4 + 9 | 0; do { HEAP8[i4 >> 0] = HEAP8[i1 >> 0] | 0; i4 = i4 + 1 | 0; i1 = i1 + 1 | 0; } while ((i4 | 0) < (i2 | 0)); HEAP8[i3 + 9 >> 0] = 0; i2 = i3 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNSt3__214__split_bufferINS_4pairIPN4wasm7ElementEPNS2_5BlockEEERNS_9allocatorIS7_EEEC2EjjSA_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 536870911) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 3) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 3) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 3); return; } function __ZN4wasm22SExpressionWasmBuilder8makeCallERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i3 = __ZN10MixedArena5allocIN4wasm4CallEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i4 = i3 + 24 | 0; i5 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i4 >> 2] = i5; i4 = __ZNSt3__23mapIN4wasm4NameENS1_8WasmTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S3_EEEEEixERS8_(i1 + 32 | 0, i4) | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i4 >> 2]; __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_4CallEEEvRNS_7ElementEjPT_(i1, i2, 2, i3); return i3 | 0; } function _fmt_u(i3, i2, i1) { i3 = i3 | 0; i2 = i2 | 0; i1 = i1 | 0; var i4 = 0; if (i2 >>> 0 > 0 | (i2 | 0) == 0 & i3 >>> 0 > 4294967295) { while (1) { i4 = ___uremdi3(i3 | 0, i2 | 0, 10, 0) | 0; i1 = i1 + -1 | 0; HEAP8[i1 >> 0] = i4 | 48; i4 = i3; i3 = ___udivdi3(i3 | 0, i2 | 0, 10, 0) | 0; if (!(i2 >>> 0 > 9 | (i2 | 0) == 9 & i4 >>> 0 > 4294967295)) break; else i2 = tempRet0; } i2 = i3; } else i2 = i3; if (i2) while (1) { i1 = i1 + -1 | 0; HEAP8[i1 >> 0] = (i2 >>> 0) % 10 | 0 | 48; if (i2 >>> 0 < 10) break; else i2 = (i2 >>> 0) / 10 | 0; } return i1 | 0; } function __ZNSt3__214__split_bufferIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEEERNS4_IS7_EEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE16__insert_node_atEPNS_16__tree_node_baseIPvEERSB_SB_(i4, i2, i3, i1) { i4 = i4 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i3 >> 2] = i1; i2 = HEAP32[i4 >> 2] | 0; if (HEAP32[i2 >> 2] | 0) { HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; i1 = HEAP32[i3 >> 2] | 0; } __ZNSt3__227__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_(HEAP32[i4 + 4 >> 2] | 0, i1); i4 = i4 + 8 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE6xsgetnEPwi(i4, i1, i5) { i4 = i4 | 0; i1 = i1 | 0; i5 = i5 | 0; var i2 = 0, i3 = 0, i6 = 0, i7 = 0; i6 = i4 + 12 | 0; i7 = i4 + 16 | 0; i3 = 0; while (1) { if ((i3 | 0) >= (i5 | 0)) break; i2 = HEAP32[i6 >> 2] | 0; if (i2 >>> 0 >= (HEAP32[i7 >> 2] | 0) >>> 0) { i2 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 40 >> 2] & 127](i4) | 0; if ((i2 | 0) == -1) break; } else { HEAP32[i6 >> 2] = i2 + 4; i2 = HEAP32[i2 >> 2] | 0; } HEAP32[i1 >> 2] = i2; i3 = i3 + 1 | 0; i1 = i1 + 4 | 0; } return i3 | 0; } function __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEEC2EjjS5_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 107374182) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 * 40 | 0) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 * 40 | 0) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 * 40 | 0); return; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE12__deallocateEPNS_11__hash_nodeIS4_PvEE(i1, HEAP32[i1 + 8 >> 2] | 0); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) __ZdlPv(i2); return; } function __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE6resizeEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = i2 + 4 | 0; i1 = HEAP32[i6 >> 2] | 0; i5 = HEAP32[i2 >> 2] | 0; i4 = i1 - i5 >> 2; L1 : do if (i4 >>> 0 >= i3 >>> 0) { if (i4 >>> 0 > i3 >>> 0) { i2 = i5 + (i3 << 2) | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i5 = i1 + -4 | 0; HEAP32[i6 >> 2] = i5; i1 = i5; } } } else __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE8__appendEj(i2, i3 - i4 | 0); while (0); return; } function __ZNKSt3__27collateIcE10do_compareEPKcS3_S3_S3_(i1, i3, i5, i2, i6) { i1 = i1 | 0; i3 = i3 | 0; i5 = i5 | 0; i2 = i2 | 0; i6 = i6 | 0; var i4 = 0, i7 = 0; i1 = i3; while (1) { if ((i2 | 0) == (i6 | 0)) { i7 = 7; break; } if ((i1 | 0) == (i5 | 0)) { i1 = -1; break; } i3 = HEAP8[i1 >> 0] | 0; i4 = HEAP8[i2 >> 0] | 0; if (i3 << 24 >> 24 < i4 << 24 >> 24) { i1 = -1; break; } if (i4 << 24 >> 24 < i3 << 24 >> 24) { i1 = 1; break; } i2 = i2 + 1 | 0; i1 = i1 + 1 | 0; } if ((i7 | 0) == 7) i1 = (i1 | 0) != (i5 | 0) & 1; return i1 | 0; } function _trunc(d1) { d1 = +d1; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0; HEAPF64[tempDoublePtr >> 3] = d1; i2 = HEAP32[tempDoublePtr >> 2] | 0; i5 = HEAP32[tempDoublePtr + 4 >> 2] | 0; i6 = _bitshift64Lshr(i2 | 0, i5 | 0, 52) | 0; i6 = (i6 & 2047) + -1011 | 0; if ((i6 | 0) <= 63 ? (i4 = (i6 | 0) < 12, i3 = _bitshift64Lshr(-1, -1, i6 | 0) | 0, i3 = i4 ? -1 : i3, i4 = i4 ? 2147483647 : tempRet0, !((i3 & i2 | 0) == 0 & (i4 & i5 | 0) == 0)) : 0) { HEAP32[tempDoublePtr >> 2] = i2 & ~i3; HEAP32[tempDoublePtr + 4 >> 2] = i5 & ~i4; d1 = +HEAPF64[tempDoublePtr >> 3]; } return +d1; } function __ZN4wasm10PassRunner17runPassOnFunctionEPNS_4PassEPNS_8FunctionE(i2, i1, i3) { i2 = i2 | 0; i1 = i1 | 0; i3 = i3 | 0; if (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 127](i1) | 0) { i1 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 127](i1) | 0; FUNCTION_TABLE_viiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 15](i1, i2, HEAP32[i2 >> 2] | 0, i3); if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] & 255](i1); } else FUNCTION_TABLE_viiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 15](i1, i2, HEAP32[i2 >> 2] | 0, i3); return; } function __ZN10__cxxabiv112_GLOBAL__N_119parse_cv_qualifiersEPKcS2_Rj(i1, i2, i4) { i1 = i1 | 0; i2 = i2 | 0; i4 = i4 | 0; var i3 = 0; HEAP32[i4 >> 2] = 0; if ((i1 | 0) != (i2 | 0)) { i3 = HEAP8[i1 >> 0] | 0; if (i3 << 24 >> 24 == 114) { HEAP32[i4 >> 2] = 4; i3 = i1 + 1 | 0; i1 = i3; i2 = 4; i3 = HEAP8[i3 >> 0] | 0; } else i2 = 0; if (i3 << 24 >> 24 == 86) { i2 = i2 | 2; HEAP32[i4 >> 2] = i2; i3 = i1 + 1 | 0; i1 = i3; i3 = HEAP8[i3 >> 0] | 0; } if (i3 << 24 >> 24 == 75) { HEAP32[i4 >> 2] = i2 | 1; i1 = i1 + 1 | 0; } } return i1 | 0; } function __ZNSt3__214__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEPFvPvEPN4wasm34OptimizingIncrementalModuleBuilderEEEEEES7_S7_(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = __ZNSt3__219__thread_local_dataEv() | 0; i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; __ZNSt3__221__thread_specific_ptrINS_15__thread_structEE5resetEPS1_(i3, i2); FUNCTION_TABLE_vi[HEAP32[i1 + 4 >> 2] & 255](HEAP32[i1 + 8 >> 2] | 0); __ZNSt3__212__tuple_leafILj0ENS_10unique_ptrINS_15__thread_structENS_14default_deleteIS2_EEEELb0EED2Ev(i1); __ZdlPv(i1); return 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; if (i3 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i1); if (i3 >>> 0 < 11) { HEAP8[i1 + 11 >> 0] = i3; if (i3) i4 = 6; } else { i5 = i3 + 16 & -16; i4 = __Znwj(i5) | 0; HEAP32[i1 >> 2] = i4; HEAP32[i1 + 8 >> 2] = i5 | -2147483648; HEAP32[i1 + 4 >> 2] = i3; i1 = i4; i4 = 6; } if ((i4 | 0) == 6) _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; HEAP8[i1 + i3 >> 0] = 0; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEjc(i1, i3, i2) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0; if (i3 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i1); if (i3 >>> 0 < 11) { HEAP8[i1 + 11 >> 0] = i3; if (i3) i4 = 6; } else { i5 = i3 + 16 & -16; i4 = __Znwj(i5) | 0; HEAP32[i1 >> 2] = i4; HEAP32[i1 + 8 >> 2] = i5 | -2147483648; HEAP32[i1 + 4 >> 2] = i3; i1 = i4; i4 = 6; } if ((i4 | 0) == 6) _memset(i1 | 0, i2 | 0, i3 | 0) | 0; HEAP8[i1 + i3 >> 0] = 0; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcjj(i1, i3, i4, i2) { i1 = i1 | 0; i3 = i3 | 0; i4 = i4 | 0; i2 = i2 | 0; var i5 = 0; if (i2 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i1); if (i2 >>> 0 < 11) HEAP8[i1 + 11 >> 0] = i4; else { i5 = i2 + 16 & -16; i2 = _malloc(i5) | 0; HEAP32[i1 >> 2] = i2; HEAP32[i1 + 8 >> 2] = i5 | -2147483648; HEAP32[i1 + 4 >> 2] = i4; i1 = i2; } if (i4 | 0) _memcpy(i1 | 0, i3 | 0, i4 | 0) | 0; HEAP8[i1 + i4 >> 0] = 0; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE5eraseEjj(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0, i6 = 0; i5 = i4 + 11 | 0; i1 = HEAP8[i5 >> 0] | 0; if (i1 << 24 >> 24 < 0) { i6 = HEAP32[i4 >> 2] | 0; i2 = HEAP32[i4 + 4 >> 2] | 0; } else { i6 = i4; i2 = i1 & 255; } i3 = (i2 | 0) != 0 & 1; i2 = i2 - i3 | 0; if (i2) { _memmove(i6 | 0, i6 + i3 | 0, i2 | 0) | 0; i1 = HEAP8[i5 >> 0] | 0; } if (i1 << 24 >> 24 < 0) HEAP32[i4 + 4 >> 2] = i2; else HEAP8[i5 >> 0] = i2; HEAP8[i6 + i2 >> 0] = 0; return; } function __ZNSt3__214__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_Lj28EEEEC2EjjS6_(i3, i4, i5, i1) { i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; var i2 = 0; HEAP32[i3 + 12 >> 2] = 0; HEAP32[i3 + 16 >> 2] = i1; do if (i4) { i2 = i1 + 112 | 0; if (i4 >>> 0 < 29 & (HEAP8[i2 >> 0] | 0) == 0) { HEAP8[i2 >> 0] = 1; break; } else { i1 = __Znwj(i4 << 2) | 0; break; } } else i1 = 0; while (0); HEAP32[i3 >> 2] = i1; i5 = i1 + (i5 << 2) | 0; HEAP32[i3 + 8 >> 2] = i5; HEAP32[i3 + 4 >> 2] = i5; HEAP32[i3 + 12 >> 2] = i1 + (i4 << 2); return; } function __ZN4wasm7Builder9makeConstENS_7LiteralE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = HEAP32[i2 >> 2] | 0; switch (i3 | 0) { case 0: case 5: { ___assert_fail(26851, 16672, 174, 26882); break; } default: { i1 = __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; i4 = i1 + 8 | 0; HEAP32[i4 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i4 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i4 + 12 >> 2] = HEAP32[i2 + 12 >> 2]; HEAP32[i1 + 4 >> 2] = i3; return i1 | 0; } } return 0; } function __ZZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_ENKUlvE_clEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i5 = i3; i2 = __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] | 0) | 0; i1 = HEAP32[HEAP32[i1 + 4 >> 2] >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[11413]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i1 = __ZN4wasm8Function13getLocalIndexENS_4NameE(i1, i4) | 0; HEAP32[i2 + 8 >> 2] = i1; HEAP32[i2 + 4 >> 2] = 1; STACKTOP = i3; return i2 | 0; } function __ZNSt3__214__split_bufferIPN4wasm12FunctionTypeERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __Z9parseHeapPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; if ((((HEAP8[i2 >> 0] | 0) == 72 ? (HEAP8[i2 + 1 >> 0] | 0) == 69 : 0) ? (HEAP8[i2 + 2 >> 0] | 0) == 65 : 0) ? (HEAP8[i2 + 3 >> 0] | 0) == 80 : 0) { HEAP8[i1 >> 0] = 1; i3 = HEAP8[i2 + 4 >> 0] | 0; i4 = i3 << 24 >> 24 == 85; HEAP8[i1 + 1 >> 0] = i4 & 1; i3 = i3 << 24 >> 24 == 70; HEAP8[i1 + 2 >> 0] = i3 & 1; i2 = __Z8parseIntPKc(i2 + (i4 | i3 ? 5 : 4) | 0) | 0; HEAP32[i1 + 4 >> 2] = i2; HEAP32[i1 + 8 >> 2] = i3 ? ((i2 | 0) == 64 ? 1 : 2) : 0; } else HEAP8[i1 >> 0] = 0; return; } function __ZNSt3__214__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 268435455) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 4) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 4) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 4); return; } function __ZNSt3__214__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 + 4 >> 2] | 0; i4 = i2 + 8 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i1 + 8 | 0); __ZdlPv(i1); } i1 = HEAP32[i2 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZN4wasm11WasmPrinter11printModuleEPNS_6ModuleERNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i3; HEAP32[i4 >> 2] = i1; HEAP32[i4 + 4 >> 2] = i1 + 100; HEAP32[i4 + 8 >> 2] = 0; HEAP32[i4 + 12 >> 2] = 0; HEAP32[i4 + 16 >> 2] = 0; HEAP8[i4 + 24 >> 0] = 0; __ZN4wasm10PassRunner3addINS_7PrinterEPNSt3__213basic_ostreamIcNS3_11char_traitsIcEEEEEEvT0_(i4, i2); __ZN4wasm10PassRunner3runEv(i4); __ZN4wasm10PassRunnerD2Ev(i4); STACKTOP = i3; return i2 | 0; } function __ZNSt3__26locale5__impD2Ev(i3) { i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0; HEAP32[i3 >> 2] = 10304; i4 = i3 + 8 | 0; i5 = i3 + 12 | 0; i2 = 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if (i2 >>> 0 >= (HEAP32[i5 >> 2] | 0) - i1 >> 2 >>> 0) break; i1 = HEAP32[i1 + (i2 << 2) >> 2] | 0; if (i1 | 0) __ZNSt3__214__shared_count16__release_sharedEv(i1) | 0; i2 = i2 + 1 | 0; } __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3 + 144 | 0); __ZNSt3__213__vector_baseIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEED2Ev(i4); return; } function __ZNSt3__214__split_bufferIPN4wasm8FunctionERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIN6cashew7IStringERNS_9allocatorIS2_EEEC2EjjS5_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEED2Ev(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0; i1 = HEAP32[i4 + 4 >> 2] | 0; i2 = i4 + 8 | 0; while (1) { i3 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) == (i1 | 0)) break; i3 = i3 + -24 | 0; HEAP32[i2 >> 2] = i3; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i3); } i1 = HEAP32[i4 >> 2] | 0; if (i1 | 0) __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[HEAP32[i4 + 16 >> 2] >> 2] | 0, i1, (HEAP32[i4 + 12 >> 2] | 0) - i1 | 0); return; } function __ZNSt3__214__split_bufferIPN6cashew5ValueERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIPN4wasm7ElementERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEEC2EjjS5_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEEC2EjjS5_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 536870911) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 3) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 3) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 3); return; } function __ZNSt3__214__split_bufferIPN4wasm5BlockERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEEC2EjjS5_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 268435455) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 4) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 4) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 4); return; } function __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE6resizeEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = i2 + 4 | 0; i1 = HEAP32[i6 >> 2] | 0; i5 = HEAP32[i2 >> 2] | 0; i4 = i1 - i5 >> 2; L1 : do if (i4 >>> 0 >= i3 >>> 0) { if (i4 >>> 0 > i3 >>> 0) { i2 = i5 + (i3 << 2) | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i5 = i1 + -4 | 0; HEAP32[i6 >> 2] = i5; i1 = i5; } } } else __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE8__appendEj(i2, i3 - i4 | 0); while (0); return; } function __ZNSt3__214__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIPN4wasm4CallERNS_9allocatorIS3_EEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__214__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEEC2EjjS5_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -24 | 0; HEAP32[i3 >> 2] = i4; __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i4); } i4 = HEAP32[i1 >> 2] | 0; __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(HEAP32[i1 + 12 >> 2] | 0, i4, (HEAP32[i1 + 8 >> 2] | 0) - i4 | 0); } return; } function __ZNSt3__214__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEEC2EjjS5_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZN4wasm34OptimizingIncrementalModuleBuilder16optimizeFunctionEPNS_8FunctionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i3; i1 = HEAP32[i1 >> 2] | 0; HEAP32[i4 >> 2] = i1; HEAP32[i4 + 4 >> 2] = i1 + 100; HEAP32[i4 + 8 >> 2] = 0; HEAP32[i4 + 12 >> 2] = 0; HEAP32[i4 + 16 >> 2] = 0; HEAP8[i4 + 24 >> 0] = 0; __ZN4wasm10PassRunner36addDefaultFunctionOptimizationPassesEv(i4); __ZN4wasm10PassRunner11runFunctionEPNS_8FunctionE(i4, i2); __ZN4wasm10PassRunnerD2Ev(i4); STACKTOP = i3; return; } function __ZN4wasm13WasmValidator10visitBreakEPNS_5BreakE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 4 | 0; i6 = i4; HEAP32[i6 >> 2] = HEAP32[i2 + 8 >> 2]; i3 = HEAP32[i2 + 12 >> 2] | 0; HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; __ZN4wasm13WasmValidator9noteBreakENS_4NameEPNS_10ExpressionE(i1, i5, i3); i3 = HEAP32[i2 + 16 >> 2] | 0; if (i3 | 0) __ZN4wasm13WasmValidator12shouldBeTrueIPNS_5BreakEEEbbT_PKc(i1, (HEAP32[i3 + 4 >> 2] | 4 | 0) == 5, i2, 15217) | 0; STACKTOP = i4; return; } function __ZNKSt3__27collateIwE10do_compareEPKwS3_S3_S3_(i1, i3, i5, i2, i6) { i1 = i1 | 0; i3 = i3 | 0; i5 = i5 | 0; i2 = i2 | 0; i6 = i6 | 0; var i4 = 0, i7 = 0; i1 = i3; while (1) { if ((i2 | 0) == (i6 | 0)) { i7 = 7; break; } if ((i1 | 0) == (i5 | 0)) { i1 = -1; break; } i3 = HEAP32[i1 >> 2] | 0; i4 = HEAP32[i2 >> 2] | 0; if ((i3 | 0) < (i4 | 0)) { i1 = -1; break; } if ((i4 | 0) < (i3 | 0)) { i1 = 1; break; } i2 = i2 + 4 | 0; i1 = i1 + 4 | 0; } if ((i7 | 0) == 7) i1 = (i1 | 0) != (i5 | 0) & 1; return i1 | 0; } function __ZNKSt3__27codecvtIDsc11__mbstate_tE6do_outERS1_PKDsS5_RS5_PcS7_RS7_(i1, i2, i3, i4, i5, i6, i7, i8) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i9 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i2 + 4 | 0; i1 = i2; HEAP32[i9 >> 2] = i3; HEAP32[i1 >> 2] = i6; i7 = __ZNSt3__2L13utf16_to_utf8EPKtS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i3, i4, i9, i6, i7, i1, 1114111, 0) | 0; HEAP32[i5 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i1 >> 2]; STACKTOP = i2; return i7 | 0; } function __ZN4wasm11BreakSeeker11visitSwitchEPNS_6SwitchE(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i4 = i3 + 8 | 0; i5 = HEAP32[i3 + 16 >> 2] | 0; i6 = i1 + 24 | 0; i2 = i1 + 28 | 0; i1 = 0; while (1) { if ((i1 | 0) == (i5 | 0)) break; i7 = __ZNK11ArenaVectorIN4wasm4NameEEixEj(i4, i1) | 0; if ((HEAP32[i7 >> 2] | 0) == (HEAP32[i6 >> 2] | 0)) HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 1; i1 = i1 + 1 | 0; } if ((HEAP32[i3 + 24 >> 2] | 0) == (HEAP32[i6 >> 2] | 0)) HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 1; return; } function __ZNKSt3__27codecvtIDsc11__mbstate_tE5do_inERS1_PKcS5_RS5_PDsS7_RS7_(i1, i2, i3, i4, i5, i6, i7, i8) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i9 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i2 + 4 | 0; i1 = i2; HEAP32[i9 >> 2] = i3; HEAP32[i1 >> 2] = i6; i7 = __ZNSt3__2L13utf8_to_utf16EPKhS1_RS1_PtS3_RS3_mNS_12codecvt_modeE(i3, i4, i9, i6, i7, i1, 1114111, 0) | 0; HEAP32[i5 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i1 >> 2]; STACKTOP = i2; return i7 | 0; } function __ZNKSt3__27codecvtIDic11__mbstate_tE6do_outERS1_PKDiS5_RS5_PcS7_RS7_(i1, i2, i3, i4, i5, i6, i7, i8) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i9 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i2 + 4 | 0; i1 = i2; HEAP32[i9 >> 2] = i3; HEAP32[i1 >> 2] = i6; i7 = __ZNSt3__2L12ucs4_to_utf8EPKjS1_RS1_PhS3_RS3_mNS_12codecvt_modeE(i3, i4, i9, i6, i7, i1, 1114111, 0) | 0; HEAP32[i5 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i1 >> 2]; STACKTOP = i2; return i7 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringENS_10unique_ptrIN4wasm12FunctionTypeENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIS3_SA_NS_4lessIS3_EELb1EEENS_9allocatorISA_EEE13__lower_boundIS3_EENS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEEiEERKT_SN_SN_(i2, i4, i1, i3) { i2 = i2 | 0; i4 = i4 | 0; i1 = i1 | 0; i3 = i3 | 0; L1 : while (1) { while (1) { if (!i1) break L1; if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) break; i1 = HEAP32[i1 + 4 >> 2] | 0; } i3 = i1; i1 = HEAP32[i1 >> 2] | 0; } return i3 | 0; } function __ZNKSt3__27codecvtIDic11__mbstate_tE5do_inERS1_PKcS5_RS5_PDiS7_RS7_(i1, i2, i3, i4, i5, i6, i7, i8) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; var i9 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i9 = i2 + 4 | 0; i1 = i2; HEAP32[i9 >> 2] = i3; HEAP32[i1 >> 2] = i6; i7 = __ZNSt3__2L12utf8_to_ucs4EPKhS1_RS1_PjS3_RS3_mNS_12codecvt_modeE(i3, i4, i9, i6, i7, i1, 1114111, 0) | 0; HEAP32[i5 >> 2] = HEAP32[i9 >> 2]; HEAP32[i8 >> 2] = HEAP32[i1 >> 2]; STACKTOP = i2; return i7 | 0; } function __ZN4wasm13WasmValidator9visitLoopEPNS_4LoopE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0; i2 = i1 + 12 | 0; if (HEAP32[i2 >> 2] | 0) __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE14__erase_uniqueIS3_EEjRKT_(i3 + 28 | 0, i2) | 0; i1 = i1 + 8 | 0; if (HEAP32[i1 >> 2] | 0) __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE14__erase_uniqueIS3_EEjRKT_(i3 + 28 | 0, i1) | 0; return; } function __ZNSt3__214__split_bufferINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEERNS5_IS9_Lj4096EEEEC2EjjSB_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; if (!i3) i1 = 0; else i1 = __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE8allocateEj(HEAP32[i1 >> 2] | 0, i3 << 4) | 0; HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 4) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 4); return; } function __ZN6cashew10IStringSetC2EOS0_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEEC2EOS9_(i1, i2); i4 = i1 + 20 | 0; i3 = i2 + 20 | 0; HEAP32[i4 >> 2] = 0; i5 = i1 + 24 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i1 + 28 >> 2] = 0; HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; i4 = i2 + 24 | 0; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; i2 = i2 + 28 | 0; HEAP32[i1 + 28 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = 0; HEAP32[i4 >> 2] = 0; HEAP32[i3 >> 2] = 0; return; } function __ZN11ArenaVectorIPN4wasm10ExpressionEE3setINSt3__26vectorIS2_NS5_9allocatorIS2_EEEEEEvRKT_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0; i5 = (HEAP32[i3 + 4 >> 2] | 0) - (HEAP32[i3 >> 2] | 0) >> 2; if ((HEAP32[i2 + 12 >> 2] | 0) >>> 0 < i5 >>> 0) __ZN11ArenaVectorIPN4wasm10ExpressionEE8allocateEj(i2, i5); i4 = i2 + 4 | 0; i1 = 0; while (1) { if ((i1 | 0) == (i5 | 0)) break; HEAP32[(HEAP32[i4 >> 2] | 0) + (i1 << 2) >> 2] = HEAP32[(HEAP32[i3 >> 2] | 0) + (i1 << 2) >> 2]; i1 = i1 + 1 | 0; } HEAP32[i2 + 8 >> 2] = i5; return; } function __ZNSt3__214__split_bufferINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEERNS8_ISA_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -12 | 0; HEAP32[i3 >> 2] = i4; __ZNSt3__213__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i4); } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj4EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP8[i1 + 11 >> 0] = 3; HEAP8[i1 >> 0] = HEAP8[i2 >> 0] | 0; HEAP8[i1 + 1 >> 0] = HEAP8[i2 + 1 >> 0] | 0; HEAP8[i1 + 2 >> 0] = HEAP8[i2 + 2 >> 0] | 0; HEAP8[i1 + 3 >> 0] = 0; i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function _strlen(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i4 = i1; L1 : do if (!(i4 & 3)) i3 = 4; else { i2 = i4; while (1) { if (!(HEAP8[i1 >> 0] | 0)) { i1 = i2; break L1; } i1 = i1 + 1 | 0; i2 = i1; if (!(i2 & 3)) { i3 = 4; break; } } } while (0); if ((i3 | 0) == 4) { while (1) { i2 = HEAP32[i1 >> 2] | 0; if (!((i2 & -2139062144 ^ -2139062144) & i2 + -16843009)) i1 = i1 + 4 | 0; else break; } if ((i2 & 255) << 24 >> 24) do i1 = i1 + 1 | 0; while ((HEAP8[i1 >> 0] | 0) != 0); } return i1 - i4 | 0; } function __ZNSt3__26vectorIcNS_9allocatorIcEEEC2ERKS3_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; HEAP32[i1 >> 2] = 0; i4 = i1 + 4 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; i5 = i2 + 4 | 0; i6 = (HEAP32[i5 >> 2] | 0) - (HEAP32[i2 >> 2] | 0) | 0; if (i6 | 0 ? (__ZNSt3__26vectorIcNS_9allocatorIcEEE8allocateEj(i1, i6), i7 = HEAP32[i2 >> 2] | 0, i3 = (HEAP32[i5 >> 2] | 0) - i7 | 0, (i3 | 0) > 0) : 0) { _memcpy(HEAP32[i4 >> 2] | 0, i7 | 0, i3 | 0) | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + i3; } return; } function __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE6resizeEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = i2 + 4 | 0; i1 = HEAP32[i6 >> 2] | 0; i5 = HEAP32[i2 >> 2] | 0; i4 = i1 - i5 >> 4; L1 : do if (i4 >>> 0 >= i3 >>> 0) { if (i4 >>> 0 > i3 >>> 0) { i2 = i5 + (i3 << 4) | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i5 = i1 + -16 | 0; HEAP32[i6 >> 2] = i5; i1 = i5; } } } else __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE8__appendEj(i2, i3 - i4 | 0); while (0); return; } function __ZNSt3__213__vector_baseINS_6vectorIN6cashew6ParserINS2_3RefENS2_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS7_EEEENS8_ISA_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -12 | 0; HEAP32[i3 >> 2] = i4; __ZNSt3__213__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i4); } __ZdlPv(HEAP32[i1 >> 2] | 0); } return; } function __ZNSt3__214__split_bufferIPcRNS_9allocatorIS1_EEEC2EjjS4_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0; i1 = i4 + 44 | 0; i3 = HEAP32[i1 >> 2] | 0; i2 = HEAP32[i4 + 24 >> 2] | 0; if (i3 >>> 0 < i2 >>> 0) { HEAP32[i1 >> 2] = i2; i3 = i2; } if (HEAP32[i4 + 48 >> 2] & 8) { i1 = i4 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < i3 >>> 0) { HEAP32[i1 >> 2] = i3; i2 = i3; } i1 = HEAP32[i4 + 12 >> 2] | 0; if (i1 >>> 0 < i2 >>> 0) i1 = HEAPU8[i1 >> 0] | 0; else i1 = -1; } else i1 = -1; return i1 | 0; } function __ZNSt3__214__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEPFvPvEPN4wasm6ThreadEEEEEES7_S7_(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = __ZNSt3__219__thread_local_dataEv() | 0; i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; __ZNSt3__221__thread_specific_ptrINS_15__thread_structEE5resetEPS1_(i3, i2); FUNCTION_TABLE_vi[HEAP32[i1 + 4 >> 2] & 255](HEAP32[i1 + 8 >> 2] | 0); __ZNSt3__212__tuple_leafILj0ENS_10unique_ptrINS_15__thread_structENS_14default_deleteIS2_EEEELb0EED2Ev(i1); __ZdlPv(i1); return 0; } function __ZNSt3__214__split_bufferIjRNS_9allocatorIjEEEC2EjjS3_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; do if (i3) if (i3 >>> 0 > 1073741823) { i4 = ___cxa_allocate_exception(4) | 0; __ZNSt9bad_allocC2Ev(i4); ___cxa_throw(i4 | 0, 2024, 148); } else { i1 = __Znwj(i3 << 2) | 0; break; } else i1 = 0; while (0); HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 2) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcjj(i1, i3, i4, i2) { i1 = i1 | 0; i3 = i3 | 0; i4 = i4 | 0; i2 = i2 | 0; var i5 = 0; if (i2 >>> 0 > 4294967279) __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i1); if (i2 >>> 0 < 11) HEAP8[i1 + 11 >> 0] = i4; else { i5 = i2 + 16 & -16; i2 = __Znwj(i5) | 0; HEAP32[i1 >> 2] = i2; HEAP32[i1 + 8 >> 2] = i5 | -2147483648; HEAP32[i1 + 4 >> 2] = i4; i1 = i2; } if (i4 | 0) _memcpy(i1 | 0, i3 | 0, i4 | 0) | 0; HEAP8[i1 + i4 >> 0] = 0; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEC2ERKS7_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; if ((HEAP8[i2 + 11 >> 0] | 0) < 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i1, HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0); else { HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; } return; } function __ZN6cashew5Value8setArrayERNSt3__26vectorINS_3RefENS1_9allocatorIS3_EEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; __ZN6cashew5Value4freeEv(i1); HEAP32[i1 >> 2] = 2; i3 = __ZN6cashew5Arena10allocArrayEv(45436) | 0; HEAP32[i1 + 8 >> 2] = i3; if ((i3 | 0) != (i2 | 0)) __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i3, HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0); return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_112parse_numberEPKcS2_(i2, i4) { i2 = i2 | 0; i4 = i4 | 0; var i1 = 0, i3 = 0; L1 : do if ((i2 | 0) != (i4 | 0) ? (i1 = (HEAP8[i2 >> 0] | 0) == 110 ? i2 + 1 | 0 : i2, (i1 | 0) != (i4 | 0)) : 0) { i3 = HEAP8[i1 >> 0] | 0; if (i3 << 24 >> 24 == 48) { i1 = i1 + 1 | 0; break; } if ((i3 + -49 & 255) < 9) do { i1 = i1 + 1 | 0; if ((i1 | 0) == (i4 | 0)) { i1 = i4; break L1; } } while (((HEAP8[i1 >> 0] | 0) + -48 | 0) >>> 0 < 10); else i1 = i2; } else i1 = i2; while (0); return i1 | 0; } function __ZN6cashew12ValueBuilder13appendToBlockENS_3RefES1_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i4 = i5; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45044) | 0) { i2 = __ZN6cashew3RefixEj(i2, 1) | 0; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i2, i1) | 0; STACKTOP = i5; return; } else ___assert_fail(29665, 34046, 1362, 29683); } function __ZN6cashew12ValueBuilder13appendToArrayENS_3RefES1_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i4 = i5; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45364) | 0) { i2 = __ZN6cashew3RefixEj(i2, 1) | 0; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i2, i1) | 0; STACKTOP = i5; return; } else ___assert_fail(29540, 34046, 1644, 29558); } function __ZN6cashew12ValueBuilder12appendToCallENS_3RefES1_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i5 + 4 | 0; i4 = i5; if (__ZN6cashew3RefeqERKNS_7IStringE(__ZN6cashew3RefixEj(i2, 0) | 0, 45108) | 0) { i2 = __ZN6cashew3RefixEj(i2, 2) | 0; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; __ZN6cashew5Value9push_backENS_3RefE(i2, i1) | 0; STACKTOP = i5; return; } else ___assert_fail(29244, 34046, 1447, 29260); } function __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew3RefE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(46772, i1) | 0, 32) | 0; __ZN6cashew5Value9stringifyERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i2 >> 2] | 0, 46772, 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(46772, 10) | 0; _abort(); } function _memset(i2, i6, i1) { i2 = i2 | 0; i6 = i6 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i7 = 0; i3 = i2 + i1 | 0; if ((i1 | 0) >= 20) { i6 = i6 & 255; i5 = i2 & 3; i7 = i6 | i6 << 8 | i6 << 16 | i6 << 24; i4 = i3 & ~3; if (i5) { i5 = i2 + 4 - i5 | 0; while ((i2 | 0) < (i5 | 0)) { HEAP8[i2 >> 0] = i6; i2 = i2 + 1 | 0; } } while ((i2 | 0) < (i4 | 0)) { HEAP32[i2 >> 2] = i7; i2 = i2 + 4 | 0; } } while ((i2 | 0) < (i3 | 0)) { HEAP8[i2 >> 0] = i6; i2 = i2 + 1 | 0; } return i2 - i1 | 0; } function __ZNSt3__214__split_bufferINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEERNS5_IS7_Lj4096EEEEC2EjjS9_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; if (!i3) i1 = 0; else i1 = __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE8allocateEj(HEAP32[i1 >> 2] | 0, i3 << 4) | 0; HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 << 4) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 << 4); return; } function __ZN4wasm13WasmValidator10visitStoreEPNS_5StoreE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator17validateAlignmentEj(i1, HEAP32[i2 + 16 >> 2] | 0); __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_5StoreENS_8WasmTypeEEEbT0_S5_T_PKc(i1, HEAP32[(HEAP32[i2 + 20 >> 2] | 0) + 4 >> 2] | 0, 1, i2, 15618) | 0; __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_5StoreENS_8WasmTypeEEEbT0_S5_T_PKc(i1, HEAP32[(HEAP32[i2 + 24 >> 2] | 0) + 4 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0, i2, 15649) | 0; return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder12MappedGlobalEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_SK_SK_(i2, i4, i1, i3) { i2 = i2 | 0; i4 = i4 | 0; i1 = i1 | 0; i3 = i3 | 0; L1 : while (1) { while (1) { if (!i1) break L1; if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) break; i1 = HEAP32[i1 + 4 >> 2] | 0; } i3 = i1; i1 = HEAP32[i1 >> 2] | 0; } return i3 | 0; } function __ZNSt3__26threadC2IRFvPvEJPN4wasm34OptimizingIncrementalModuleBuilderEEvEEOT_DpOT0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i5 = __Znwj(4) | 0; __ZNSt3__215__thread_structC2Ev(i5); i4 = __Znwj(12) | 0; i3 = HEAP32[i3 >> 2] | 0; HEAP32[i4 >> 2] = i5; HEAP32[i4 + 4 >> 2] = i2; HEAP32[i4 + 8 >> 2] = i3; if (_pthread_create(i1 | 0, 0, 88, i4 | 0) | 0) { __ZNSt3__212__tuple_leafILj0ENS_10unique_ptrINS_15__thread_structENS_14default_deleteIS2_EEEELb0EED2Ev(i4); __ZdlPv(i4); } return; } function __ZN4wasmL8abort_onENSt3__212basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEN6cashew7IStringE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(46772, i1) | 0, 32) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, HEAP32[i2 >> 2] | 0) | 0, 10) | 0; _abort(); } function __ZNSt3__214__split_bufferIPNS_6locale5facetERNS_15__sso_allocatorIS3_Lj28EEEED2Ev(i4) { i4 = i4 | 0; var i1 = 0, i2 = 0, i3 = 0, i5 = 0; i1 = HEAP32[i4 + 4 >> 2] | 0; i2 = i4 + 8 | 0; i3 = HEAP32[i2 >> 2] | 0; while (1) { if ((i3 | 0) == (i1 | 0)) break; i5 = i3 + -4 | 0; HEAP32[i2 >> 2] = i5; i3 = i5; } i2 = HEAP32[i4 >> 2] | 0; do if (i2 | 0) { i1 = HEAP32[i4 + 16 >> 2] | 0; if ((i1 | 0) == (i2 | 0)) { HEAP8[i1 + 112 >> 0] = 0; break; } else { __ZdlPv(i2); break; } } while (0); return; } function __ZNSt3__211__call_onceERVmPvPFvS2_E(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; _pthread_mutex_lock(49316) | 0; while (1) { if ((HEAP32[i1 >> 2] | 0) != 1) break; _pthread_cond_wait(49344, 49316) | 0; } if (!(HEAP32[i1 >> 2] | 0)) { HEAP32[i1 >> 2] = 1; _pthread_mutex_unlock(49316) | 0; FUNCTION_TABLE_vi[i3 & 255](i2); _pthread_mutex_lock(49316) | 0; HEAP32[i1 >> 2] = -1; _pthread_mutex_unlock(49316) | 0; _pthread_cond_broadcast(49344) | 0; } else _pthread_mutex_unlock(49316) | 0; return; } function __ZNSt3__26__treeINS_12__value_typeIN6cashew7IStringEN4wasm15Asm2WasmBuilder4ViewEEENS_19__map_value_compareIS3_S7_NS_4lessIS3_EELb1EEENS_9allocatorIS7_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS7_PNS_11__tree_nodeIS7_PvEEiEERKT_SK_SK_(i2, i4, i1, i3) { i2 = i2 | 0; i4 = i4 | 0; i1 = i1 | 0; i3 = i3 | 0; L1 : while (1) { while (1) { if (!i1) break L1; if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) break; i1 = HEAP32[i1 + 4 >> 2] | 0; } i3 = i1; i1 = HEAP32[i1 >> 2] | 0; } return i3 | 0; } function __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEC2ERKS4_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = i2 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; do if (i4) if ((i4 | 0) == (i2 | 0)) { HEAP32[i1 + 16 >> 2] = i1; i4 = HEAP32[i3 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] & 255](i4, i1); break; } else { i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4) | 0; HEAP32[i1 + 16 >> 2] = i4; break; } else HEAP32[i1 + 16 >> 2] = 0; while (0); return; } function __ZN4wasm10PassRunner34addDefaultGlobalOptimizationPassesEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i2; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i3, 29921, 30); __ZN4wasm10PassRunner3addENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i3); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3); STACKTOP = i2; return; } function __ZN4wasm12FunctionTypeaSERKS0_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i5 = i2; i4 = HEAP32[i5 + 4 >> 2] | 0; i3 = i1; HEAP32[i3 >> 2] = HEAP32[i5 >> 2]; HEAP32[i3 + 4 >> 2] = i4; if ((i1 | 0) != (i2 | 0)) __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE6assignIPS2_EENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(i1 + 8 | 0, HEAP32[i2 + 8 >> 2] | 0, HEAP32[i2 + 12 >> 2] | 0); return i1 | 0; } function __ZZN4wasm22SExpressionWasmBuilder13parseFunctionERNS_7ElementEENKUlvE0_clEv(i1) { i1 = i1 | 0; var i2 = 0; if (!(HEAP32[HEAP32[i1 >> 2] >> 2] | 0)) { i2 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[(HEAP32[i1 + 4 >> 2] | 0) + 4 >> 2] | 0) | 0; HEAP32[HEAP32[i1 >> 2] >> 2] = i2; i2 = i1 + 8 | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_((HEAP32[HEAP32[i1 >> 2] >> 2] | 0) + 12 | 0, HEAP32[HEAP32[i2 >> 2] >> 2] | 0); HEAP32[HEAP32[i2 >> 2] >> 2] = HEAP32[HEAP32[i1 >> 2] >> 2]; } return; } function __ZN6cashew19DotZeroValueBuilder10makeDoubleEd(d1) { d1 = +d1; var i2 = 0, i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3 + 12 | 0; i4 = i3 + 8 | 0; i6 = i3 + 4 | 0; i5 = i3; HEAP32[i6 >> 2] = HEAP32[11298]; i7 = __ZN6cashew12ValueBuilder10makeDoubleEd(d1) | 0; HEAP32[i5 >> 2] = i7; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; HEAP32[i2 >> 2] = HEAP32[i5 >> 2]; i2 = __ZN6cashew12ValueBuilder10makePrefixENS_7IStringENS_3RefE(i4, i2) | 0; STACKTOP = i3; return i2 | 0; } function __ZNSt3__214__split_bufferIN10__cxxabiv112_GLOBAL__N_111string_pairERNS2_11short_allocIS3_Lj4096EEEEC2EjjS6_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; if (!i3) i1 = 0; else i1 = __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE8allocateEj(HEAP32[i1 >> 2] | 0, i3 * 24 | 0) | 0; HEAP32[i2 >> 2] = i1; i4 = i1 + (i4 * 24 | 0) | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + (i3 * 24 | 0); return; } function __ZNSt3__26vectorINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEE18__construct_at_endEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = i1 + 4 | 0; i1 = i2; i2 = HEAP32[i3 >> 2] | 0; do { HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = 0; HEAPF32[i2 + 16 >> 2] = 1.0; i2 = (HEAP32[i3 >> 2] | 0) + 20 | 0; HEAP32[i3 >> 2] = i2; i1 = i1 + -1 | 0; } while ((i1 | 0) != 0); return; } function __ZNSt3__26vectorIcNS_9allocatorIcEEE6resizeEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = i2 + 4 | 0; i1 = HEAP32[i6 >> 2] | 0; i5 = HEAP32[i2 >> 2] | 0; i4 = i1 - i5 | 0; L1 : do if (i4 >>> 0 >= i3 >>> 0) { if (i4 >>> 0 > i3 >>> 0) { i2 = i5 + i3 | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break L1; i5 = i1 + -1 | 0; HEAP32[i6 >> 2] = i5; i1 = i5; } } } else __ZNSt3__26vectorIcNS_9allocatorIcEEE8__appendEj(i2, i3 - i4 | 0); while (0); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm8FunctionENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 + 4 >> 2] | 0; i4 = i2 + 8 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZN4wasm8FunctionD2Ev(i1); __ZdlPv(i1); } i1 = HEAP32[i2 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__213__vector_baseINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 >> 2] | 0; if (i3 | 0) { i4 = i2 + 4 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZN4wasm6ThreadD2Ev(i1); __ZdlPv(i1); } __ZdlPv(HEAP32[i2 >> 2] | 0); } return; } function __ZN4wasm22SExpressionWasmBuilder8makeHostERNS_7ElementENS_6HostOpE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; i4 = __ZN10MixedArena5allocIN4wasm4HostEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; HEAP32[i4 + 8 >> 2] = i3; if ((i3 | 0) == 3) { i3 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i4 + 12 >> 2] = i3; } else __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_4HostEEEvRNS_7ElementEjPT_(i1, i2, 1, i4); __ZN4wasm4Host8finalizeEv(i4); return i4 | 0; } function __ZNSt3__213__vector_baseINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEENS_9allocatorIS5_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 >> 2] | 0; if (i3 | 0) { i4 = i2 + 4 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZNSt3__26threadD2Ev(i1); __ZdlPv(i1); } __ZdlPv(HEAP32[i2 >> 2] | 0); } return; } function _strerror(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0; i3 = 0; while (1) { if ((HEAPU8[36175 + i3 >> 0] | 0) == (i2 | 0)) { i2 = 2; break; } i1 = i3 + 1 | 0; if ((i1 | 0) == 87) { i1 = 36263; i3 = 87; i2 = 5; break; } else i3 = i1; } if ((i2 | 0) == 2) if (!i3) i1 = 36263; else { i1 = 36263; i2 = 5; } if ((i2 | 0) == 5) while (1) { do { i2 = i1; i1 = i1 + 1 | 0; } while ((HEAP8[i2 >> 0] | 0) != 0); i3 = i3 + -1 | 0; if (!i3) break; else i2 = 5; } return i1 | 0; } function __ZNSt3__28functionIFPN4wasm4PassEvEEC2ERKS5_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = i2 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; do if (i4) if ((i4 | 0) == (i2 | 0)) { HEAP32[i1 + 16 >> 2] = i1; i4 = HEAP32[i3 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] & 255](i4, i1); break; } else { i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 8 >> 2] & 127](i4) | 0; HEAP32[i1 + 16 >> 2] = i4; break; } else HEAP32[i1 + 16 >> 2] = 0; while (0); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 + 4 >> 2] | 0; i4 = i2 + 8 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZN4wasm6ThreadD2Ev(i1); __ZdlPv(i1); } i1 = HEAP32[i2 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; if ((i1 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNK10__cxxabiv117__class_type_info29process_static_type_above_dstEPNS_19__dynamic_cast_infoEPKvS4_i(0, i2, i3, i4, i5); else { i1 = HEAP32[i1 + 8 >> 2] | 0; FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 15](i1, i2, i3, i4, i5, i6); } return; } function __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_12CallIndirectEEEvRNS_7ElementEjPT_(i3, i4, i1, i2) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; var i5 = 0; i2 = i2 + 8 | 0; while (1) { i5 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i2, __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, __ZN4wasm7ElementixEj(i4, i1) | 0) | 0); i1 = i1 + 1 | 0; } return; } function __ZNSt3__214__split_bufferINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEERNS_9allocatorIS5_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 + 4 >> 2] | 0; i4 = i2 + 8 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZNSt3__26threadD2Ev(i1); __ZdlPv(i1); } i1 = HEAP32[i2 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEEclES5_j(i1, i3, i2) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i5; HEAP32[i4 >> 2] = i2; i1 = HEAP32[i1 + 16 >> 2] | 0; if (!i1) { i5 = ___cxa_allocate_exception(4) | 0; HEAP32[i5 >> 2] = 2304; ___cxa_throw(i5 | 0, 48, 11); } else { i4 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 31](i1, i3, i4) | 0; STACKTOP = i5; return i4 | 0; } return 0; } function __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_10CallImportEEEvRNS_7ElementEjPT_(i3, i4, i1, i2) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; var i5 = 0; i2 = i2 + 8 | 0; while (1) { i5 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i2, __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, __ZN4wasm7ElementixEj(i4, i1) | 0) | 0); i1 = i1 + 1 | 0; } return; } function __ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0; i1 = i1 + 4 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break; } i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i3, i2) | 0) continue; if (!(__ZNK6cashew7IStringltERKS0_(i2, i3) | 0)) { i1 = 1; break; } i1 = i1 + 4 | 0; } return i1 | 0; } function __ZN4wasm6Module15getFunctionTypeENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 128 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) ___assert_fail(17466, 14782, 1502, 17495); else { i2 = __ZNSt3__23mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) | 0; return HEAP32[i2 >> 2] | 0; } return 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS5_PNS_11__tree_nodeIS5_PvEEiEERKT_SI_SI_(i2, i4, i1, i3) { i2 = i2 | 0; i4 = i4 | 0; i1 = i1 | 0; i3 = i3 | 0; L1 : while (1) { while (1) { if (!i1) break L1; if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) break; i1 = HEAP32[i1 + 4 >> 2] | 0; } i3 = i1; i1 = HEAP32[i1 >> 2] | 0; } return i3 | 0; } function __ZN4wasm34OptimizingIncrementalModuleBuilder16optimizeGloballyEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i3 = i2; i1 = HEAP32[i1 >> 2] | 0; HEAP32[i3 >> 2] = i1; HEAP32[i3 + 4 >> 2] = i1 + 100; HEAP32[i3 + 8 >> 2] = 0; HEAP32[i3 + 12 >> 2] = 0; HEAP32[i3 + 16 >> 2] = 0; HEAP8[i3 + 24 >> 0] = 0; __ZN4wasm10PassRunner34addDefaultGlobalOptimizationPassesEv(i3); __ZN4wasm10PassRunner3runEv(i3); __ZN4wasm10PassRunnerD2Ev(i3); STACKTOP = i2; return; } function __ZN4wasm15MinifiedPrinter3runEPNS_10PassRunnerEPNS_6ModuleE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i2; HEAP32[i4 >> 2] = HEAP32[i1 + 16 >> 2]; HEAP32[i4 + 4 >> 2] = 0; HEAP8[i4 + 20 >> 0] = 0; HEAP32[i4 + 24 >> 2] = 0; HEAP32[i4 + 28 >> 2] = 0; HEAP8[i4 + 8 >> 0] = 1; HEAP32[i4 + 12 >> 2] = 53494; HEAP32[i4 + 16 >> 2] = 53494; __ZN4wasm16PrintSExpression11visitModuleEPNS_6ModuleE(i4, i3); STACKTOP = i2; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE13__lower_boundIS3_EENS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEEiEERKT_SJ_SJ_(i2, i4, i1, i3) { i2 = i2 | 0; i4 = i4 | 0; i1 = i1 | 0; i3 = i3 | 0; L1 : while (1) { while (1) { if (!i1) break L1; if (!(__ZNK6cashew7IStringltERKS0_(i1 + 16 | 0, i4) | 0)) break; i1 = HEAP32[i1 + 4 >> 2] | 0; } i3 = i1; i1 = HEAP32[i1 >> 2] | 0; } return i3 | 0; } function __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_4HostEEEvRNS_7ElementEjPT_(i3, i4, i1, i2) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; var i5 = 0; i2 = i2 + 16 | 0; while (1) { i5 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i2, __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, __ZN4wasm7ElementixEj(i4, i1) | 0) | 0); i1 = i1 + 1 | 0; } return; } function __ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0; i1 = i1 + 4 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break; } i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i3, i2) | 0) continue; if (!(__ZNK6cashew7IStringltERKS0_(i2, i3) | 0)) { i1 = 1; break; } i1 = i1 + 4 | 0; } return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder17parseCallOperandsINS_4CallEEEvRNS_7ElementEjPT_(i3, i4, i1, i2) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; var i5 = 0; i2 = i2 + 8 | 0; while (1) { i5 = (__ZN4wasm7Element4listEv(i4) | 0) + 8 | 0; if (i1 >>> 0 >= (HEAP32[i5 >> 2] | 0) >>> 0) break; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i2, __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i3, __ZN4wasm7ElementixEj(i4, i1) | 0) | 0); i1 = i1 + 1 | 0; } return; } function __ZNSt3__26threadC2IRFvPvEJPN4wasm6ThreadEEvEEOT_DpOT0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i5 = __Znwj(4) | 0; __ZNSt3__215__thread_structC2Ev(i5); i4 = __Znwj(12) | 0; i3 = HEAP32[i3 >> 2] | 0; HEAP32[i4 >> 2] = i5; HEAP32[i4 + 4 >> 2] = i2; HEAP32[i4 + 8 >> 2] = i3; if (_pthread_create(i1 | 0, 0, 89, i4 | 0) | 0) { __ZNSt3__212__tuple_leafILj0ENS_10unique_ptrINS_15__thread_structENS_14default_deleteIS2_EEEELb0EED2Ev(i4); __ZdlPv(i4); } return; } function __ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE14__count_uniqueIS3_EEjRKT_(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0; i1 = i1 + 4 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break; } i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i3, i2) | 0) continue; if (!(__ZNK6cashew7IStringltERKS0_(i2, i3) | 0)) { i1 = 1; break; } i1 = i1 + 4 | 0; } return i1 | 0; } function __ZN4wasm11FullPrinter3runEPNS_10PassRunnerEPNS_6ModuleE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i2; HEAP32[i4 >> 2] = HEAP32[i1 + 16 >> 2]; HEAP32[i4 + 4 >> 2] = 0; HEAP32[i4 + 24 >> 2] = 0; HEAP32[i4 + 28 >> 2] = 0; HEAP8[i4 + 8 >> 0] = 0; HEAP32[i4 + 12 >> 2] = 42465; HEAP32[i4 + 16 >> 2] = 31522; HEAP8[i4 + 20 >> 0] = 1; __ZN4wasm16PrintSExpression11visitModuleEPNS_6ModuleE(i4, i3); STACKTOP = i2; return; } function __ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0; i1 = i1 + 4 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break; } i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i3, i2) | 0) continue; if (!(__ZNK6cashew7IStringltERKS0_(i2, i3) | 0)) { i1 = 1; break; } i1 = i1 + 4 | 0; } return i1 | 0; } function __ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0; i1 = i1 + 4 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break; } i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i3, i2) | 0) continue; if (!(__ZNK6cashew7IStringltERKS0_(i2, i3) | 0)) { i1 = 1; break; } i1 = i1 + 4 | 0; } return i1 | 0; } function __ZN6cashew5Value9push_backENS_3RefE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; if ((HEAP32[i1 >> 2] | 0) != 2) ___assert_fail(34036, 34046, 479, 28515); i3 = HEAP32[i1 + 8 >> 2] | 0; i4 = i3 + 4 | 0; i5 = HEAP32[i4 >> 2] | 0; if ((i5 | 0) == (HEAP32[i3 + 8 >> 2] | 0)) __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(i3, i2); else { HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 4; } return i1 | 0; } function __ZN4wasm13WasmValidator9visitHostEPNS_4HostE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if ((HEAP32[i2 + 8 >> 2] | 0) == 2) { __ZN4wasm13WasmValidator13shouldBeEqualIPNS_4HostEjEEbT0_S4_T_PKc(i1, HEAP32[i2 + 24 >> 2] | 0, 1, i2, 16170) | 0; i3 = __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i2 + 16 | 0, 0) | 0; __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_4HostENS_8WasmTypeEEEbT0_S5_T_PKc(i1, HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] | 0, 1, i2, 16202) | 0; } return; } function __ZN4wasm15Asm2WasmBuilder18isUnsignedCoercionEN6cashew3RefE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 12 | 0; i5 = i3 + 8 | 0; i7 = i3 + 4 | 0; i6 = i3; HEAP32[i7 >> 2] = HEAP32[i2 >> 2]; HEAP32[i6 >> 2] = HEAP32[i1 + 72 >> 2]; HEAP32[i5 >> 2] = HEAP32[i7 >> 2]; HEAP32[i4 >> 2] = HEAP32[i6 >> 2]; i2 = (__Z10detectSignN6cashew3RefENS_7IStringE(i5, i4) | 0) == 2; STACKTOP = i3; return i2 | 0; } function __ZNK4wasm7Literal19countTrailingZeroesEv(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0; i2 = i1 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) { i1 = __ZN4wasm19CountTrailingZeroesIjEEiT_(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i3 + 8 >> 2] = i1; i1 = 1; } else { i2 = __ZN4wasm19CountTrailingZeroesIyEEiT_(HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0) | 0; i1 = i3 + 8 | 0; HEAP32[i1 >> 2] = i2; HEAP32[i1 + 4 >> 2] = ((i2 | 0) < 0) << 31 >> 31; i1 = 2; } HEAP32[i3 >> 2] = i1; return; } function __ZN4wasm7Printer3runEPNS_10PassRunnerEPNS_6ModuleE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i2; HEAP32[i4 >> 2] = HEAP32[i1 + 16 >> 2]; HEAP32[i4 + 4 >> 2] = 0; HEAP8[i4 + 20 >> 0] = 0; HEAP32[i4 + 24 >> 2] = 0; HEAP32[i4 + 28 >> 2] = 0; HEAP8[i4 + 8 >> 0] = 0; HEAP32[i4 + 12 >> 2] = 42465; HEAP32[i4 + 16 >> 2] = 31522; __ZN4wasm16PrintSExpression11visitModuleEPNS_6ModuleE(i4, i3); STACKTOP = i2; return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj18EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i1, i2, 17); i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj15EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i1, i2, 14); i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj14EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i1, i2, 13); i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj13EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i1, i2, 12); i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairC2ILj12EEERAT__Kc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6__initEPKcj(i1, i2, 11); i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNK4wasm7Literal18countLeadingZeroesEv(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0; i2 = i1 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) { i1 = __ZN4wasm18CountLeadingZeroesIjEEiT_(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i3 + 8 >> 2] = i1; i1 = 1; } else { i2 = __ZN4wasm18CountLeadingZeroesIyEEiT_(HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0) | 0; i1 = i3 + 8 | 0; HEAP32[i1 >> 2] = i2; HEAP32[i1 + 4 >> 2] = ((i2 | 0) < 0) << 31 >> 31; i1 = 2; } HEAP32[i3 >> 2] = i1; return; } function __ZN4wasm6Module11getFunctionENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 164 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) ___assert_fail(26193, 14782, 1505, 26218); else { i2 = __ZNSt3__23mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) | 0; return HEAP32[i2 >> 2] | 0; } return 0; } function __ZN4wasm15Asm2WasmBuilder8blockifyEPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if ((HEAP32[i2 >> 2] | 0) == 1 ? (i3 = (__ZN4wasm10Expression4castINS_5BlockEEEPT_v(i2) | 0) + 8 | 0, (HEAP32[i3 >> 2] | 0) == 0) : 0) i1 = (HEAP32[i2 >> 2] | 0) == 1 ? i2 : 0; else { i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1 + 12 | 0, i2); __ZN4wasm5Block8finalizeEv(i1); } return i1 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_12DbD2Ev(i1) { i1 = i1 | 0; __ZNSt3__213__vector_baseINS_6vectorINS1_IN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEEENS5_IS9_Lj4096EEEED2Ev(i1 + 32 | 0); __ZNSt3__213__vector_baseINS_6vectorIN10__cxxabiv112_GLOBAL__N_111string_pairENS3_11short_allocIS4_Lj4096EEEEENS5_IS7_Lj4096EEEED2Ev(i1 + 16 | 0); __ZNSt3__213__vector_baseIN10__cxxabiv112_GLOBAL__N_111string_pairENS2_11short_allocIS3_Lj4096EEEED2Ev(i1); return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; if ((HEAP8[i2 + 11 >> 0] | 0) < 0) __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0); else { HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i2 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; } return; } function __ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE14__count_uniqueIS3_EEjRKT_(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0; i1 = i1 + 4 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break; } i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i3, i2) | 0) continue; if (!(__ZNK6cashew7IStringltERKS0_(i2, i3) | 0)) { i1 = 1; break; } i1 = i1 + 4 | 0; } return i1 | 0; } function __ZNK10__cxxabiv122__base_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i2, i3, i4, i5, i6, i7) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; var i1 = 0, i8 = 0; i8 = HEAP32[i2 + 4 >> 2] | 0; i1 = i8 >> 8; if (i8 & 1) i1 = HEAP32[(HEAP32[i5 >> 2] | 0) + i1 >> 2] | 0; i2 = HEAP32[i2 >> 2] | 0; FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 15](i2, i3, i4, i5 + i1 | 0, i8 & 2 | 0 ? i6 : 2, i7); return; } function ___stdio_seek(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i6 = i5; i4 = i5 + 20 | 0; HEAP32[i6 >> 2] = HEAP32[i1 + 60 >> 2]; HEAP32[i6 + 4 >> 2] = 0; HEAP32[i6 + 8 >> 2] = i2; HEAP32[i6 + 12 >> 2] = i4; HEAP32[i6 + 16 >> 2] = i3; if ((___syscall_ret(___syscall140(140, i6 | 0) | 0) | 0) < 0) { HEAP32[i4 >> 2] = -1; i1 = -1; } else i1 = HEAP32[i4 >> 2] | 0; STACKTOP = i5; return i1 | 0; } function __ZN4wasm6Module9getImportENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 140 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) ___assert_fail(18354, 14782, 1503, 18377); else { i2 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) | 0; return HEAP32[i2 >> 2] | 0; } return 0; } function __ZN4wasm6Module9getExportENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 152 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) ___assert_fail(26160, 14782, 1504, 26183); else { i2 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) | 0; return HEAP32[i2 >> 2] | 0; } return 0; } function __ZNSt3__219__tree_right_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i3) { i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0, i5 = 0; i4 = HEAP32[i3 >> 2] | 0; i5 = i4 + 4 | 0; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i3 >> 2] = i1; if (i1 | 0) HEAP32[i1 + 8 >> 2] = i3; i1 = i3 + 8 | 0; HEAP32[i4 + 8 >> 2] = HEAP32[i1 >> 2]; i2 = HEAP32[i1 >> 2] | 0; if ((HEAP32[i2 >> 2] | 0) == (i3 | 0)) HEAP32[i2 >> 2] = i4; else HEAP32[i2 + 4 >> 2] = i4; HEAP32[i5 >> 2] = i3; HEAP32[i1 >> 2] = i4; return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ImportENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 + 4 >> 2] | 0; i4 = i2 + 8 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZdlPv(i1); } i1 = HEAP32[i2 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6GlobalENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 + 4 >> 2] | 0; i4 = i2 + 8 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZdlPv(i1); } i1 = HEAP32[i2 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferINS_10unique_ptrIN4wasm6ExportENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EEED2Ev(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = HEAP32[i2 + 4 >> 2] | 0; i4 = i2 + 8 | 0; while (1) { i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (i3 | 0)) break; i5 = i1 + -4 | 0; HEAP32[i4 >> 2] = i5; i1 = HEAP32[i5 >> 2] | 0; HEAP32[i5 >> 2] = 0; if (!i1) continue; __ZdlPv(i1); } i1 = HEAP32[i2 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EEclEOS5_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3 + 4 | 0; i5 = i3; HEAP32[i5 >> 2] = HEAP32[i2 >> 2]; HEAP32[i4 >> 2] = HEAP32[i5 >> 2]; i2 = __ZZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEENK3__1clES2_(i1 + 4 | 0, i4) | 0; STACKTOP = i3; return i2 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseMaybeBracketedERPcPKc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE9skipSpaceERPc(i2); if ((HEAP8[HEAP32[i2 >> 2] >> 0] | 0) == 123) i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE19parseBracketedBlockERPc(i1, i2) | 0; else i1 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE23parseElementOrStatementERPcPKc(i1, i2, i3) | 0; return i1 | 0; } function __ZN4wasm6Memory7SegmentC2EOS1_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; i4 = i1 + 4 | 0; i3 = i2 + 4 | 0; HEAP32[i4 >> 2] = 0; i5 = i1 + 8 | 0; HEAP32[i5 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; i4 = i2 + 8 | 0; HEAP32[i5 >> 2] = HEAP32[i4 >> 2]; i2 = i2 + 12 | 0; HEAP32[i1 + 12 >> 2] = HEAP32[i2 >> 2]; HEAP32[i2 >> 2] = 0; HEAP32[i4 >> 2] = 0; HEAP32[i3 >> 2] = 0; return; } function __ZNSt3__212_GLOBAL__N_130throw_from_string_out_of_rangeERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; i3 = i3 + 4 | 0; __ZNSt3__2plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_PKS6_(i3, i1, 41633); i1 = HEAP32[806] | 0; HEAP32[i2 >> 2] = (HEAP8[i3 + 11 >> 0] | 0) < 0 ? HEAP32[i3 >> 2] | 0 : i3; _fprintf(i1, 41629, i2) | 0; _abort(); } function __ZNSt3__212_GLOBAL__N_129throw_from_string_invalid_argERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; i3 = i3 + 4 | 0; __ZNSt3__2plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_PKS6_(i3, i1, 41613); i1 = HEAP32[806] | 0; HEAP32[i2 >> 2] = (HEAP8[i3 + 11 >> 0] | 0) < 0 ? HEAP32[i3 >> 2] | 0 : i3; _fprintf(i1, 41629, i2) | 0; _abort(); } function __ZN4wasm6Module17checkFunctionTypeENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 128 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_12FunctionTypeEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) i1 = 0; else { i1 = __ZNSt3__23mapIN4wasm4NameEPNS1_12FunctionTypeENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) | 0; i1 = HEAP32[i1 >> 2] | 0; } return i1 | 0; } function __ZNSt3__218__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_(i3) { i3 = i3 | 0; var i1 = 0, i2 = 0, i4 = 0; i2 = i3 + 4 | 0; i4 = HEAP32[i2 >> 2] | 0; i1 = HEAP32[i4 >> 2] | 0; HEAP32[i2 >> 2] = i1; if (i1 | 0) HEAP32[i1 + 8 >> 2] = i3; i1 = i3 + 8 | 0; HEAP32[i4 + 8 >> 2] = HEAP32[i1 >> 2]; i2 = HEAP32[i1 >> 2] | 0; if ((HEAP32[i2 >> 2] | 0) == (i3 | 0)) HEAP32[i2 >> 2] = i4; else HEAP32[i2 + 4 >> 2] = i4; HEAP32[i4 >> 2] = i3; HEAP32[i1 >> 2] = i4; return; } function __ZNSt3__213__vector_baseIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 >> 2] | 0; do if (i2 | 0) { i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } if ((i1 + 16 | 0) == (i2 | 0)) { HEAP8[i1 + 128 >> 0] = 0; break; } else { __ZdlPv(i2); break; } } while (0); return; } function __ZNSt3__210__stdinbufIwE5imbueERKNS_6localeE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49276) | 0; i3 = i1 + 36 | 0; HEAP32[i3 >> 2] = i4; i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 24 >> 2] & 127](i4) | 0; i2 = i1 + 44 | 0; HEAP32[i2 >> 2] = i4; i3 = HEAP32[i3 >> 2] | 0; i3 = (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 127](i3) | 0) & 1; HEAP8[i1 + 53 >> 0] = i3; return; } function __ZNSt3__210__stdinbufIcE5imbueERKNS_6localeE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i4 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49268) | 0; i3 = i1 + 36 | 0; HEAP32[i3 >> 2] = i4; i4 = FUNCTION_TABLE_ii[HEAP32[(HEAP32[i4 >> 2] | 0) + 24 >> 2] & 127](i4) | 0; i2 = i1 + 44 | 0; HEAP32[i2 >> 2] = i4; i3 = HEAP32[i3 >> 2] | 0; i3 = (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i3 >> 2] | 0) + 28 >> 2] & 127](i3) | 0) & 1; HEAP8[i1 + 53 >> 0] = i3; return; } function __ZN4wasm7Literal11setQuietNaNEd(d1) { d1 = +d1; var i2 = 0, i3 = 0, i4 = 0; HEAPF64[tempDoublePtr >> 3] = d1; i2 = HEAP32[tempDoublePtr >> 2] | 0; i3 = HEAP32[tempDoublePtr + 4 >> 2] | 0; i4 = i3 & 2147483647; if (i4 >>> 0 > 2146435072 | (i4 | 0) == 2146435072 & i2 >>> 0 > 0) { HEAP32[tempDoublePtr >> 2] = i2; HEAP32[tempDoublePtr + 4 >> 2] = i3 | 524288; return +(+HEAPF64[tempDoublePtr >> 3]); } else ___assert_fail(24967, 14782, 301, 25001); return +(0.0); } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE8parseNewERPcPKc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 4 | 0; i6 = i4; i3 = __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE12parseElementERPcPKc(i1, i2, i3) | 0; HEAP32[i6 >> 2] = i3; HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; i3 = __ZN6cashew12ValueBuilder7makeNewENS_3RefE(i5) | 0; STACKTOP = i4; return i3 | 0; } function __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEE7destroyEPNS_11__tree_nodeISB_PvEE(i1, HEAP32[i1 + 4 >> 2] | 0); return; } function _wmemmove(i4, i3, i1) { i4 = i4 | 0; i3 = i3 | 0; i1 = i1 | 0; var i2 = 0; i2 = (i1 | 0) == 0; if (i4 - i3 >> 2 >>> 0 < i1 >>> 0) { if (!i2) do { i1 = i1 + -1 | 0; HEAP32[i4 + (i1 << 2) >> 2] = HEAP32[i3 + (i1 << 2) >> 2]; } while ((i1 | 0) != 0); } else if (!i2) { i2 = i3; i3 = i4; while (1) { i1 = i1 + -1 | 0; HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; if (!i1) break; else { i2 = i2 + 4 | 0; i3 = i3 + 4 | 0; } } } return i4 | 0; } function __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE8allocateEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; if (i3 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i2); i1 = i2 + 128 | 0; if (i3 >>> 0 < 29 & (HEAP8[i1 >> 0] | 0) == 0) { HEAP8[i1 >> 0] = 1; i1 = i2 + 16 | 0; } else i1 = __Znwj(i3 << 2) | 0; HEAP32[i2 + 4 >> 2] = i1; HEAP32[i2 >> 2] = i1; HEAP32[i2 + 8 >> 2] = i1 + (i3 << 2); return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE5clearEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = i1 + 4 | 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, HEAP32[i2 >> 2] | 0); HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 >> 2] = i2; HEAP32[i2 >> 2] = 0; return; } function __ZN4wasm8Function13getLocalIndexENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 52 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) ___assert_fail(18480, 14782, 1402, 18509); else { i2 = __ZNSt3__23mapIN4wasm4NameEjNS_4lessIS2_EENS_9allocatorINS_4pairIKS2_jEEEEEixERS7_(i1, i2) | 0; return HEAP32[i2 >> 2] | 0; } return 0; } function __ZN4wasm34OptimizingIncrementalModuleBuilder11addFunctionEPNS_8FunctionE(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0; __ZN4wasm6Module11addFunctionEPNS_8FunctionE(HEAP32[i3 >> 2] | 0, i1); __ZN4wasm34OptimizingIncrementalModuleBuilder13queueFunctionEPNS_8FunctionE(i3, i1); i2 = HEAP32[i3 + 44 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; __ZN4wasm34OptimizingIncrementalModuleBuilder10wakeWorkerEv(i3); i1 = i1 + 1 | 0; } return; } function __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEC2EOS4_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = i2 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; do if (i4) if ((i4 | 0) == (i2 | 0)) { HEAP32[i1 + 16 >> 2] = i1; i4 = HEAP32[i3 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i4 >> 2] | 0) + 12 >> 2] & 255](i4, i1); break; } else { HEAP32[i1 + 16 >> 2] = i4; HEAP32[i3 >> 2] = 0; break; } else HEAP32[i1 + 16 >> 2] = 0; while (0); return; } function __ZNSt3__211__stdoutbufIwE6xsputnEPKwi(i3, i2, i4) { i3 = i3 | 0; i2 = i2 | 0; i4 = i4 | 0; var i1 = 0; L1 : do if (!(HEAP8[i3 + 44 >> 0] | 0)) { i1 = 0; while (1) { if ((i1 | 0) >= (i4 | 0)) break L1; if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 52 >> 2] & 31](i3, HEAP32[i2 >> 2] | 0) | 0) == -1) break L1; i1 = i1 + 1 | 0; i2 = i2 + 4 | 0; } } else i1 = _fwrite(i2, 4, i4, HEAP32[i3 + 32 >> 2] | 0) | 0; while (0); return i1 | 0; } function __ZNSt3__211__stdoutbufIcE6xsputnEPKci(i3, i2, i4) { i3 = i3 | 0; i2 = i2 | 0; i4 = i4 | 0; var i1 = 0; L1 : do if (!(HEAP8[i3 + 44 >> 0] | 0)) { i1 = 0; while (1) { if ((i1 | 0) >= (i4 | 0)) break L1; if ((FUNCTION_TABLE_iii[HEAP32[(HEAP32[i3 >> 2] | 0) + 52 >> 2] & 31](i3, HEAPU8[i2 >> 0] | 0) | 0) == -1) break L1; i1 = i1 + 1 | 0; i2 = i2 + 1 | 0; } } else i1 = _fwrite(i2, 1, i4, HEAP32[i3 + 32 >> 2] | 0) | 0; while (0); return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder13makeGetGlobalERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = __ZN10MixedArena5allocIN4wasm9GetGlobalEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i2 = __ZN4wasm22SExpressionWasmBuilder14getGlobalIndexERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i3 + 8 >> 2] = i2; i2 = (__ZN4wasm6Module9getGlobalEj(HEAP32[i1 >> 2] | 0, i2) | 0) + 4 | 0; HEAP32[i3 + 4 >> 2] = HEAP32[i2 >> 2]; return i3 | 0; } function __ZN4wasm12toUInteger64Ed(d1) { d1 = +d1; var i2 = 0, i3 = 0; HEAPF64[tempDoublePtr >> 3] = d1; if ((HEAP32[tempDoublePtr + 4 >> 2] | 0) >= 0) if (d1 < 18446744073709551616.0) { i3 = +Math_abs(d1) >= 1.0 ? (d1 > 0.0 ? ~~+Math_min(+Math_floor(d1 / 4294967296.0), 4294967295.0) >>> 0 : ~~+Math_ceil((d1 - +(~~d1 >>> 0)) / 4294967296.0) >>> 0) : 0; i2 = ~~d1 >>> 0; } else { i3 = -1; i2 = -1; } else { i3 = 0; i2 = 0; } tempRet0 = i3; return i2 | 0; } function __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 40) | 0; if (i3) __Z17prepareMajorColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(i1) | 0; else __Z12prepareColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(i1) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i2) | 0; return i1 | 0; } function __ZN4wasm6Module13checkFunctionENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 164 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_8FunctionEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) i1 = 0; else { i1 = __ZNSt3__23mapIN4wasm4NameEPNS1_8FunctionENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) | 0; i1 = HEAP32[i1 >> 2] | 0; } return i1 | 0; } function __ZNK4wasm7Literal8popCountEv(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0; i2 = i1 + 8 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) { i1 = __ZN4wasm8PopCountIjEEiT_(HEAP32[i2 >> 2] | 0) | 0; HEAP32[i3 + 8 >> 2] = i1; i1 = 1; } else { i2 = __ZN4wasm8PopCountIyEEiT_(HEAP32[i2 >> 2] | 0, HEAP32[i2 + 4 >> 2] | 0) | 0; i1 = i3 + 8 | 0; HEAP32[i1 >> 2] = i2; HEAP32[i1 + 4 >> 2] = ((i2 | 0) < 0) << 31 >> 31; i1 = 2; } HEAP32[i3 >> 2] = i1; return; } function __ZNK10__cxxabiv122__base_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib(i2, i3, i4, i5, i6) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; var i1 = 0, i7 = 0; i7 = HEAP32[i2 + 4 >> 2] | 0; i1 = i7 >> 8; if (i7 & 1) i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + i1 >> 2] | 0; i2 = HEAP32[i2 >> 2] | 0; FUNCTION_TABLE_viiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 24 >> 2] & 3](i2, i3, i4 + i1 | 0, i7 & 2 | 0 ? i5 : 2, i6); return; } function __ZNK10__cxxabiv120__si_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; if ((i1 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNK10__cxxabiv117__class_type_info24process_found_base_classEPNS_19__dynamic_cast_infoEPvi(0, i2, i3, i4); else { i1 = HEAP32[i1 + 8 >> 2] | 0; FUNCTION_TABLE_viiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 28 >> 2] & 15](i1, i2, i3, i4); } return; } function __ZN4wasm7Builder14makeCallImportENS_4NameERKNSt3__26vectorIPNS_10ExpressionENS2_9allocatorIS5_EEEENS_8WasmTypeE(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i1 + 4 >> 2] = i4; HEAP32[i1 + 24 >> 2] = HEAP32[i2 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE3setINSt3__26vectorIS2_NS5_9allocatorIS2_EEEEEEvRKT_(i1 + 8 | 0, i3); return i1 | 0; } function __ZN4wasm6Module11checkImportENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 140 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ImportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) i1 = 0; else { i1 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ImportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) | 0; i1 = HEAP32[i1 >> 2] | 0; } return i1 | 0; } function __ZN4wasm6Module11checkExportENS_4NameE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 152 | 0; if (!(__ZNKSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE14__count_uniqueIS3_EEjRKT_(i1, i2) | 0)) i1 = 0; else { i1 = __ZNSt3__23mapIN4wasm4NameEPNS1_6ExportENS_4lessIS2_EENS_9allocatorINS_4pairIKS2_S4_EEEEEixERS9_(i1, i2) | 0; i1 = HEAP32[i1 >> 2] | 0; } return i1 | 0; } function __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i2 >> 2] | 0; HEAP32[i1 >> 2] = i3; HEAP32[i1 + (HEAP32[i3 + -12 >> 2] | 0) >> 2] = HEAP32[i2 + 32 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 36 >> 2]; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 12 | 0); __ZNSt3__214basic_iostreamIcNS_11char_traitsIcEEED2Ev(i1, i2 + 4 | 0); return; } function __ZNSt3__26locale2id5__getEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i2 = i5 + 16 | 0; i3 = i5 + 12 | 0; i4 = i5; HEAP32[i4 >> 2] = i1; HEAP32[i4 + 4 >> 2] = 168; HEAP32[i4 + 8 >> 2] = 0; if ((HEAP32[i1 >> 2] | 0) != -1) { HEAP32[i2 >> 2] = i4; HEAP32[i3 >> 2] = i2; __ZNSt3__211__call_onceERVmPvPFvS2_E(i1, i3, 169); } STACKTOP = i5; return (HEAP32[i1 + 4 >> 2] | 0) + -1 | 0; } function ___towrite(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = i1 + 74 | 0; i3 = HEAP8[i2 >> 0] | 0; HEAP8[i2 >> 0] = i3 + 255 | i3; i2 = HEAP32[i1 >> 2] | 0; if (!(i2 & 8)) { HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; i3 = HEAP32[i1 + 44 >> 2] | 0; HEAP32[i1 + 28 >> 2] = i3; HEAP32[i1 + 20 >> 2] = i3; HEAP32[i1 + 16 >> 2] = i3 + (HEAP32[i1 + 48 >> 2] | 0); i1 = 0; } else { HEAP32[i1 >> 2] = i2 | 32; i1 = -1; } return i1 | 0; } function __ZN4wasm15Asm2WasmBuilder14detectWasmTypeEN6cashew3RefEP7AsmData(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 4 | 0; i6 = i4; HEAP32[i6 >> 2] = HEAP32[i2 >> 2]; HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; i3 = __ZN4wasm13asmToWasmTypeE7AsmType(__ZN4wasm15Asm2WasmBuilder13detectAsmTypeEN6cashew3RefEP7AsmData(i1, i5, i3) | 0) | 0; STACKTOP = i4; return i3 | 0; } function __ZN4wasmL10mergeTypesERNSt3__26vectorINS_8WasmTypeENS0_9allocatorIS2_EEEE(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0; i4 = HEAP32[i2 + 4 >> 2] | 0; i1 = 5; i3 = HEAP32[i2 >> 2] | 0; while (1) { if ((i3 | 0) == (i4 | 0)) break; i2 = HEAP32[i3 >> 2] | 0; if (!((i1 | 0) == 0 | (i2 | 0) == 0)) { if ((i2 | 0) != 5) if ((i1 | 0) == 5) i1 = i2; else i1 = (i1 | 0) == (i2 | 0) ? i1 : 0; } else i1 = 0; i3 = i3 + 4 | 0; } return i1 | 0; } function ___fpclassify(d2) { d2 = +d2; var i1 = 0, i3 = 0, i4 = 0; HEAPF64[tempDoublePtr >> 3] = d2; i1 = HEAP32[tempDoublePtr >> 2] | 0; i3 = HEAP32[tempDoublePtr + 4 >> 2] | 0; i4 = _bitshift64Lshr(i1 | 0, i3 | 0, 52) | 0; switch (i4 & 2047) { case 0: { i1 = (i1 | 0) != 0 | (i3 & 2147483647 | 0) != 0 ? 3 : 2; break; } case 2047: { i1 = (i1 | 0) == 0 & (i3 & 1048575 | 0) == 0 & 1; break; } default: i1 = 4; } return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder12makeGetLocalERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i2 = __ZN4wasm22SExpressionWasmBuilder13getLocalIndexERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i3 + 8 >> 2] = i2; i2 = __ZN4wasm8Function12getLocalTypeEj(HEAP32[i1 + 44 >> 2] | 0, i2) | 0; HEAP32[i3 + 4 >> 2] = i2; return i3 | 0; } function __ZNK10__cxxabiv122__base_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i2, i3, i4, i5) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; var i1 = 0, i6 = 0; i6 = HEAP32[i2 + 4 >> 2] | 0; i1 = i6 >> 8; if (i6 & 1) i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + i1 >> 2] | 0; i2 = HEAP32[i2 >> 2] | 0; FUNCTION_TABLE_viiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 15](i2, i3, i4 + i1 | 0, i6 & 2 | 0 ? i5 : 2); return; } function __ZN4wasm22SExpressionWasmBuilder10makeReturnERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = __ZN10MixedArena5allocIN4wasm6ReturnEEEPT_v(HEAP32[i1 + 4 >> 2] | 0) | 0; i4 = (__ZN4wasm7Element4listEv(i2) | 0) + 8 | 0; if ((HEAP32[i4 >> 2] | 0) >>> 0 > 1) { i4 = __ZN4wasm22SExpressionWasmBuilder15parseExpressionERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i3 + 8 >> 2] = i4; } return i3 | 0; } function __ZN4wasm34OptimizingIncrementalModuleBuilderD2Ev(i2) { i2 = i2 | 0; var i1 = 0; i1 = HEAP32[i2 + 12 >> 2] | 0; if (i1 | 0) __ZdaPv(i1); i1 = HEAP32[i2 + 8 >> 2] | 0; if (i1 | 0) { __ZN4wasm8FunctionD2Ev(i1); __ZdlPv(i1); } __ZNSt3__218condition_variableD2Ev(i2 + 80 | 0); __ZNSt3__25mutexD2Ev(i2 + 52 | 0); __ZNSt3__213__vector_baseINS_10unique_ptrINS_6threadENS_14default_deleteIS2_EEEENS_9allocatorIS5_EEED2Ev(i2 + 24 | 0); return; } function __ZN4wasm16PrintSExpression13printFullLineEPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!(HEAP8[i1 + 8 >> 0] | 0)) __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i1 >> 2] | 0, HEAP32[i1 + 4 >> 2] | 0) | 0; __ZN4wasm7VisitorINS_16PrintSExpressionEvE5visitEPNS_10ExpressionE(i1, i2); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(HEAP32[i1 >> 2] | 0, HEAP32[i1 + 16 >> 2] | 0) | 0; return; } function ___stdout_write(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 80 | 0; i4 = i5; HEAP32[i1 + 36 >> 2] = 6; if ((HEAP32[i1 >> 2] & 64 | 0) == 0 ? (HEAP32[i4 >> 2] = HEAP32[i1 + 60 >> 2], HEAP32[i4 + 4 >> 2] = 21505, HEAP32[i4 + 8 >> 2] = i5 + 12, ___syscall54(54, i4 | 0) | 0) : 0) HEAP8[i1 + 75 >> 0] = -1; i4 = ___stdio_write(i1, i2, i3) | 0; STACKTOP = i5; return i4 | 0; } function __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i2) return; else { __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE(i1, HEAP32[i2 >> 2] | 0); __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE(i1, HEAP32[i2 + 4 >> 2] | 0); __ZdlPv(i2); return; } } function __ZN4wasm34OptimizingIncrementalModuleBuilder13queueFunctionEPNS_8FunctionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = i1 + 16 | 0; i4 = HEAP32[i3 >> 2] | 0; if (i4 >>> 0 < (HEAP32[i1 + 4 >> 2] | 0) >>> 0) { HEAP32[i3 >> 2] = i4 + 1; HEAP32[(HEAP32[i1 + 12 >> 2] | 0) + (i4 << 2) >> 2] = i2; i4 = i1 + 44 | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } else ___assert_fail(14468, 14048, 181, 14496); } function _vsscanf(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 112 | 0; i4 = i6; i5 = i4; i7 = i5 + 112 | 0; do { HEAP32[i5 >> 2] = 0; i5 = i5 + 4 | 0; } while ((i5 | 0) < (i7 | 0)); HEAP32[i4 + 32 >> 2] = 31; HEAP32[i4 + 44 >> 2] = i1; HEAP32[i4 + 76 >> 2] = -1; HEAP32[i4 + 84 >> 2] = i1; i7 = _vfscanf(i4, i2, i3) | 0; STACKTOP = i6; return i7 | 0; } function __ZN7AsmData7getTypeERKN6cashew7IStringE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE4findIS3_EENS_15__hash_iteratorIPNS_11__hash_nodeIS6_PvEEEERKT_(i1, i2) | 0; if (!i1) i1 = 8; else i1 = HEAP32[i1 + 12 >> 2] | 0; return i1 | 0; } function __ZN4wasm7Builder8makeHostENS_6HostOpENS_4NameEONSt3__26vectorIPNS_10ExpressionENS3_9allocatorIS6_EEEE(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = __ZN10MixedArena5allocIN4wasm4HostEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i1 + 12 >> 2] = HEAP32[i3 >> 2]; __ZN11ArenaVectorIPN4wasm10ExpressionEE3setINSt3__26vectorIS2_NS5_9allocatorIS2_EEEEEEvRKT_(i1 + 16 | 0, i4); return i1 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEEaSERKS7_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; if ((i1 | 0) != (i2 | 0)) { i3 = HEAP8[i2 + 11 >> 0] | 0; i4 = i3 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6assignEPKcj(i1, i4 ? HEAP32[i2 >> 2] | 0 : i2, i4 ? HEAP32[i2 + 4 >> 2] | 0 : i3 & 255); } return; } function __ZNK4wasm7Literal2leERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var d4 = 0.0; if ((HEAP32[i2 >> 2] | 0) == 3) { d4 = +__ZNK4wasm7Literal6getf32Ev(i2); i3 = d4 <= +__ZNK4wasm7Literal6getf32Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; } else { d4 = +__ZNK4wasm7Literal6getf64Ev(i2); i3 = d4 <= +__ZNK4wasm7Literal6getf64Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; } return; } function __ZNK4wasm7Literal2geERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var d4 = 0.0; if ((HEAP32[i2 >> 2] | 0) == 3) { d4 = +__ZNK4wasm7Literal6getf32Ev(i2); i3 = d4 >= +__ZNK4wasm7Literal6getf32Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; } else { d4 = +__ZNK4wasm7Literal6getf64Ev(i2); i3 = d4 >= +__ZNK4wasm7Literal6getf64Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; } return; } function __ZNKSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE7__cloneEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = __Znwj(20) | 0; i3 = i1 + 4 | 0; HEAP32[i2 >> 2] = 3016; i1 = i2 + 4 | 0; HEAP32[i1 >> 2] = HEAP32[i3 >> 2]; HEAP32[i1 + 4 >> 2] = HEAP32[i3 + 4 >> 2]; HEAP32[i1 + 8 >> 2] = HEAP32[i3 + 8 >> 2]; HEAP32[i1 + 12 >> 2] = HEAP32[i3 + 12 >> 2]; return i2 | 0; } function __ZNK4wasm7Literal2ltERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var d4 = 0.0; if ((HEAP32[i2 >> 2] | 0) == 3) { d4 = +__ZNK4wasm7Literal6getf32Ev(i2); i3 = d4 < +__ZNK4wasm7Literal6getf32Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; } else { d4 = +__ZNK4wasm7Literal6getf64Ev(i2); i3 = d4 < +__ZNK4wasm7Literal6getf64Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; } return; } function __ZNK4wasm7Literal2gtERKS0_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var d4 = 0.0; if ((HEAP32[i2 >> 2] | 0) == 3) { d4 = +__ZNK4wasm7Literal6getf32Ev(i2); i3 = d4 > +__ZNK4wasm7Literal6getf32Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; } else { d4 = +__ZNK4wasm7Literal6getf64Ev(i2); i3 = d4 > +__ZNK4wasm7Literal6getf64Ev(i3) & 1; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i3; } return; } function __ZN11ArenaVectorIPN4wasm10ExpressionEE6resizeEj(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0, i4 = 0; if ((HEAP32[i1 + 12 >> 2] | 0) >>> 0 < i3 >>> 0) __ZN11ArenaVectorIPN4wasm10ExpressionEE10reallocateEj(i1, i3); i4 = i1 + 8 | 0; i2 = i1 + 4 | 0; i1 = HEAP32[i4 >> 2] | 0; while (1) { if (i1 >>> 0 >= i3 >>> 0) break; HEAP32[(HEAP32[i2 >> 2] | 0) + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i4 >> 2] = i3; return; } function __ZNSt3__214__split_bufferINS_8functionIFN4wasm15ThreadWorkStateEvEEERNS_9allocatorIS5_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -24 | 0; HEAP32[i3 >> 2] = i4; __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEED2Ev(i4); } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE7popTaskEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; i6 = i4 + -8 | 0; i5 = HEAP32[i6 + 4 >> 2] | 0; i1 = i2; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 + 4 >> 2] = i5; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i6 = i1 + -1 | 0; HEAP32[i3 >> 2] = i4 + (i6 << 3); i1 = i6; } return; } function __ZN4wasm10WalkerPassINS_10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS5_vEEEEE11runFunctionEPNS_10PassRunnerEPNS_6ModuleEPNS_8FunctionE(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; HEAP32[i1 + 36 >> 2] = i3; __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12walkFunctionEPNS_8FunctionE(i1 + 16 | 0, i4); return; } function __ZNSt3__213__vector_baseINS_8functionIFN4wasm15ThreadWorkStateEvEEENS_9allocatorIS5_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -24 | 0; HEAP32[i3 >> 2] = i4; __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEED2Ev(i4); } __ZdlPv(HEAP32[i1 >> 2] | 0); } return; } function __ZN7AsmDataD2Ev(i1) { i1 = i1 | 0; __ZNSt3__213__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i1 + 32 | 0); __ZNSt3__213__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i1 + 20 | 0); __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEED2Ev(i1); return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE7popTaskEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; i6 = i4 + -8 | 0; i5 = HEAP32[i6 + 4 >> 2] | 0; i1 = i2; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 + 4 >> 2] = i5; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i6 = i1 + -1 | 0; HEAP32[i3 >> 2] = i4 + (i6 << 3); i1 = i6; } return; } function ___string_read(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0, i7 = 0; i4 = i1 + 84 | 0; i6 = HEAP32[i4 >> 2] | 0; i7 = i3 + 256 | 0; i5 = _memchr(i6, 0, i7) | 0; i5 = (i5 | 0) == 0 ? i7 : i5 - i6 | 0; i3 = i5 >>> 0 < i3 >>> 0 ? i5 : i3; _memcpy(i2 | 0, i6 | 0, i3 | 0) | 0; HEAP32[i1 + 4 >> 2] = i6 + i3; i2 = i6 + i5 | 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i4 >> 2] = i2; return i3 | 0; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE7popTaskEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; i6 = i4 + -8 | 0; i5 = HEAP32[i6 + 4 >> 2] | 0; i1 = i2; HEAP32[i1 >> 2] = HEAP32[i6 >> 2]; HEAP32[i1 + 4 >> 2] = i5; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i6 = i1 + -1 | 0; HEAP32[i3 >> 2] = i4 + (i6 << 3); i1 = i6; } return; } function __ZNKSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE14__count_uniqueIS2_EEjRKT_(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0; i1 = i1 + 4 | 0; while (1) { i1 = HEAP32[i1 >> 2] | 0; if (!i1) { i1 = 0; break; } i2 = i1 + 16 | 0; if (__ZNK6cashew7IStringltERKS0_(i3, i2) | 0) continue; if (!(__ZNK6cashew7IStringltERKS0_(i2, i3) | 0)) { i1 = 1; break; } i1 = i1 + 4 | 0; } return i1 | 0; } function __ZN4wasm8FunctionD2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i1 + 52 | 0); __ZNSt3__213__vector_baseIN4wasm4NameENS_9allocatorIS2_EEED2Ev(i1 + 40 | 0); __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i1 + 20 | 0); __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i1 + 8 | 0); return; } function __ZN4wasm10WalkerPassINS_10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS5_vEEEEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__213__vector_baseIN4wasm6WalkerIZNS1_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS1_7VisitorIS6_vEEE4TaskENS_9allocatorISA_EEED2Ev(i1 + 20 | 0); HEAP32[i1 >> 2] = 2456; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 4 | 0); return; } function __ZNSt3__28ios_base4initEPv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0; HEAP32[i2 + 24 >> 2] = i1; HEAP32[i2 + 16 >> 2] = (i1 | 0) == 0 & 1; HEAP32[i2 + 20 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 4098; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 6; i3 = i2 + 28 | 0; i1 = i2 + 32 | 0; i2 = i1 + 40 | 0; do { HEAP32[i1 >> 2] = 0; i1 = i1 + 4 | 0; } while ((i1 | 0) < (i2 | 0)); __ZNSt3__26localeC2Ev(i3); return; } function __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEEC2Ej(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP8[i1 + 128 >> 0] = 0; if (i2 | 0) { __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE8allocateEj(i1, i2); __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE18__construct_at_endEj(i1, i2); } return; } function __ZNSt3__213__vector_baseIN4wasm6WalkerIZNS1_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS1_7VisitorIS6_vEEE4TaskENS_9allocatorISA_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -8 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__lower_boundIRNS_6__lessIjjEEPKjjEET0_S6_S6_RKT1_T_(i4, i5, i1, i2) { i4 = i4 | 0; i5 = i5 | 0; i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i6 = 0; i3 = HEAP32[i1 >> 2] | 0; i2 = i4; i1 = i5 - i4 >> 2; while (1) { if (!i1) break; i5 = (i1 | 0) / 2 | 0; i6 = i2 + (i5 << 2) | 0; i4 = (HEAP32[i6 >> 2] | 0) >>> 0 < i3 >>> 0; i2 = i4 ? i6 + 4 | 0 : i2; i1 = i4 ? i1 + -1 - i5 | 0 : i5; } return i2 | 0; } function __ZN4wasm15Asm2WasmBuilder10getLiteralEN6cashew3RefE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0, i6 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4 + 4 | 0; i6 = i4; HEAP32[i6 >> 2] = HEAP32[i3 >> 2]; HEAP32[i5 >> 2] = HEAP32[i6 >> 2]; __ZN4wasm15Asm2WasmBuilder12checkLiteralEN6cashew3RefE(i1, i2, i5); if (!(HEAP32[i1 >> 2] | 0)) _abort(); else { STACKTOP = i4; return; } } function _strcmp(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i1 = HEAP8[i2 >> 0] | 0; i4 = HEAP8[i3 >> 0] | 0; if (i1 << 24 >> 24 == 0 ? 1 : i1 << 24 >> 24 != i4 << 24 >> 24) i2 = i4; else { do { i2 = i2 + 1 | 0; i3 = i3 + 1 | 0; i1 = HEAP8[i2 >> 0] | 0; i4 = HEAP8[i3 >> 0] | 0; } while (!(i1 << 24 >> 24 == 0 ? 1 : i1 << 24 >> 24 != i4 << 24 >> 24)); i2 = i4; } return (i1 & 255) - (i2 & 255) | 0; } function __ZNSt3__26vectorIN4wasm7LiteralENS_9allocatorIS2_EEE18__construct_at_endEj(i1, i5) { i1 = i1 | 0; i5 = i5 | 0; var i2 = 0, i3 = 0, i4 = 0, i6 = 0; i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; i1 = i5; i4 = i2; while (1) { HEAP32[i4 >> 2] = 0; i6 = i4 + 8 | 0; HEAP32[i6 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; i1 = i1 + -1 | 0; if (!i1) break; else i4 = i4 + 16 | 0; } HEAP32[i3 >> 2] = i2 + (i5 << 4); return; } function __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE10deallocateEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } __ZdlPv(i2); HEAP32[i1 + 8 >> 2] = 0; HEAP32[i3 >> 2] = 0; HEAP32[i1 >> 2] = 0; } return; } function __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE10deallocateEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -8 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } __ZdlPv(i2); HEAP32[i1 + 8 >> 2] = 0; HEAP32[i3 >> 2] = 0; HEAP32[i1 >> 2] = 0; } return; } function _memcmp(i1, i3, i2) { i1 = i1 | 0; i3 = i3 | 0; i2 = i2 | 0; var i4 = 0, i5 = 0; L1 : do if (!i2) i1 = 0; else { while (1) { i4 = HEAP8[i1 >> 0] | 0; i5 = HEAP8[i3 >> 0] | 0; if (i4 << 24 >> 24 != i5 << 24 >> 24) break; i2 = i2 + -1 | 0; if (!i2) { i1 = 0; break L1; } else { i1 = i1 + 1 | 0; i3 = i3 + 1 | 0; } } i1 = (i4 & 255) - (i5 & 255) | 0; } while (0); return i1 | 0; } function __ZNSt3__214__split_bufferIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementERNS_9allocatorIS6_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -8 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZN6cashew5Value10getIntegerEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZN6cashew5Value9getNumberEv(i1) | 0; if (!(+_fmod(+HEAPF64[i2 >> 3], 1.0) == 0.0)) ___assert_fail(27913, 34046, 229, 27939); i2 = __ZN6cashew5Value9getNumberEv(i1) | 0; i2 = ~~+HEAPF64[i2 >> 3]; i1 = __ZN6cashew5Value9getNumberEv(i1) | 0; if (+(i2 | 0) == +HEAPF64[i1 >> 3]) return i2 | 0; else ___assert_fail(27950, 34046, 231, 27939); return 0; } function __ZN11ArenaVectorIN4wasm4NameEE9push_backES1_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i4 = i2 + 8 | 0; i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 + 12 >> 2] | 0)) { __ZN11ArenaVectorIN4wasm4NameEE10reallocateEj(i2, (i1 << 1) + 2 | 0); i1 = HEAP32[i4 >> 2] | 0; } HEAP32[(HEAP32[i2 + 4 >> 2] | 0) + (i1 << 2) >> 2] = HEAP32[i3 >> 2]; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + 1; return; } function __ZNKSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE7__cloneEPNS0_6__baseIS9_EE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = i1 + 4 | 0; HEAP32[i2 >> 2] = 3016; i2 = i2 + 4 | 0; HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; HEAP32[i2 + 8 >> 2] = HEAP32[i1 + 8 >> 2]; HEAP32[i2 + 12 >> 2] = HEAP32[i1 + 12 >> 2]; return; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7__cloneEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = __Znwj(64) | 0; HEAP32[i3 >> 2] = 2840; i4 = i3 + 4 | 0; i1 = i1 + 4 | 0; i2 = i4 + 60 | 0; do { HEAP32[i4 >> 2] = HEAP32[i1 >> 2]; i4 = i4 + 4 | 0; i1 = i1 + 4 | 0; } while ((i4 | 0) < (i2 | 0)); return i3 | 0; } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE10deallocateEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } __ZdlPv(i2); HEAP32[i1 + 8 >> 2] = 0; HEAP32[i3 >> 2] = 0; HEAP32[i1 >> 2] = 0; } return; } function __ZN11ArenaVectorIN4wasm4NameEE6resizeEj(i1, i3) { i1 = i1 | 0; i3 = i3 | 0; var i2 = 0, i4 = 0; if ((HEAP32[i1 + 12 >> 2] | 0) >>> 0 < i3 >>> 0) __ZN11ArenaVectorIN4wasm4NameEE10reallocateEj(i1, i3); i4 = i1 + 8 | 0; i2 = i1 + 4 | 0; i1 = HEAP32[i4 >> 2] | 0; while (1) { if (i1 >>> 0 >= i3 >>> 0) break; HEAP32[(HEAP32[i2 >> 2] | 0) + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i4 >> 2] = i3; return; } function __ZN4wasm34OptimizingIncrementalModuleBuilder6finishEv(i1) { i1 = i1 | 0; if ((HEAP32[i1 + 16 >> 2] | 0) == (HEAP32[i1 + 4 >> 2] | 0)) { __ZN4wasm34OptimizingIncrementalModuleBuilder14wakeAllWorkersEv(i1); __ZN4wasm34OptimizingIncrementalModuleBuilder20waitUntilAllFinishedEv(i1); __ZN4wasm34OptimizingIncrementalModuleBuilder16optimizeGloballyEv(i1); return; } else ___assert_fail(14510, 14048, 132, 14539); } function __ZN4wasm6Memory7SegmentC2ENS_7AddressEPKcS2_(i2, i1, i5, i3) { i2 = i2 | 0; i1 = i1 | 0; i5 = i5 | 0; i3 = i3 | 0; var i4 = 0; HEAP32[i2 >> 2] = HEAP32[i1 >> 2]; i4 = i2 + 4 | 0; HEAP32[i4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = 0; i1 = HEAP32[i3 >> 2] | 0; __ZNSt3__26vectorIcNS_9allocatorIcEEE6resizeEj(i4, i1); if (i1 | 0) _memmove(HEAP32[i4 >> 2] | 0, i5 | 0, i1 | 0) | 0; return; } function __ZN11ArenaVectorIPN4wasm10ExpressionEE10reallocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; __ZN11ArenaVectorIPN4wasm10ExpressionEE8allocateEj(i1, i2); i2 = HEAP32[i1 + 8 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; HEAP32[(HEAP32[i3 >> 2] | 0) + (i1 << 2) >> 2] = HEAP32[i4 + (i1 << 2) >> 2]; i1 = i1 + 1 | 0; } return; } function __ZNSt3__2lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = HEAP8[i2 + 11 >> 0] | 0; i4 = i3 << 24 >> 24 < 0; return __ZNSt3__224__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j(i1, i4 ? HEAP32[i2 >> 2] | 0 : i2, i4 ? HEAP32[i2 + 4 >> 2] | 0 : i3 & 255) | 0; } function __ZN4wasm17WasmBinaryBuilder13popExpressionEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i3 = i1 + 100 | 0; i2 = HEAP32[i3 >> 2] | 0; i4 = i2; if ((i2 | 0) == (HEAP32[i1 + 96 >> 2] | 0)) ___assert_fail(21307, 18854, 1611, 21334); i2 = HEAP32[i4 + -4 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i5 = i1 + -1 | 0; HEAP32[i3 >> 2] = i4 + (i5 << 2); i1 = i5; } return i2 | 0; } function __ZN10MixedArena5clearEv(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0, i4 = 0; i4 = i2 + 4 | 0; i3 = HEAP32[i4 >> 2] | 0; i1 = HEAP32[i2 >> 2] | 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; __ZdaPv(HEAP32[i1 >> 2] | 0); i1 = i1 + 4 | 0; } i1 = HEAP32[i2 >> 2] | 0; i2 = HEAP32[i4 >> 2] | 0; while (1) { if ((i2 | 0) == (i1 | 0)) break; i3 = i2 + -4 | 0; HEAP32[i4 >> 2] = i3; i2 = i3; } return; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7__cloneEPNS0_6__baseISB_EE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0; HEAP32[i1 >> 2] = 2840; i3 = i1 + 4 | 0; i1 = i2 + 4 | 0; i2 = i3 + 60 | 0; do { HEAP32[i3 >> 2] = HEAP32[i1 >> 2]; i3 = i3 + 4 | 0; i1 = i1 + 4 | 0; } while ((i3 | 0) < (i2 | 0)); return; } function __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i2 >> 2] | 0; HEAP32[i1 >> 2] = i3; HEAP32[i1 + (HEAP32[i3 + -12 >> 2] | 0) >> 2] = HEAP32[i2 + 12 >> 2]; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 8 | 0); __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEED2Ev(i1, i2 + 4 | 0); return; } function __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -8 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__218condition_variable4waitIZN4wasm34OptimizingIncrementalModuleBuilder17waitUntilAllReadyEvEUlvE_EEvRNS_11unique_lockINS_5mutexEEET_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((HEAP32[i4 + 36 >> 2] | 0) == (HEAP32[i4 + 20 >> 2] | 0)) break; __ZNSt3__218condition_variable4waitERNS_11unique_lockINS_5mutexEEE(i1, i2); } return; } function __ZNKSt3__27codecvtIwc11__mbstate_tE11do_encodingEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i1 = i1 + 8 | 0; i2 = _uselocale(HEAP32[i1 >> 2] | 0) | 0; i3 = _mbtowc(0, 0, 4) | 0; if (i2 | 0) _uselocale(i2) | 0; if (!i3) { i1 = HEAP32[i1 >> 2] | 0; if (i1) { i1 = _uselocale(i1) | 0; if (!i1) i1 = 0; else { _uselocale(i1) | 0; i1 = 0; } } else i1 = 1; } else i1 = -1; return i1 | 0; } function __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -8 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNKSt3__25ctypeIwE5do_isEPKwS3_Pt(i1, i3, i4, i2) { i1 = i1 | 0; i3 = i3 | 0; i4 = i4 | 0; i2 = i2 | 0; var i5 = 0; while (1) { if ((i3 | 0) == (i4 | 0)) break; i1 = HEAP32[i3 >> 2] | 0; if (i1 >>> 0 < 128) { i5 = ___ctype_b_loc() | 0; i1 = HEAPU16[(HEAP32[i5 >> 2] | 0) + (i1 << 1) >> 1] | 0; } else i1 = 0; HEAP16[i2 >> 1] = i1; i2 = i2 + 2 | 0; i3 = i3 + 4 | 0; } return i4 | 0; } function __ZN4wasm10PassRunnerD2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i4 = i1 + 8 | 0; i2 = HEAP32[i1 + 12 >> 2] | 0; i1 = HEAP32[i4 >> 2] | 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i3 >> 2] | 0) + 4 >> 2] & 255](i3); i1 = i1 + 4 | 0; } __ZNSt3__213__vector_baseIPN4wasm4PassENS_9allocatorIS3_EEED2Ev(i4); return; } function __ZNSt3__214__split_bufferIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskERNS_9allocatorIS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -8 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIN4wasm6Memory7SegmentERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; HEAP32[i3 >> 2] = i4 + -16; __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i4 + -12 | 0); } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZN4wasm4Name7fromIntEj(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i2 + 12 | 0; i3 = i2; __ZNSt3__29to_stringEj(i3, i1); __ZN6cashew7IStringC2EPKcb(i4, (HEAP8[i3 + 11 >> 0] | 0) < 0 ? HEAP32[i3 >> 2] | 0 : i3, 0); i1 = HEAP32[i4 >> 2] | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3); STACKTOP = i2; return i1 | 0; } function __ZN11ArenaVectorIPN4wasm7ElementEE10reallocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; __ZN11ArenaVectorIPN4wasm7ElementEE8allocateEj(i1, i2); i2 = HEAP32[i1 + 8 >> 2] | 0; i1 = 0; while (1) { if ((i1 | 0) == (i2 | 0)) break; HEAP32[(HEAP32[i3 >> 2] | 0) + (i1 << 2) >> 2] = HEAP32[i4 + (i1 << 2) >> 2]; i1 = i1 + 1 | 0; } return; } function __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i4 = i2 + 8 | 0; i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 + 12 >> 2] | 0)) { __ZN11ArenaVectorIPN4wasm10ExpressionEE10reallocateEj(i2, (i1 << 1) + 2 | 0); i1 = HEAP32[i4 >> 2] | 0; } HEAP32[(HEAP32[i2 + 4 >> 2] | 0) + (i1 << 2) >> 2] = i3; HEAP32[i4 >> 2] = i1 + 1; return; } function __ZN11ArenaVectorIN4wasm4NameEE10reallocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = i1 + 4 | 0; i4 = HEAP32[i3 >> 2] | 0; __ZN11ArenaVectorIN4wasm4NameEE8allocateEj(i1, i2); i2 = i1 + 8 | 0; i1 = 0; while (1) { if (i1 >>> 0 >= (HEAP32[i2 >> 2] | 0) >>> 0) break; HEAP32[(HEAP32[i3 >> 2] | 0) + (i1 << 2) >> 2] = HEAP32[i4 + (i1 << 2) >> 2]; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__25ctypeIwE11do_scan_notEtPKwS3_(i2, i3, i1, i4) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; var i5 = 0; while (1) { if ((i1 | 0) == (i4 | 0)) { i1 = i4; break; } i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 >= 128) break; i5 = ___ctype_b_loc() | 0; if (!((HEAP16[(HEAP32[i5 >> 2] | 0) + (i2 << 1) >> 1] & i3) << 16 >> 16)) break; i1 = i1 + 4 | 0; } return i1 | 0; } function __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i1, i4, i3, i2) { i1 = i1 | 0; i4 = i4 | 0; i3 = i3 | 0; i2 = i2 | 0; i2 = i1 + 4 | 0; i1 = i3 - i4 | 0; if ((i1 | 0) > 0) { _memcpy(HEAP32[i2 >> 2] | 0, i4 | 0, i1 | 0) | 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + (i1 >> 2 << 2); } return; } function __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i1, i4, i3, i2) { i1 = i1 | 0; i4 = i4 | 0; i3 = i3 | 0; i2 = i2 | 0; i2 = i1 + 4 | 0; i1 = i3 - i4 | 0; if ((i1 | 0) > 0) { _memcpy(HEAP32[i2 >> 2] | 0, i4 | 0, i1 | 0) | 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + (i1 >> 3 << 3); } return; } function __ZN4wasm13WasmValidator11visitReturnEPNS_6ReturnE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0; i1 = HEAP32[i1 + 8 >> 2] | 0; i2 = i2 + 40 | 0; do if (i1) { i3 = HEAP32[i2 >> 2] | 0; i1 = HEAP32[i1 + 4 >> 2] | 0; if ((i3 | 0) == 5) { HEAP32[i2 >> 2] = i1; break; } if (!((i1 | 0) == 5 | (i3 | 0) == (i1 | 0))) HEAP32[i2 >> 2] = 0; } else HEAP32[i2 >> 2] = 0; while (0); return; } function __ZNSt3__28ios_base16__call_callbacksENS0_5eventE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0, i5 = 0, i6 = 0; i4 = i2 + 32 | 0; i5 = i2 + 36 | 0; i1 = HEAP32[i2 + 40 >> 2] | 0; while (1) { if (!i1) break; i6 = i1 + -1 | 0; FUNCTION_TABLE_viii[HEAP32[(HEAP32[i4 >> 2] | 0) + (i6 << 2) >> 2] & 7](i3, i2, HEAP32[(HEAP32[i5 >> 2] | 0) + (i6 << 2) >> 2] | 0); i1 = i6; } return; } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE18__construct_at_endIPS2_EENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeES9_S9_j(i1, i4, i3, i2) { i1 = i1 | 0; i4 = i4 | 0; i3 = i3 | 0; i2 = i2 | 0; i2 = i1 + 4 | 0; i1 = i3 - i4 | 0; if ((i1 | 0) > 0) { _memcpy(HEAP32[i2 >> 2] | 0, i4 | 0, i1 | 0) | 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + (i1 >> 2 << 2); } return; } function __ZN11ArenaVectorIPN4wasm7ElementEE9push_backES2_(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i4 = i2 + 8 | 0; i1 = HEAP32[i4 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 + 12 >> 2] | 0)) { __ZN11ArenaVectorIPN4wasm7ElementEE10reallocateEj(i2, (i1 << 1) + 2 | 0); i1 = HEAP32[i4 >> 2] | 0; } HEAP32[(HEAP32[i2 + 4 >> 2] | 0) + (i1 << 2) >> 2] = i3; HEAP32[i4 >> 2] = i1 + 1; return; } function __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEaSERKS4_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 32 | 0; i4 = i3; __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEC2ERKS4_(i4, i2); __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEE4swapERS4_(i4, i1); __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEED2Ev(i4); STACKTOP = i3; return i1 | 0; } function __ZNSt3__26chrono12steady_clock3nowEv() { var i1 = 0, i2 = 0, i3 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i1 = i2; _clock_gettime(1, i1 | 0) | 0; i3 = HEAP32[i1 >> 2] | 0; i1 = HEAP32[i1 + 4 >> 2] | 0; i3 = ___muldi3(i3 | 0, ((i3 | 0) < 0) << 31 >> 31 | 0, 1e9, 0) | 0; i1 = _i64Add(i3 | 0, tempRet0 | 0, i1 | 0, ((i1 | 0) < 0) << 31 >> 31 | 0) | 0; STACKTOP = i2; return i1 | 0; } function __ZNSt3__213__vector_baseIN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -8 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; if ((i1 | 0) != (i2 | 0)) { i3 = HEAP8[i2 + 11 >> 0] | 0; i4 = i3 << 24 >> 24 < 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKcj(i1, i4 ? HEAP32[i2 >> 2] | 0 : i2, i4 ? HEAP32[i2 + 4 >> 2] | 0 : i3 & 255) | 0; } return i1 | 0; } function ___muldsi3(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0, i6 = 0; i6 = i1 & 65535; i5 = i2 & 65535; i3 = Math_imul(i5, i6) | 0; i4 = i1 >>> 16; i1 = (i3 >>> 16) + (Math_imul(i5, i4) | 0) | 0; i5 = i2 >>> 16; i2 = Math_imul(i5, i6) | 0; return (tempRet0 = (i1 >>> 16) + (Math_imul(i5, i4) | 0) + (((i1 & 65535) + i2 | 0) >>> 16) | 0, i1 + i2 << 16 | i3 & 65535 | 0) | 0; } function __ZN4wasm16PrintSExpression9decIndentEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; if (!(HEAP8[i1 + 8 >> 0] | 0)) { i3 = i1 + 4 | 0; i2 = (HEAP32[i3 >> 2] | 0) + -1 | 0; HEAP32[i3 >> 2] = i2; __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(HEAP32[i1 >> 2] | 0, i2) | 0; } __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i1 >> 2] | 0, 41) | 0; return; } function __ZNKSt3__25ctypeIwE9do_narrowEPKwS3_cPc(i1, i4, i5, i6, i2) { i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i2 = i2 | 0; var i3 = 0, i7 = 0; i3 = (i5 - i4 | 0) >>> 2; i1 = i2; i2 = i4; while (1) { if ((i2 | 0) == (i5 | 0)) break; i7 = HEAP32[i2 >> 2] | 0; HEAP8[i1 >> 0] = i7 >>> 0 < 128 ? i7 & 255 : i6; i1 = i1 + 1 | 0; i2 = i2 + 4 | 0; } return i4 + (i3 << 2) | 0; } function _copysign(d1, d2) { d1 = +d1; d2 = +d2; var i3 = 0, i4 = 0; HEAPF64[tempDoublePtr >> 3] = d1; i4 = HEAP32[tempDoublePtr >> 2] | 0; i3 = HEAP32[tempDoublePtr + 4 >> 2] | 0; HEAPF64[tempDoublePtr >> 3] = d2; i3 = HEAP32[tempDoublePtr + 4 >> 2] & -2147483648 | i3 & 2147483647; HEAP32[tempDoublePtr >> 2] = i4; HEAP32[tempDoublePtr + 4 >> 2] = i3; return +(+HEAPF64[tempDoublePtr >> 3]); } function __ZNSt3__214__split_bufferIN6cashew13OperatorClassERNS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -40 | 0; HEAP32[i3 >> 2] = i4; __ZN6cashew10IStringSetD2Ev(i4); } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEE6sentryC2ERS3_(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP8[i2 >> 0] = 0; HEAP32[i2 + 4 >> 2] = i1; i1 = i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0; if (!(HEAP32[i1 + 16 >> 2] | 0)) { i1 = HEAP32[i1 + 72 >> 2] | 0; if (i1 | 0) __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEE5flushEv(i1) | 0; HEAP8[i2 >> 0] = 1; } return; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP8[i2 >> 0] = 0; HEAP32[i2 + 4 >> 2] = i1; i1 = i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0; if (!(HEAP32[i1 + 16 >> 2] | 0)) { i1 = HEAP32[i1 + 72 >> 2] | 0; if (i1 | 0) __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(i1) | 0; HEAP8[i2 >> 0] = 1; } return; } function __ZNSt3__213__vector_baseIN6cashew13OperatorClassENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = HEAP32[i1 >> 2] | 0; if (i2 | 0) { i3 = i1 + 4 | 0; while (1) { i4 = HEAP32[i3 >> 2] | 0; if ((i4 | 0) == (i2 | 0)) break; i4 = i4 + -40 | 0; HEAP32[i3 >> 2] = i4; __ZN6cashew10IStringSetD2Ev(i4); } __ZdlPv(HEAP32[i1 >> 2] | 0); } return; } function _rint(d1) { d1 = +d1; var i2 = 0, i3 = 0; HEAPF64[tempDoublePtr >> 3] = d1; i2 = HEAP32[tempDoublePtr + 4 >> 2] | 0; i3 = i2 & 2146435072; if (!(i3 >>> 0 > 1126170624 | (i3 | 0) == 1126170624 & 0 > 0)) { i2 = (i2 | 0) < 0; d1 = i2 ? d1 + -4503599627370496.0 + 4503599627370496.0 : d1 + 4503599627370496.0 + -4503599627370496.0; if (d1 == 0.0) d1 = i2 ? -0.0 : 0.0; } return +d1; } function __ZNSt3__214__split_bufferINS_4pairIPN4wasm7ElementEPNS2_5BlockEEERNS_9allocatorIS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -8 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNKSt3__25ctypeIwE10do_scan_isEtPKwS3_(i2, i3, i1, i4) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; var i5 = 0; while (1) { if ((i1 | 0) == (i4 | 0)) { i1 = i4; break; } i2 = HEAP32[i1 >> 2] | 0; if (i2 >>> 0 < 128 ? (i5 = ___ctype_b_loc() | 0, (HEAP16[(HEAP32[i5 >> 2] | 0) + (i2 << 1) >> 1] & i3) << 16 >> 16) : 0) break; i1 = i1 + 4 | 0; } return i1 | 0; } function __ZN10MixedArena5allocIN4wasm6SwitchEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZN10MixedArena10allocSpaceEj(i1, 36) | 0; HEAP32[i2 >> 2] = 5; HEAP32[i2 + 8 >> 2] = i1; i1 = i2 + 12 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; HEAP32[i1 + 20 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 5; return i2 | 0; } function __ZNSt3__214__split_bufferIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEEERNS4_IS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZN4wasm7Literal10NaNPayloadEd(d1) { d1 = +d1; var i2 = 0, i3 = 0, i4 = 0; HEAPF64[tempDoublePtr >> 3] = d1; i2 = HEAP32[tempDoublePtr >> 2] | 0; i3 = HEAP32[tempDoublePtr + 4 >> 2] | 0; i4 = i3 & 2147483647; if (i4 >>> 0 > 2146435072 | (i4 | 0) == 2146435072 & i2 >>> 0 > 0) { tempRet0 = i3 & 1048575; return i2 | 0; } else ___assert_fail(24967, 14782, 288, 26263); return 0; } function _fwrite(i2, i4, i1, i3) { i2 = i2 | 0; i4 = i4 | 0; i1 = i1 | 0; i3 = i3 | 0; var i5 = 0, i6 = 0; i5 = Math_imul(i1, i4) | 0; if ((HEAP32[i3 + 76 >> 2] | 0) > -1) { i6 = (___lockfile(i3) | 0) == 0; i2 = ___fwritex(i2, i5, i3) | 0; if (!i6) ___unlockfile(i3); } else i2 = ___fwritex(i2, i5, i3) | 0; if ((i2 | 0) != (i5 | 0)) i1 = (i2 >>> 0) / (i4 >>> 0) | 0; return i1 | 0; } function __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCallsC2EPS0_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; __ZN4wasm4PassC2Ev(i1); i3 = i1 + 16 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i3 + 4 >> 2] = 0; HEAP32[i3 + 8 >> 2] = 0; HEAP32[i3 + 12 >> 2] = 0; HEAP32[i3 + 16 >> 2] = 0; HEAP32[i3 + 20 >> 2] = 0; HEAP32[i1 >> 2] = 2800; HEAP32[i1 + 40 >> 2] = i2; return; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEN7AsmData5LocalEEENS_22__unordered_map_hasherIS3_S6_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S6_NS_8equal_toIS3_EELb1EEENS_9allocatorIS6_EEE12__deallocateEPNS_11__hash_nodeIS6_PvEE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; while (1) { if (!i1) break; i2 = HEAP32[i1 >> 2] | 0; __ZdlPv(i1); i1 = i2; } return; } function __ZN4wasm10ThreadPool3getEv() { var i1 = 0, i2 = 0, i3 = 0; i1 = HEAP32[11381] | 0; if (!i1) { i1 = __Znwj(96) | 0; i2 = i1; i3 = i2 + 96 | 0; do { HEAP32[i2 >> 2] = 0; i2 = i2 + 4 | 0; } while ((i2 | 0) < (i3 | 0)); HEAP32[11381] = i1; __ZN4wasm10ThreadPool10initializeEj(i1, __ZN4wasm10ThreadPool11getNumCoresEv() | 0); i1 = HEAP32[11381] | 0; } return i1 | 0; } function __ZNSt3__213__vector_baseIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -8 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = __Znwj(12) | 0; HEAP32[i2 >> 2] = 2928; i4 = i1 + 4 | 0; i3 = HEAP32[i4 + 4 >> 2] | 0; i1 = i2 + 4 | 0; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 + 4 >> 2] = i3; return i2 | 0; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i2 = __Znwj(12) | 0; HEAP32[i2 >> 2] = 2884; i4 = i1 + 4 | 0; i3 = HEAP32[i4 + 4 >> 2] | 0; i1 = i2 + 4 | 0; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; HEAP32[i1 + 4 >> 2] = i3; return i2 | 0; } function __ZNSt3__28numpunctIwEC2Ej(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 + 4 >> 2] = i2 + -1; HEAP32[i1 >> 2] = 10416; HEAP32[i1 + 8 >> 2] = 46; HEAP32[i1 + 12 >> 2] = 44; i2 = i1 + 16 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__25ctypeIcE10do_toupperEPcPKc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i1 = HEAP8[i2 >> 0] | 0; if (i1 << 24 >> 24 > -1) { i4 = ___ctype_toupper_loc() | 0; i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + (i1 << 24 >> 24 << 2) >> 2] & 255; } HEAP8[i2 >> 0] = i1; i2 = i2 + 1 | 0; } return i3 | 0; } function __ZNKSt3__25ctypeIcE10do_tolowerEPcPKc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i1 = HEAP8[i2 >> 0] | 0; if (i1 << 24 >> 24 > -1) { i4 = ___ctype_tolower_loc() | 0; i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + (i1 << 24 >> 24 << 2) >> 2] & 255; } HEAP8[i2 >> 0] = i1; i2 = i2 + 1 | 0; } return i3 | 0; } function _newlocale(i2, i3, i1) { i2 = i2 | 0; i3 = i3 | 0; i1 = i1 | 0; var i4 = 0; if (((HEAP8[i3 >> 0] | 0) != 0 ? (_strcmp(i3, 38855) | 0) != 0 : 0) ? (_strcmp(i3, 38067) | 0) != 0 : 0) i1 = 0; else i4 = 4; do if ((i4 | 0) == 4) if (!i1) if (!(HEAP32[11479] | 0)) { HEAP32[11479] = 1; i1 = 45920; break; } else { i1 = _calloc(1, 4) | 0; break; } while (0); return i1 | 0; } function __ZNSt3__213__vector_baseIN4wasm6WalkerINS1_11BreakSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -8 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseINS_4pairIPNS_18condition_variableEPNS_5mutexEEENS_18__hidden_allocatorIS6_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -8 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -8 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__28numpunctIcEC2Ej(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 + 4 >> 2] = i2 + -1; HEAP32[i1 >> 2] = 10376; HEAP8[i1 + 8 >> 0] = 46; HEAP8[i1 + 9 >> 0] = 44; i2 = i1 + 12 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeIjNS_6vectorIPN4wasm4CallENS_9allocatorIS5_EEEEEENS_19__map_value_compareIjS9_NS_4lessIjEELb1EEENS6_IS9_EEE7destroyEPNS_11__tree_nodeIS9_PvEE(i1, HEAP32[i1 + 4 >> 2] | 0); return; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringENS2_3RefEEENS_22__unordered_map_hasherIS3_S5_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S5_NS_8equal_toIS3_EELb1EEENS_9allocatorIS5_EEE12__deallocateEPNS_11__hash_nodeIS5_PvEE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; while (1) { if (!i1) break; i2 = HEAP32[i1 >> 2] | 0; __ZdlPv(i1); i1 = i2; } return; } function __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE12__deallocateEPNS_11__hash_nodeIS2_PvEE(i1, HEAP32[i1 + 8 >> 2] | 0); i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) __ZdlPv(i2); return; } function __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEaSEDn(i3, i1) { i3 = i3 | 0; i1 = i1 | 0; var i2 = 0; i1 = i3 + 16 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) != (i3 | 0)) { if (i2 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i2); } else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 255](i2); HEAP32[i1 >> 2] = 0; return i3 | 0; } function __ZNSt3__219__libcpp_snprintf_lEPcjP15__locale_structPKcz(i3, i4, i1, i5, i2) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; i5 = i5 | 0; i2 = i2 | 0; var i6 = 0, i7 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i7 = i6; HEAP32[i7 >> 2] = i2; i2 = _uselocale(i1) | 0; i1 = _vsnprintf(i3, i4, i5, i7) | 0; if (i2 | 0) _uselocale(i2) | 0; STACKTOP = i6; return i1 | 0; } function __ZNKSt3__220__time_get_c_storageIwE3__xEv(i1) { i1 = i1 | 0; if ((HEAP8[44400] | 0) == 0 ? ___cxa_guard_acquire(44400) | 0 : 0) { HEAP32[12093] = 0; HEAP32[12094] = 0; HEAP32[12095] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(48372, 8460, _wcslen(8460) | 0); ___cxa_atexit(177, 48372, ___dso_handle | 0) | 0; } return 48372; } function __ZNKSt3__220__time_get_c_storageIwE3__rEv(i1) { i1 = i1 | 0; if ((HEAP8[44408] | 0) == 0 ? ___cxa_guard_acquire(44408) | 0 : 0) { HEAP32[12096] = 0; HEAP32[12097] = 0; HEAP32[12098] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(48384, 8496, _wcslen(8496) | 0); ___cxa_atexit(177, 48384, ___dso_handle | 0) | 0; } return 48384; } function __ZNKSt3__220__time_get_c_storageIwE3__cEv(i1) { i1 = i1 | 0; if ((HEAP8[44416] | 0) == 0 ? ___cxa_guard_acquire(44416) | 0 : 0) { HEAP32[12099] = 0; HEAP32[12100] = 0; HEAP32[12101] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(48396, 8544, _wcslen(8544) | 0); ___cxa_atexit(177, 48396, ___dso_handle | 0) | 0; } return 48396; } function __ZNKSt3__220__time_get_c_storageIwE3__XEv(i1) { i1 = i1 | 0; if ((HEAP8[44392] | 0) == 0 ? ___cxa_guard_acquire(44392) | 0 : 0) { HEAP32[12090] = 0; HEAP32[12091] = 0; HEAP32[12092] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(48360, 8424, _wcslen(8424) | 0); ___cxa_atexit(177, 48360, ___dso_handle | 0) | 0; } return 48360; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEPNS0_6__baseISB_EE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; HEAP32[i2 >> 2] = 2928; i3 = i1 + 4 | 0; i1 = HEAP32[i3 + 4 >> 2] | 0; i2 = i2 + 4 | 0; HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; HEAP32[i2 + 4 >> 2] = i1; return; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEPNS0_6__baseISB_EE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; HEAP32[i2 >> 2] = 2884; i3 = i1 + 4 | 0; i1 = HEAP32[i3 + 4 >> 2] | 0; i2 = i2 + 4 | 0; HEAP32[i2 >> 2] = HEAP32[i3 >> 2]; HEAP32[i2 + 4 >> 2] = i1; return; } function __ZN4wasm13WasmValidator11visitBinaryEPNS_6BinaryE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i4 = HEAP32[(HEAP32[i2 + 12 >> 2] | 0) + 4 >> 2] | 0; if ((i4 | 0) != 5 ? (i3 = HEAP32[(HEAP32[i2 + 16 >> 2] | 0) + 4 >> 2] | 0, (i3 | 0) != 5) : 0) __ZN4wasm13WasmValidator13shouldBeEqualIPNS_6BinaryENS_8WasmTypeEEEbT0_S5_T_PKc(i1, i4, i3, i2, 16137) | 0; return; } function __ZN4wasm13printWasmTypeENS_8WasmTypeE(i2) { i2 = i2 | 0; var i1 = 0; switch (i2 | 0) { case 0: { i1 = 17826; break; } case 1: { i1 = 17831; break; } case 2: { i1 = 17835; break; } case 3: { i1 = 17839; break; } case 4: { i1 = 17843; break; } case 5: { i1 = 31639; break; } default: {} } return i1 | 0; } function __ZNSt3__217__call_once_proxyINS_5tupleIJONS_12_GLOBAL__N_111__fake_bindEEEEEEvPv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = HEAP32[HEAP32[i1 >> 2] >> 2] | 0; i1 = HEAP32[i2 + 4 >> 2] | 0; i3 = HEAP32[i2 + 8 >> 2] | 0; i2 = (HEAP32[i2 >> 2] | 0) + (i3 >> 1) | 0; if (i3 & 1) i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + i1 >> 2] | 0; FUNCTION_TABLE_vi[i1 & 255](i2); return; } function __ZNSt3__214__split_bufferIPN4wasm12FunctionTypeERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__212__hash_tableINS_17__hash_value_typeIN6cashew7IStringEiEENS_22__unordered_map_hasherIS3_S4_NS_4hashIS3_EELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEE12__deallocateEPNS_11__hash_nodeIS4_PvEE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; while (1) { if (!i1) break; i2 = HEAP32[i1 >> 2] | 0; __ZdlPv(i1); i1 = i2; } return; } function __ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; if ((i1 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNK10__cxxabiv117__class_type_info29process_static_type_above_dstEPNS_19__dynamic_cast_infoEPKvS4_i(0, i2, i3, i4, i5); return; } function _interpreter_stack_trace() { var i1 = 0, i2 = 0, i3 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i2; __ZN4wasm14ModuleInstance18printFunctionStackEv(i3, HEAP32[11249] | 0); i1 = ___strdup((HEAP8[i3 + 11 >> 0] | 0) < 0 ? HEAP32[i3 >> 2] | 0 : i3) | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i3); STACKTOP = i2; return i1 | 0; } function __ZNSt3__214__split_bufferIPN4wasm10ExpressionERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function _memmove(i1, i4, i2) { i1 = i1 | 0; i4 = i4 | 0; i2 = i2 | 0; var i3 = 0; if ((i4 | 0) < (i1 | 0) & (i1 | 0) < (i4 + i2 | 0)) { i3 = i1; i4 = i4 + i2 | 0; i1 = i1 + i2 | 0; while ((i2 | 0) > 0) { i1 = i1 - 1 | 0; i4 = i4 - 1 | 0; i2 = i2 - 1 | 0; HEAP8[i1 >> 0] = HEAP8[i4 >> 0] | 0; } i1 = i3; } else _memcpy(i1, i4, i2) | 0; return i1 | 0; } function __ZNSt3__214__split_bufferIPN4wasm8FunctionERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIN6cashew7IStringERNS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__211__stdoutbufIwE5imbueERKNS_6localeE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 127](i1) | 0; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49276) | 0; HEAP32[i1 + 36 >> 2] = i2; i2 = (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i2) | 0) & 1; HEAP8[i1 + 44 >> 0] = i2; return; } function __ZNSt3__211__stdoutbufIcE5imbueERKNS_6localeE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 127](i1) | 0; i2 = __ZNKSt3__26locale9use_facetERNS0_2idE(i2, 49268) | 0; HEAP32[i1 + 36 >> 2] = i2; i2 = (FUNCTION_TABLE_ii[HEAP32[(HEAP32[i2 >> 2] | 0) + 28 >> 2] & 127](i2) | 0) & 1; HEAP8[i1 + 44 >> 0] = i2; return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, HEAP32[i1 + 4 >> 2] | 0); return; } function __ZNSt3__214__split_bufferIPN6cashew5ValueERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIPN4wasm7ElementERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIN4wasm8WasmTypeERNS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIN4wasm8NameTypeERNS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -8 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIN4wasm7LiteralERNS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -16 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNKSt3__25ctypeIwE10do_toupperEPwPKw(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i1 = HEAP32[i2 >> 2] | 0; if (i1 >>> 0 < 128) { i4 = ___ctype_toupper_loc() | 0; i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + (i1 << 2) >> 2] | 0; } HEAP32[i2 >> 2] = i1; i2 = i2 + 4 | 0; } return i3 | 0; } function __ZNKSt3__25ctypeIwE10do_tolowerEPwPKw(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i1 = HEAP32[i2 >> 2] | 0; if (i1 >>> 0 < 128) { i4 = ___ctype_tolower_loc() | 0; i1 = HEAP32[(HEAP32[i4 >> 2] | 0) + (i1 << 2) >> 2] | 0; } HEAP32[i2 >> 2] = i1; i2 = i2 + 4 | 0; } return i3 | 0; } function __ZN4wasm17SExpressionParserC2EPc(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var i3 = 0; HEAP32[i2 >> 2] = i1; __ZN10MixedArenaC2Ev(i2 + 12 | 0); i3 = i2 + 40 | 0; HEAP32[i3 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = i1; i1 = 0; while (1) { if (i1 | 0) break; i1 = __ZN4wasm17SExpressionParser5parseEv(i2) | 0; HEAP32[i3 >> 2] = i1; } return; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEPNS2_6ExportEEENS_19__map_value_compareIS3_S6_NS_4lessIS3_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE(i1, HEAP32[i1 + 4 >> 2] | 0); return; } function __ZNSt3__214__split_bufferIPN4wasm5BlockERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIcRNS_9allocatorIcEEEC2EjjS3_(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; if (!i3) i1 = 0; else i1 = __Znwj(i3) | 0; HEAP32[i2 >> 2] = i1; i4 = i1 + i4 | 0; HEAP32[i2 + 8 >> 2] = i4; HEAP32[i2 + 4 >> 2] = i4; HEAP32[i2 + 12 >> 2] = i1 + i3; return; } function __ZNSt3__214__split_bufferIPN4wasm4PassERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIPN4wasm4CallERNS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__214__split_bufferIN6cashew3RefERNS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNSt3__213__vector_baseINS_4pairIPN4wasm7ElementEPNS2_5BlockEEENS_9allocatorIS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -8 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZN4wasm7Literal10getIntegerEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; switch (HEAP32[i1 >> 2] | 0) { case 1: { i3 = HEAP32[i1 + 8 >> 2] | 0; i2 = ((i3 | 0) < 0) << 31 >> 31; break; } case 2: { i3 = i1 + 8 | 0; i2 = HEAP32[i3 + 4 >> 2] | 0; i3 = HEAP32[i3 >> 2] | 0; break; } default: _abort(); } tempRet0 = i2; return i3 | 0; } function __ZN10MixedArena5allocIN4wasm7ElementEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZN10MixedArena10allocSpaceEj(i1, 36) | 0; HEAP8[i2 >> 0] = 1; HEAP32[i2 + 4 >> 2] = i1; i1 = i2 + 8 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i2 + 28 >> 2] = -1; HEAP32[i2 + 32 >> 2] = -1; return i2 | 0; } function __ZNSt3__214__split_bufferIN4wasm4NameERNS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZN4wasm7Builder8blockifyEPNS_10ExpressionES2_(i2, i1, i3) { i2 = i2 | 0; i1 = i1 | 0; i3 = i3 | 0; if (!((i1 | 0) != 0 ? (HEAP32[i1 >> 2] | 0) == 1 : 0)) i1 = __ZN4wasm7Builder9makeBlockEPNS_10ExpressionE(i2, i1) | 0; if (i3 | 0) { __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1 + 12 | 0, i3); __ZN4wasm5Block8finalizeEv(i1); } return i1 | 0; } function __ZNSt3__218condition_variable4waitIZN4wasm34OptimizingIncrementalModuleBuilder20waitUntilAllFinishedEvEUlvE_EEvRNS_11unique_lockINS_5mutexEEET_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; while (1) { if (!(HEAP32[(HEAP32[i3 >> 2] | 0) + 36 >> 2] | 0)) break; __ZNSt3__218condition_variable4waitERNS_11unique_lockINS_5mutexEEE(i1, i2); } return; } function __ZNSt3__213__vector_baseIPNS_6vectorIN6cashew3RefENS_9allocatorIS3_EEEENS4_IS7_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNKSt3__220__time_get_c_storageIcE3__rEv(i1) { i1 = i1 | 0; if ((HEAP8[44328] | 0) == 0 ? ___cxa_guard_acquire(44328) | 0 : 0) { HEAP32[11893] = 0; HEAP32[11894] = 0; HEAP32[11895] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(47572, 39299, 11); ___cxa_atexit(173, 47572, ___dso_handle | 0) | 0; } return 47572; } function __ZNKSt3__220__time_get_c_storageIcE3__cEv(i1) { i1 = i1 | 0; if ((HEAP8[44336] | 0) == 0 ? ___cxa_guard_acquire(44336) | 0 : 0) { HEAP32[11896] = 0; HEAP32[11897] = 0; HEAP32[11898] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(47584, 39311, 20); ___cxa_atexit(173, 47584, ___dso_handle | 0) | 0; } return 47584; } function __ZNKSt3__220__time_get_c_storageIcE3__xEv(i1) { i1 = i1 | 0; if ((HEAP8[44320] | 0) == 0 ? ___cxa_guard_acquire(44320) | 0 : 0) { HEAP32[11890] = 0; HEAP32[11891] = 0; HEAP32[11892] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(47560, 39290, 8); ___cxa_atexit(173, 47560, ___dso_handle | 0) | 0; } return 47560; } function __ZNKSt3__220__time_get_c_storageIcE3__XEv(i1) { i1 = i1 | 0; if ((HEAP8[44312] | 0) == 0 ? ___cxa_guard_acquire(44312) | 0 : 0) { HEAP32[11887] = 0; HEAP32[11888] = 0; HEAP32[11889] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(47548, 39281, 8); ___cxa_atexit(173, 47548, ___dso_handle | 0) | 0; } return 47548; } function __ZN4wasmlsERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEENS_4NameE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; i1 = HEAP32[i1 >> 2] | 0; if (!i1) ___assert_fail(14773, 14782, 82, 42923); else return __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(__ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i2, 36) | 0, i1) | 0; return 0; } function __ZNSt3__213__vector_baseIPNS_17__assoc_sub_stateENS_18__hidden_allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEEC2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; __ZNSt3__26vectorINS0_IN6cashew6ParserINS1_3RefENS1_19DotZeroValueBuilderEE17ExpressionElementENS_9allocatorIS6_EEEENS7_IS9_EEE6resizeEj(i1, 1); return; } function _llvm_cttz_i32(i2) { i2 = i2 | 0; var i1 = 0; i1 = HEAP8[cttz_i8 + (i2 & 255) >> 0] | 0; if ((i1 | 0) < 8) return i1 | 0; i1 = HEAP8[cttz_i8 + (i2 >> 8 & 255) >> 0] | 0; if ((i1 | 0) < 8) return i1 + 8 | 0; i1 = HEAP8[cttz_i8 + (i2 >> 16 & 255) >> 0] | 0; if ((i1 | 0) < 8) return i1 + 16 | 0; return (HEAP8[cttz_i8 + (i2 >>> 24) >> 0] | 0) + 24 | 0; } function __ZNKSt3__27collateIwE12do_transformEPKwS3_(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initIPKwEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeESA_SA_(i1, i3, i4); return; } function __ZNKSt3__27collateIcE12do_transformEPKcS3_(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initIPKcEENS_9enable_ifIXsr21__is_forward_iteratorIT_EE5valueEvE4typeESA_SA_(i1, i3, i4); return; } function __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE8allocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if (i2 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i3 = __Znwj(i2 << 2) | 0; HEAP32[i1 + 4 >> 2] = i3; HEAP32[i1 >> 2] = i3; HEAP32[i1 + 8 >> 2] = i3 + (i2 << 2); return; } } function __ZNSt3__219__libcpp_asprintf_lEPPcP15__locale_structPKcz(i3, i1, i4, i2) { i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i2 = i2 | 0; var i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i5; HEAP32[i6 >> 2] = i2; i2 = _uselocale(i1) | 0; i1 = _vasprintf(i3, i4, i6) | 0; if (i2 | 0) _uselocale(i2) | 0; STACKTOP = i5; return i1 | 0; } function ___cxa_can_catch(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i5; HEAP32[i4 >> 2] = HEAP32[i3 >> 2]; i1 = FUNCTION_TABLE_iiii[HEAP32[(HEAP32[i1 >> 2] | 0) + 16 >> 2] & 31](i1, i2, i4) | 0; if (i1) HEAP32[i3 >> 2] = HEAP32[i4 >> 2]; STACKTOP = i5; return i1 & 1 | 0; } function __ZSt9terminatev() { var i1 = 0, i2 = 0; i1 = ___cxa_get_globals_fast() | 0; if ((i1 | 0 ? (i2 = HEAP32[i1 >> 2] | 0, i2 | 0) : 0) ? (i1 = i2 + 48 | 0, (HEAP32[i1 >> 2] & -256 | 0) == 1126902528 ? (HEAP32[i1 + 4 >> 2] | 0) == 1129074247 : 0) : 0) __ZSt11__terminatePFvvE(HEAP32[i2 + 12 >> 2] | 0); __ZSt11__terminatePFvvE(__ZSt13get_terminatev() | 0); } function __ZNSt3__214__split_bufferIPcRNS_9allocatorIS1_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function _calloc(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; if (i2) { i1 = Math_imul(i3, i2) | 0; if ((i3 | i2) >>> 0 > 65535) i1 = ((i1 >>> 0) / (i2 >>> 0) | 0 | 0) == (i3 | 0) ? i1 : -1; } else i1 = 0; i2 = _malloc(i1) | 0; if (!i2) return i2 | 0; if (!(HEAP32[i2 + -4 >> 2] & 3)) return i2 | 0; _memset(i2 | 0, 0, i1 | 0) | 0; return i2 | 0; } function __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_h(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3; HEAP8[i4 >> 0] = i2; i2 = __ZNSt3__224__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j(i1, i4, 1) | 0; STACKTOP = i3; return i2 | 0; } function __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i4 = i3; HEAP8[i4 >> 0] = i2; i2 = __ZNSt3__224__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j(i1, i4, 1) | 0; STACKTOP = i3; return i2 | 0; } function __ZNSt3__26vectorIN4wasm8WasmTypeENS_9allocatorIS2_EEE8allocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if (i2 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i3 = __Znwj(i2 << 2) | 0; HEAP32[i1 + 4 >> 2] = i3; HEAP32[i1 >> 2] = i3; HEAP32[i1 + 8 >> 2] = i3 + (i2 << 2); return; } } function __ZNSt3__217__libcpp_sscanf_lEPKcP15__locale_structS1_z(i3, i1, i4, i2) { i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i2 = i2 | 0; var i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i5; HEAP32[i6 >> 2] = i2; i2 = _uselocale(i1) | 0; i1 = _vsscanf(i3, i4, i6) | 0; if (i2 | 0) _uselocale(i2) | 0; STACKTOP = i5; return i1 | 0; } function __ZN4wasm15Asm2WasmBuilder11fixCallTypeEPNS_10ExpressionENS_8WasmTypeE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; switch (HEAP32[i2 >> 2] | 0) { case 6: { HEAP32[i2 + 4 >> 2] = i3; break; } case 7: { HEAP32[i2 + 4 >> 2] = i3; break; } case 8: { HEAP32[i2 + 4 >> 2] = i3; break; } default: {} } return; } function __ZNSt3__26vectorIN4wasm8NameTypeENS_9allocatorIS2_EEE8allocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if (i2 >>> 0 > 536870911) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i3 = __Znwj(i2 << 3) | 0; HEAP32[i1 + 4 >> 2] = i3; HEAP32[i1 >> 2] = i3; HEAP32[i1 + 8 >> 2] = i3 + (i2 << 3); return; } } function __ZNSt3__214__split_bufferIjRNS_9allocatorIjEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -4 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) __ZdlPv(i1); return; } function __ZNK4wasm7Literal5floorEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var d3 = 0.0; if ((HEAP32[i1 >> 2] | 0) == 3) { d3 = +Math_floor(+(+__ZNK4wasm7Literal6getf32Ev(i1))); HEAPF32[i2 + 8 >> 2] = d3; i1 = 3; } else { d3 = +Math_floor(+(+__ZNK4wasm7Literal6getf64Ev(i1))); HEAPF64[i2 + 8 >> 3] = d3; i1 = 4; } HEAP32[i2 >> 2] = i1; return; } function __GLOBAL__sub_I_simple_ast_cpp() { HEAP32[11359] = 0; HEAP32[11360] = 0; HEAP32[11361] = 0; HEAP32[11362] = 0; HEAP32[11363] = 0; HEAP32[11364] = 0; HEAP32[11365] = 0; HEAP32[11366] = 0; ___cxa_atexit(162, 45436, ___dso_handle | 0) | 0; __ZN6cashew10IStringSetC2EPKc(45468, 33947); ___cxa_atexit(159, 45468, ___dso_handle | 0) | 0; return; } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE8allocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if (i2 >>> 0 > 1073741823) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i3 = __Znwj(i2 << 2) | 0; HEAP32[i1 + 4 >> 2] = i3; HEAP32[i1 >> 2] = i3; HEAP32[i1 + 8 >> 2] = i3 + (i2 << 2); return; } } function __ZNK4wasm7Literal9nearbyintEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var d3 = 0.0; if ((HEAP32[i1 >> 2] | 0) == 3) { d3 = +_nearbyintf(+__ZNK4wasm7Literal6getf32Ev(i1)); HEAPF32[i2 + 8 >> 2] = d3; i1 = 3; } else { d3 = +_nearbyint(+__ZNK4wasm7Literal6getf64Ev(i1)); HEAPF64[i2 + 8 >> 3] = d3; i1 = 4; } HEAP32[i2 >> 2] = i1; return; } function __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeIPN4wasm6ExportEjEENS_19__map_value_compareIS4_S5_NS_4lessIS4_EELb1EEENS_9allocatorIS5_EEE7destroyEPNS_11__tree_nodeIS5_PvEE(i1, HEAP32[i1 + 4 >> 2] | 0); return; } function __ZNSt3__213__vector_baseIPN4wasm12FunctionTypeENS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNKSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEEclES5_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = HEAP32[i1 + 16 >> 2] | 0; if (!i1) { i2 = ___cxa_allocate_exception(4) | 0; HEAP32[i2 >> 2] = 2304; ___cxa_throw(i2 | 0, 48, 11); } else return FUNCTION_TABLE_iii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 31](i1, i2) | 0; return 0; } function __ZNK4wasm7Literal4sqrtEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var d3 = 0.0; if ((HEAP32[i1 >> 2] | 0) == 3) { d3 = +Math_sqrt(+(+__ZNK4wasm7Literal6getf32Ev(i1))); HEAPF32[i2 + 8 >> 2] = d3; i1 = 3; } else { d3 = +Math_sqrt(+(+__ZNK4wasm7Literal6getf64Ev(i1))); HEAPF64[i2 + 8 >> 3] = d3; i1 = 4; } HEAP32[i2 >> 2] = i1; return; } function __ZNK4wasm7Literal4ceilEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var d3 = 0.0; if ((HEAP32[i1 >> 2] | 0) == 3) { d3 = +Math_ceil(+(+__ZNK4wasm7Literal6getf32Ev(i1))); HEAPF32[i2 + 8 >> 2] = d3; i1 = 3; } else { d3 = +Math_ceil(+(+__ZNK4wasm7Literal6getf64Ev(i1))); HEAPF64[i2 + 8 >> 3] = d3; i1 = 4; } HEAP32[i2 >> 2] = i1; return; } function __ZN4wasm10PassRunner11runFunctionEPNS_8FunctionE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0, i4 = 0; i4 = HEAP32[i2 + 12 >> 2] | 0; i1 = HEAP32[i2 + 8 >> 2] | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; __ZN4wasm10PassRunner17runPassOnFunctionEPNS_4PassEPNS_8FunctionE(i2, HEAP32[i1 >> 2] | 0, i3); i1 = i1 + 4 | 0; } return; } function __ZNSt3__213__vector_baseIPN4wasm10ExpressionENS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __Z9printTextRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 34) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i2) | 0; return __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 34) | 0; } function __ZN4wasm7Builder10makeBinaryENS_8BinaryOpEPNS_10ExpressionES3_(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i1 + 12 >> 2] = i3; HEAP32[i1 + 16 >> 2] = i4; __ZN4wasm6Binary8finalizeEv(i1); return i1 | 0; } function __ZN4wasm6Thread4workENSt3__28functionIFNS_15ThreadWorkStateEvEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = i1 + 4 | 0; __ZNSt3__25mutex4lockEv(i3); __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEEaSERKS4_(i1 + 88 | 0, i2) | 0; __ZNSt3__218condition_variable10notify_oneEv(i1 + 32 | 0); __ZNSt3__25mutex6unlockEv(i3); return; } function _truncf(d1) { d1 = +d1; var i2 = 0, i3 = 0, i4 = 0; i2 = (HEAPF32[tempDoublePtr >> 2] = d1, HEAP32[tempDoublePtr >> 2] | 0); i3 = (i2 >>> 23 & 255) + -118 | 0; if ((i3 | 0) <= 31 ? (i4 = (i3 | 0) < 9 ? 2147483647 : -1 >>> i3, (i4 & i2 | 0) != 0) : 0) d1 = (HEAP32[tempDoublePtr >> 2] = i2 & ~i4, +HEAPF32[tempDoublePtr >> 2]); return +d1; } function __ZNSt3__213__vector_baseIPN4wasm8FunctionENS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIN6cashew7IStringENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZN10MixedArena5allocIN4wasm12CallIndirectEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZN10MixedArena10allocSpaceEj(i1, 32) | 0; HEAP32[i2 >> 2] = 8; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = i1; i1 = i2 + 12 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; return i2 | 0; } function __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameEjEENS_19__map_value_compareIS3_S4_NS_4lessIS3_EELb1EEENS_9allocatorIS4_EEE7destroyEPNS_11__tree_nodeIS4_PvEE(i1, HEAP32[i1 + 4 >> 2] | 0); return; } function __ZNSt3__213__vector_baseIPN6cashew5ValueENS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIPN4wasm7ElementENS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIN4wasm8NameTypeENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -8 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIN4wasm7LiteralENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -16 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__26vectorIPNS_6locale5facetENS_15__sso_allocatorIS3_Lj28EEEE18__construct_at_endEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = i1 + 4 | 0; i1 = i2; i2 = HEAP32[i3 >> 2] | 0; do { HEAP32[i2 >> 2] = 0; i2 = (HEAP32[i3 >> 2] | 0) + 4 | 0; HEAP32[i3 >> 2] = i2; i1 = i1 + -1 | 0; } while ((i1 | 0) != 0); return; } function __ZN10MixedArena5allocIN4wasm10CallImportEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZN10MixedArena10allocSpaceEj(i1, 28) | 0; HEAP32[i2 >> 2] = 7; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = i1; i1 = i2 + 12 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; return i2 | 0; } function __ZNSt3__213__vector_baseIPN4wasm5BlockENS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZN4wasm7Literal9castToI64Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; if ((HEAP32[i2 >> 2] | 0) == 4) { i4 = i2 + 8 | 0; i3 = HEAP32[i4 + 4 >> 2] | 0; i2 = i1 + 8 | 0; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; HEAP32[i2 + 4 >> 2] = i3; HEAP32[i1 >> 2] = 2; return; } else ___assert_fail(24558, 14782, 222, 24580); } function __ZN4wasm7Literal9castToF64Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; if ((HEAP32[i2 >> 2] | 0) == 2) { i4 = i2 + 8 | 0; i3 = HEAP32[i4 + 4 >> 2] | 0; i2 = i1 + 8 | 0; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; HEAP32[i2 + 4 >> 2] = i3; HEAP32[i1 >> 2] = 4; return; } else ___assert_fail(18153, 14782, 210, 18175); } function __ZN4wasm13WasmValidator9visitLoadEPNS_4LoadE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator17validateAlignmentEj(i1, HEAP32[i2 + 16 >> 2] | 0); __ZN4wasm13WasmValidator33shouldBeEqualOrFirstIsUnreachableIPNS_4LoadENS_8WasmTypeEEEbT0_S5_T_PKc(i1, HEAP32[(HEAP32[i2 + 20 >> 2] | 0) + 4 >> 2] | 0, 1, i2, 15572) | 0; return; } function __ZN4wasm12PassRegistry8PassInfoC2ENSt3__212basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_8functionIFPNS_4PassEvEEE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i1, i2); __ZNSt3__28functionIFPN4wasm4PassEvEEC2ERKS5_(i1 + 16 | 0, i3); return; } function __ZNSt3__213__vector_baseIPN4wasm4PassENS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIPN4wasm4CallENS_9allocatorIS3_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIN6cashew3RefENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZN4wasm14AstStackHelperC2EN6cashew3RefE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = HEAP32[11243] | 0; if ((i1 | 0) == (HEAP32[11244] | 0)) __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(44968, i2); else { HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; HEAP32[11243] = (HEAP32[11243] | 0) + 4; } return; } function __ZNSt3__213__vector_baseIN4wasm4NameENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZN4wasm17WasmBinaryBuilder16readMemoryAccessERNS_7AddressEjS2_(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; __ZN4wasm7AddressaSEy(i2, __ZN4wasm4Pow2Ej(__ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i1) | 0) | 0, 0) | 0; __ZN4wasm7AddressaSEy(i4, __ZN4wasm17WasmBinaryBuilder9getU32LEBEv(i1) | 0, 0) | 0; return; } function __ZNK4wasm7Literal5truncEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; var d3 = 0.0; if ((HEAP32[i1 >> 2] | 0) == 3) { d3 = +_truncf(+__ZNK4wasm7Literal6getf32Ev(i1)); HEAPF32[i2 + 8 >> 2] = d3; i1 = 3; } else { d3 = +_trunc(+__ZNK4wasm7Literal6getf64Ev(i1)); HEAPF64[i2 + 8 >> 3] = d3; i1 = 4; } HEAP32[i2 >> 2] = i1; return; } function __ZNSt3__28ios_base4InitD2Ev(i1) { i1 = i1 | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(46604) | 0; __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEE5flushEv(46688) | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEE5flushEv(46940) | 0; __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEE5flushEv(47024) | 0; return; } function __ZNSt3__211__tree_nextIPNS_16__tree_node_baseIPvEEEET_S5_(i2) { i2 = i2 | 0; var i1 = 0; i1 = HEAP32[i2 + 4 >> 2] | 0; if (!i1) while (1) { i1 = HEAP32[i2 + 8 >> 2] | 0; if ((HEAP32[i1 >> 2] | 0) == (i2 | 0)) break; else i2 = i1; } else while (1) { i2 = HEAP32[i1 >> 2] | 0; if (!i2) break; else i1 = i2; } return i1 | 0; } function __ZN4wasm13WasmValidatorD2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeIN4wasm4NameENS2_8WasmTypeEEENS_19__map_value_compareIS3_S5_NS_4lessIS3_EELb1EEENS_9allocatorIS5_EEED2Ev(i1 + 28 | 0); __ZNSt3__213__vector_baseIN4wasm6WalkerINS1_13WasmValidatorENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEED2Ev(i1 + 4 | 0); return; } function __ZN10MixedArena5allocIN4wasm4CallEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZN10MixedArena10allocSpaceEj(i1, 28) | 0; HEAP32[i2 >> 2] = 6; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = i1; i1 = i2 + 12 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; return i2 | 0; } function ___uflow(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; if ((HEAP32[i1 + 8 >> 2] | 0) == 0 ? (___toread(i1) | 0) != 0 : 0) i1 = -1; else if ((FUNCTION_TABLE_iiii[HEAP32[i1 + 32 >> 2] & 31](i1, i2, 1) | 0) == 1) i1 = HEAPU8[i2 >> 0] | 0; else i1 = -1; STACKTOP = i3; return i1 | 0; } function __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i3 = i3 + 8 | 0; FUNCTION_TABLE_viiiiii[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 15](i1, i2, HEAP32[i3 >> 2] | 0, HEAP32[i3 + 4 >> 2] | 0, 0, i4); return; } function __ZNSt3__26vectorIPN4wasm10ExpressionENS_9allocatorIS3_EEE18__construct_at_endEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = i1 + 4 | 0; i1 = i2; i2 = HEAP32[i3 >> 2] | 0; do { HEAP32[i2 >> 2] = 0; i2 = (HEAP32[i3 >> 2] | 0) + 4 | 0; HEAP32[i3 >> 2] = i2; i1 = i1 + -1 | 0; } while ((i1 | 0) != 0); return; } function __ZN4wasm4Pow2Ej(i2) { i2 = i2 | 0; var i1 = 0; switch (i2 | 0) { case 0: { i1 = 1; break; } case 1: { i1 = 2; break; } case 2: { i1 = 4; break; } case 3: { i1 = 8; break; } case 4: { i1 = 16; break; } case 5: { i1 = 32; break; } default: {} } return i1 | 0; } function ___shlim(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0, i5 = 0; HEAP32[i1 + 104 >> 2] = i2; i3 = HEAP32[i1 + 8 >> 2] | 0; i4 = HEAP32[i1 + 4 >> 2] | 0; i5 = i3 - i4 | 0; HEAP32[i1 + 108 >> 2] = i5; if ((i2 | 0) != 0 & (i5 | 0) > (i2 | 0)) HEAP32[i1 + 100 >> 2] = i4 + i2; else HEAP32[i1 + 100 >> 2] = i3; return; } function __ZNK10__cxxabiv117__class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; if ((i1 | 0) == (HEAP32[i2 + 8 >> 2] | 0)) __ZNK10__cxxabiv117__class_type_info24process_found_base_classEPNS_19__dynamic_cast_infoEPvi(0, i2, i3, i4); return; } function __ZN4wasm13sigToWasmTypeEc(i2) { i2 = i2 | 0; var i1 = 0; switch (i2 << 24 >> 24 | 0) { case 105: { i1 = 1; break; } case 106: { i1 = 2; break; } case 102: { i1 = 3; break; } case 100: { i1 = 4; break; } case 118: { i1 = 0; break; } default: _abort(); } return i1 | 0; } function __ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner4trapEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = HEAP32[(HEAP32[i1 + 4 >> 2] | 0) + 36 >> 2] | 0; FUNCTION_TABLE_vii[HEAP32[(HEAP32[i1 >> 2] | 0) + 20 >> 2] & 255](i1, i2); return; } function __ZNSt3__214__split_bufferIcRNS_9allocatorIcEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0, i5 = 0; i2 = HEAP32[i1 + 4 >> 2] | 0; i3 = i1 + 8 | 0; i4 = HEAP32[i3 >> 2] | 0; while (1) { if ((i4 | 0) == (i2 | 0)) break; i5 = i4 + -1 | 0; HEAP32[i3 >> 2] = i5; i4 = i5; } __ZdlPv(HEAP32[i1 >> 2] | 0); return; } function __ZNK4wasm7Literal12extendToSI64Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if ((HEAP32[i2 >> 2] | 0) == 1) { i3 = HEAP32[i2 + 8 >> 2] | 0; HEAP32[i1 >> 2] = 2; i2 = i1 + 8 | 0; HEAP32[i2 >> 2] = i3; HEAP32[i2 + 4 >> 2] = ((i3 | 0) < 0) << 31 >> 31; return; } else ___assert_fail(18121, 14782, 378, 24321); } function __ZNSt3__213__vector_baseIPcNS_9allocatorIS1_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function ___fpclassifyf(d2) { d2 = +d2; var i1 = 0; i1 = (HEAPF32[tempDoublePtr >> 2] = d2, HEAP32[tempDoublePtr >> 2] | 0); switch ((i1 >>> 23 & 255) << 24 >> 24) { case 0: { i1 = i1 & 2147483647 | 0 ? 3 : 2; break; } case -1: { i1 = (i1 & 8388607 | 0) == 0 & 1; break; } default: i1 = 4; } return i1 | 0; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE7seekoffExNS_8ios_base7seekdirEj(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i6 = i1; HEAP32[i6 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; i6 = i1 + 8 | 0; HEAP32[i6 >> 2] = -1; HEAP32[i6 + 4 >> 2] = -1; return; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE7seekoffExNS_8ios_base7seekdirEj(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i6 = i1; HEAP32[i6 >> 2] = 0; HEAP32[i6 + 4 >> 2] = 0; i6 = i1 + 8 | 0; HEAP32[i6 >> 2] = -1; HEAP32[i6 + 4 >> 2] = -1; return; } function __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 + 16 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i2); } else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 255](i2); return; } function __ZNSt3__213__vector_baseIjNS_9allocatorIjEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -4 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0, i4 = 0; i3 = HEAP32[i1 >> 2] | 0; if (i3 | 0) { i1 = i1 + 4 | 0; i2 = HEAP32[i1 >> 2] | 0; while (1) { if ((i2 | 0) == (i3 | 0)) break; i4 = i2 + -1 | 0; HEAP32[i1 >> 2] = i4; i2 = i4; } __ZdlPv(i3); } return; } function __ZNSt3__28functionIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 + 16 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i2); } else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 255](i2); return; } function __ZN4wasm7Literal11setQuietNaNEf(d1) { d1 = +d1; var i2 = 0; i2 = (HEAPF32[tempDoublePtr >> 2] = d1, HEAP32[tempDoublePtr >> 2] | 0); if ((i2 & 2147483647) >>> 0 > 2139095040) return +(HEAP32[tempDoublePtr >> 2] = i2 | 4194304, +HEAPF32[tempDoublePtr >> 2]); else ___assert_fail(24967, 14782, 295, 25001); return +(0.0); } function __ZN10MixedArena5allocIN4wasm4HostEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZN10MixedArena10allocSpaceEj(i1, 32) | 0; HEAP32[i2 >> 2] = 20; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = i1; HEAP32[i2 + 20 >> 2] = 0; HEAP32[i2 + 24 >> 2] = 0; HEAP32[i2 + 28 >> 2] = 0; return i2 | 0; } function __ZN4wasm17WasmBinaryBuilder12getBreakNameEi(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = HEAP32[i1 + 84 >> 2] | 0; i4 = (HEAP32[i1 + 88 >> 2] | 0) - i3 >> 2; i1 = i4 + ~i2 | 0; if (i1 >>> 0 < i4 >>> 0) return HEAP32[i3 + (i1 << 2) >> 2] | 0; else ___assert_fail(20171, 18854, 1824, 20222); return 0; } function __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZN10MixedArena10allocSpaceEj(i1, 28) | 0; HEAP32[i2 >> 2] = 1; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = i1; HEAP32[i2 + 16 >> 2] = 0; HEAP32[i2 + 20 >> 2] = 0; HEAP32[i2 + 24 >> 2] = 0; return i2 | 0; } function __ZN4wasm6getSigENS_8WasmTypeE(i2) { i2 = i2 | 0; var i1 = 0; switch (i2 | 0) { case 1: { i1 = 105; break; } case 2: { i1 = 106; break; } case 3: { i1 = 102; break; } case 4: { i1 = 100; break; } case 0: { i1 = 118; break; } default: _abort(); } return i1 | 0; } function __ZNSt3__25ctypeIcEC2EPKtbj(i2, i3, i4, i1) { i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; HEAP32[i2 + 4 >> 2] = i1 + -1; HEAP32[i2 >> 2] = 10324; i1 = i2 + 8 | 0; HEAP32[i1 >> 2] = i3; HEAP8[i2 + 12 >> 0] = i4 & 1; if (!i3) { i4 = ___ctype_b_loc() | 0; HEAP32[i1 >> 2] = HEAP32[i4 >> 2]; } return; } function __ZN4wasm6Select8finalizeEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = HEAP32[i1 + 8 >> 2] | 0; if (i2 | 0 ? (i3 = HEAP32[i1 + 12 >> 2] | 0, i3 | 0) : 0) { i2 = HEAP32[i2 + 4 >> 2] | 0; HEAP32[i1 + 4 >> 2] = (i2 | 0) != 5 ? i2 : HEAP32[i3 + 4 >> 2] | 0; return; } ___assert_fail(18625, 14782, 1310, 17861); } function __ZNSt3__28functionIFN4wasm15ThreadWorkStateEvEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 + 16 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i2); } else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 255](i2); return; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEEC2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 7488; __ZNSt3__26localeC2Ev(i1 + 4 | 0); i1 = i1 + 8 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; HEAP32[i1 + 20 >> 2] = 0; return; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE5uflowEv(i1) { i1 = i1 | 0; var i2 = 0; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) i1 = -1; else { i2 = i1 + 12 | 0; i1 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = i1 + 4; i1 = HEAP32[i1 >> 2] | 0; } return i1 | 0; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEEC2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 7424; __ZNSt3__26localeC2Ev(i1 + 4 | 0); i1 = i1 + 8 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; HEAP32[i1 + 20 >> 2] = 0; return; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE5uflowEv(i1) { i1 = i1 | 0; var i2 = 0; if ((FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 36 >> 2] & 127](i1) | 0) == -1) i1 = -1; else { i2 = i1 + 12 | 0; i1 = HEAP32[i2 >> 2] | 0; HEAP32[i2 >> 2] = i1 + 1; i1 = HEAPU8[i1 >> 0] | 0; } return i1 | 0; } function __ZNKSt3__28functionIFN4wasm15ThreadWorkStateEvEEclEv(i1) { i1 = i1 | 0; i1 = HEAP32[i1 + 16 >> 2] | 0; if (!i1) { i1 = ___cxa_allocate_exception(4) | 0; HEAP32[i1 >> 2] = 2304; ___cxa_throw(i1 | 0, 48, 11); } else return FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 127](i1) | 0; return 0; } function __ZNSt3__26vectorIcNS_9allocatorIcEEE8allocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if ((i2 | 0) < 0) __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1); else { i3 = __Znwj(i2) | 0; HEAP32[i1 + 4 >> 2] = i3; HEAP32[i1 >> 2] = i3; HEAP32[i1 + 8 >> 2] = i3 + i2; return; } } function __ZN4wasm5unhexEc(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0; i3 = i2 << 24 >> 24; do if ((i2 + -48 & 255) >= 10) { if ((i2 + -97 & 255) < 6) { i1 = i3 + -87 | 0; break; } if ((i2 + -65 & 255) < 6) { i1 = i3 + -55 | 0; break; } else _abort(); } else i1 = i3 + -48 | 0; while (0); return i1 | 0; } function __ZNKSt3__25ctypeIcE9do_narrowEPKcS3_cPc(i3, i1, i4, i5, i2) { i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i5 = i5 | 0; i2 = i2 | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; i3 = HEAP8[i1 >> 0] | 0; HEAP8[i2 >> 0] = i3 << 24 >> 24 > -1 ? i3 : i5; i2 = i2 + 1 | 0; i1 = i1 + 1 | 0; } return i4 | 0; } function __ZN4wasm13WasmValidator7visitIfEPNS_2IfE(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i1 = (HEAP32[(HEAP32[i3 + 8 >> 2] | 0) + 4 >> 2] | 0) + -1 | 0; if (i1 >>> 0 < 5) i1 = (19 >>> (i1 & 31) & 1) != 0; else i1 = 0; __ZN4wasm13WasmValidator12shouldBeTrueIPNS_2IfEEEbbT_PKc(i2, i1, i3, 15190) | 0; return; } function _sn_write(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i4 = i1 + 20 | 0; i5 = HEAP32[i4 >> 2] | 0; i1 = (HEAP32[i1 + 16 >> 2] | 0) - i5 | 0; i1 = i1 >>> 0 > i3 >>> 0 ? i3 : i1; _memcpy(i5 | 0, i2 | 0, i1 | 0) | 0; HEAP32[i4 >> 2] = (HEAP32[i4 >> 2] | 0) + i1; return i3 | 0; } function __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE10deallocateEPcj(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (i1 >>> 0 <= i2 >>> 0 & (i1 + 4096 | 0) >>> 0 >= i2 >>> 0) { i1 = i1 + 4096 | 0; if ((i2 + (i3 + 15 & -16) | 0) == (HEAP32[i1 >> 2] | 0)) HEAP32[i1 >> 2] = i2; } else _free(i2); return; } function __ZNSt3__26vectorIcNS_9allocatorIcEEE18__construct_at_endEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = i1 + 4 | 0; i1 = i2; i2 = HEAP32[i3 >> 2] | 0; do { HEAP8[i2 >> 0] = 0; i2 = (HEAP32[i3 >> 2] | 0) + 1 | 0; HEAP32[i3 >> 2] = i2; i1 = i1 + -1 | 0; } while ((i1 | 0) != 0); return; } function __ZNSt3__28ios_baseD2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 7408; __ZNSt3__28ios_base16__call_callbacksENS0_5eventE(i1, 0); __ZNSt3__26localeD2Ev(i1 + 28 | 0); _free(HEAP32[i1 + 32 >> 2] | 0); _free(HEAP32[i1 + 36 >> 2] | 0); _free(HEAP32[i1 + 48 >> 2] | 0); _free(HEAP32[i1 + 60 >> 2] | 0); return; } function __ZNKSt3__27collateIwE7do_hashEPKwS3_(i2, i1, i3) { i2 = i2 | 0; i1 = i1 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i2 = 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; i4 = (HEAP32[i1 >> 2] | 0) + (i2 << 4) | 0; i5 = i4 & -268435456; i2 = (i5 >>> 24 | i5) ^ i4; i1 = i1 + 4 | 0; } return i2 | 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE10walkModuleEPNS_6ModuleE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 + 20 >> 2] = i2; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doWalkModuleEPNS_6ModuleE(i1, i2); __ZN4wasm13WasmValidator11visitModuleEPNS_6ModuleE(i1, i2); return; } function __GLOBAL__sub_I_optimizer_shared_cpp() { HEAP32[11375] = 0; __ZN6cashew7IString3setEPKcb(45504, 34084, 1); __ZN6cashew7IString3setEPKcb(45508, 34103, 1); __ZN6cashew7IString3setEPKcb(45512, 34122, 1); __ZN6cashew7IString3setEPKcb(45516, 34141, 1); __ZN6cashew7IString3setEPKcb(45520, 34162, 1); return; } function __ZNSt3__221__thread_specific_ptrINS_15__thread_structEE5resetEPS1_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = _pthread_getspecific(HEAP32[i1 >> 2] | 0) | 0; _pthread_setspecific(HEAP32[i1 >> 2] | 0, i2 | 0) | 0; if (i3 | 0) { __ZNSt3__215__thread_structD2Ev(i3); __ZdlPv(i3); } return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6insertEjPKcj(i1, i2, i3, _strlen(i3) | 0) | 0; } function __ZNKSt3__27collateIcE7do_hashEPKcS3_(i2, i1, i3) { i2 = i2 | 0; i1 = i1 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i2 = 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; i4 = (HEAP8[i1 >> 0] | 0) + (i2 << 4) | 0; i5 = i4 & -268435456; i2 = (i5 >>> 24 | i5) ^ i4; i1 = i1 + 1 | 0; } return i2 | 0; } function __ZN4wasm8Function12getLocalTypeEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; i3 = HEAP32[i1 + 8 >> 2] | 0; i4 = (HEAP32[i1 + 12 >> 2] | 0) - i3 >> 2; if (i4 >>> 0 > i2 >>> 0) i1 = i3 + (i2 << 2) | 0; else i1 = (HEAP32[i1 + 20 >> 2] | 0) + (i2 - i4 << 2) | 0; return HEAP32[i1 >> 2] | 0; } function __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 + 16 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i2); } else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 255](i2); return; } function __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE2atEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i1 >> 2] | 0; if ((HEAP32[i1 + 4 >> 2] | 0) - i3 >> 2 >>> 0 > i2 >>> 0) return i3 + (i2 << 2) | 0; else __ZNKSt3__220__vector_base_commonILb1EE20__throw_out_of_rangeEv(i1); return 0; } function __ZNKSt3__28functionIFPN4wasm4PassEvEEclEv(i1) { i1 = i1 | 0; i1 = HEAP32[i1 + 16 >> 2] | 0; if (!i1) { i1 = ___cxa_allocate_exception(4) | 0; HEAP32[i1 >> 2] = 2304; ___cxa_throw(i1 | 0, 48, 11); } else return FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 127](i1) | 0; return 0; } function __ZNK4wasm7Literal12extendToUI64Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; if ((HEAP32[i2 >> 2] | 0) == 1) { i3 = HEAP32[i2 + 8 >> 2] | 0; HEAP32[i1 >> 2] = 2; i2 = i1 + 8 | 0; HEAP32[i2 >> 2] = i3; HEAP32[i2 + 4 >> 2] = 0; return; } else ___assert_fail(18121, 14782, 382, 24334); } function __ZN4wasm15Asm2WasmBuilder12bytesToShiftEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; switch (i3 | 0) { case 1: { i1 = 0; break; } case 2: { i1 = 1; break; } case 4: { i1 = 2; break; } case 8: { i1 = 3; break; } default: _abort(); } return i1 | 0; } function _rintf(d1) { d1 = +d1; var i2 = 0; i2 = (HEAPF32[tempDoublePtr >> 2] = d1, HEAP32[tempDoublePtr >> 2] | 0); if ((i2 & 2130706432) >>> 0 <= 1249902592) { i2 = (i2 | 0) < 0; d1 = i2 ? d1 + -8388608.0 + 8388608.0 : d1 + 8388608.0 + -8388608.0; if (d1 == 0.0) d1 = i2 ? -0.0 : 0.0; } return +d1; } function __ZN4wasm22SExpressionWasmBuilder15preParseImportsERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = __ZN4wasm7Element3strEv(__ZN4wasm7ElementixEj(i2, 0) | 0) | 0; if ((i3 | 0) == (HEAP32[11442] | 0)) __ZN4wasm22SExpressionWasmBuilder11parseImportERNS_7ElementE(i1, i2); return; } function __ZN4wasm7Builder9makeBlockEPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = __ZN10MixedArena5allocIN4wasm5BlockEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; if (i2 | 0) { __ZN11ArenaVectorIPN4wasm10ExpressionEE9push_backES2_(i1 + 12 | 0, i2); __ZN4wasm5Block8finalizeEv(i1); } return i1 | 0; } function __ZN4wasm10ThreadPool19notifyThreadIsReadyEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = i1 + 16 | 0; __ZNSt3__25mutex4lockEv(i2); i3 = i1 + 92 | 0; HEAP32[i3 >> 2] = (HEAP32[i3 >> 2] | 0) + 1; __ZNSt3__218condition_variable10notify_oneEv(i1 + 44 | 0); __ZNSt3__25mutex6unlockEv(i2); return; } function _copysignf(d1, d2) { d1 = +d1; d2 = +d2; var i3 = 0; i3 = (HEAPF32[tempDoublePtr >> 2] = d1, HEAP32[tempDoublePtr >> 2] | 0); return +(HEAP32[tempDoublePtr >> 2] = (HEAPF32[tempDoublePtr >> 2] = d2, HEAP32[tempDoublePtr >> 2] | 0) & -2147483648 | i3 & 2147483647, +HEAPF32[tempDoublePtr >> 2]); } function __ZN10__cxxabiv112_GLOBAL__N_15arenaILj4096EE8allocateEj(i4, i1) { i4 = i4 | 0; i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = i1 + 15 & -16; i3 = i4 + 4096 | 0; i1 = HEAP32[i3 >> 2] | 0; if ((i4 + 4096 - i1 | 0) >>> 0 < i2 >>> 0) i1 = _malloc(i2) | 0; else HEAP32[i3 >> 2] = i1 + i2; return i1 | 0; } function __ZN6cashew5Value8setArrayEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; __ZN6cashew5Value4freeEv(i1); HEAP32[i1 >> 2] = 2; i3 = __ZN6cashew5Arena10allocArrayEv(45436) | 0; HEAP32[i1 + 8 >> 2] = i3; __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE7reserveEj(i3, i2); return i1 | 0; } function __ZN11ArenaVectorIN4wasm4NameEE8pop_backEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = i1 + 8 | 0; i3 = HEAP32[i2 >> 2] | 0; if (!i3) ___assert_fail(33194, 33211, 206, 18345); else { i3 = i3 + -1 | 0; HEAP32[i2 >> 2] = i3; return (HEAP32[i1 + 4 >> 2] | 0) + (i3 << 2) | 0; } return 0; } function __ZNSt3__217__assoc_sub_state12__make_readyEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = i1 + 12 | 0; __ZNSt3__25mutex4lockEv(i2); i3 = i1 + 88 | 0; HEAP32[i3 >> 2] = HEAP32[i3 >> 2] | 4; __ZNSt3__218condition_variable10notify_allEv(i1 + 40 | 0); __ZNSt3__25mutex6unlockEv(i2); return; } function __ZN4wasm18CountLeadingZeroesIjEEiT_(i1) { i1 = i1 | 0; i1 = i1 >>> 1 | i1; i1 = i1 >>> 2 | i1; i1 = i1 >>> 4 | i1; i1 = i1 >>> 8 | i1; i1 = i1 >>> 16 | i1; if (!i1) i1 = 32; else { i1 = 34317 + ((Math_imul(i1, 130329821) | 0) >>> 27) | 0; i1 = HEAPU8[i1 >> 0] | 0; } return i1 | 0; } function __ZNSt3__28functionIFhvEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 + 16 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i2); } else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 255](i2); return; } function __ZNSt3__28functionIFavEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 + 16 >> 2] | 0; if ((i2 | 0) != (i1 | 0)) { if (i2 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 20 >> 2] & 255](i2); } else FUNCTION_TABLE_vi[HEAP32[(HEAP32[i2 >> 2] | 0) + 16 >> 2] & 255](i2); return; } function __ZN6cashew5Value4backEv(i1) { i1 = i1 | 0; var i2 = 0; if ((HEAP32[i1 >> 2] | 0) != 2) ___assert_fail(34036, 34046, 491, 33229); i2 = HEAP32[i1 + 8 >> 2] | 0; i1 = HEAP32[i2 + 4 >> 2] | 0; if ((i1 | 0) == (HEAP32[i2 >> 2] | 0)) i1 = 0; else i1 = HEAP32[i1 + -4 >> 2] | 0; return i1 | 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE19doVisitCallIndirectEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator17visitCallIndirectEPNS_12CallIndirectE(i1, __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN10MixedArenaD2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; __ZN10MixedArena5clearEv(i1); i2 = i1 + 24 | 0; if (HEAP32[i2 >> 2] | 0 ? (i3 = HEAP32[i2 >> 2] | 0, i3 | 0) : 0) { __ZN10MixedArenaD2Ev(i3); __ZdlPv(i3); } __ZNSt3__213__vector_baseIPcNS_9allocatorIS1_EEED2Ev(i1); return; } function ___uremdi3(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i6 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i6 | 0; ___udivmoddi4(i1, i2, i3, i4, i5) | 0; STACKTOP = i6; return (tempRet0 = HEAP32[i5 + 4 >> 2] | 0, HEAP32[i5 >> 2] | 0) | 0; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE7seekposENS_4fposI11__mbstate_tEEj(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i4 = i1; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; i4 = i1 + 8 | 0; HEAP32[i4 >> 2] = -1; HEAP32[i4 + 4 >> 2] = -1; return; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE7seekposENS_4fposI11__mbstate_tEEj(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i4 = i1; HEAP32[i4 >> 2] = 0; HEAP32[i4 + 4 >> 2] = 0; i4 = i1 + 8 | 0; HEAP32[i4 >> 2] = -1; HEAP32[i4 + 4 >> 2] = -1; return; } function __ZNKSt3__28functionIFhvEEclEv(i1) { i1 = i1 | 0; i1 = HEAP32[i1 + 16 >> 2] | 0; if (!i1) { i1 = ___cxa_allocate_exception(4) | 0; HEAP32[i1 >> 2] = 2304; ___cxa_throw(i1 | 0, 48, 11); } else return FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 127](i1) | 0; return 0; } function __ZNKSt3__28functionIFavEEclEv(i1) { i1 = i1 | 0; i1 = HEAP32[i1 + 16 >> 2] | 0; if (!i1) { i1 = ___cxa_allocate_exception(4) | 0; HEAP32[i1 >> 2] = 2304; ___cxa_throw(i1 | 0, 48, 11); } else return FUNCTION_TABLE_ii[HEAP32[(HEAP32[i1 >> 2] | 0) + 24 >> 2] & 127](i1) | 0; return 0; } function dynCall_iiiiiiiii(i9, i1, i2, i3, i4, i5, i6, i7, i8) { i9 = i9 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; return FUNCTION_TABLE_iiiiiiiii[i9 & 15](i1 | 0, i2 | 0, i3 | 0, i4 | 0, i5 | 0, i6 | 0, i7 | 0, i8 | 0) | 0; } function __ZN4wasm7Builder9makeUnaryENS_7UnaryOpEPNS_10ExpressionE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i1 = __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(HEAP32[i1 >> 2] | 0) | 0; HEAP32[i1 + 8 >> 2] = i2; HEAP32[i1 + 12 >> 2] = i3; __ZN4wasm5Unary8finalizeEv(i1); return i1 | 0; } function __ZN4wasm16PrintSExpression16visitUnreachableEPNS_11UnreachableE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z17printMinorOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i1 >> 2] | 0, 31639) | 0, 41) | 0; return; } function __ZN4wasm16PrintSExpression15visitCallImportEPNS_10CallImportE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i1 >> 2] | 0, 33105, 0) | 0; __ZN4wasm16PrintSExpression13printCallBodyINS_10CallImportEEEvPT_(i1, i2); return; } function __ZN10__cxxabiv112_GLOBAL__N_111string_pairD2Ev(i1) { i1 = i1 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i1 + 12 | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i1); return; } function __Z8doIndentRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i1 = 0; while (1) { if ((i1 | 0) == (i3 | 0)) break; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i2, 33275) | 0; i1 = i1 + 1 | 0; } return i2 | 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12walkFunctionEPNS_8FunctionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 + 16 >> 2] = i2; __ZN4wasm13WasmValidator14doWalkFunctionEPNS_8FunctionE(i1, i2); __ZN4wasm13WasmValidator13visitFunctionEPNS_8FunctionE(i1, i2); return; } function __ZNKSt3__28messagesIwE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i3 = _catopen((HEAP8[i2 + 11 >> 0] | 0) < 0 ? HEAP32[i2 >> 2] | 0 : i2, 1) | 0; return i3 >>> ((i3 | 0) != (-1 | 0) & 1) | 0; } function __ZNKSt3__28messagesIcE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i3 = _catopen((HEAP8[i2 + 11 >> 0] | 0) < 0 ? HEAP32[i2 >> 2] | 0 : i2, 1) | 0; return i3 >>> ((i3 | 0) != (-1 | 0) & 1) | 0; } function __ZN4wasm15getWasmTypeSizeENS_8WasmTypeE(i2) { i2 = i2 | 0; var i1 = 0; switch (i2 | 0) { case 0: { _abort(); break; } case 3: case 1: { i1 = 4; break; } case 2: { i1 = 8; break; } case 4: { i1 = 8; break; } default: {} } return i1 | 0; } function __ZN4wasm22SExpressionWasmBuilder10parseStartERNS_7ElementE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i1 >> 2] | 0; i2 = __ZN4wasm22SExpressionWasmBuilder15getFunctionNameERNS_7ElementE(i1, __ZN4wasm7ElementixEj(i2, 1) | 0) | 0; HEAP32[i3 + 96 >> 2] = i2; return; } function __ZN4wasm10ThreadPool20resetThreadsAreReadyEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = i1 + 92 | 0; i2 = HEAP32[i3 >> 2] | 0; HEAP32[i3 >> 2] = 0; if ((i2 | 0) == ((HEAP32[i1 + 4 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) >> 2 | 0)) return; else ___assert_fail(34446, 34381, 183, 34468); } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE17doVisitCallImportEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator15visitCallImportEPNS_10CallImportE(i1, __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm12PassRegistry8PassInfoC2Ev(i2) { i2 = i2 | 0; var i1 = 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } HEAP32[i2 + 32 >> 2] = 0; return; } function __ZN4wasm11getWasmTypeEjb(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; L1 : do if (i2 >>> 0 < 4) i1 = 1; else switch (i2 | 0) { case 4: { i1 = i3 ? 3 : 1; break L1; } case 8: { i1 = i3 ? 4 : 2; break L1; } default: _abort(); } while (0); return i1 | 0; } function __Z17printMinorOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(i1, 40) | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i2) | 0; return i1 | 0; } function __ZNSt3__214__shared_count16__release_sharedEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = i1 + 4 | 0; i2 = HEAP32[i3 >> 2] | 0; HEAP32[i3 >> 2] = i2 + -1; if (!i2) { FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 8 >> 2] & 255](i1); i1 = 1; } else i1 = 0; return i1 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEE6appendEPKcj(i1, i2, _strlen(i2) | 0) | 0; } function __ZN4wasm4PassC2Ev(i1) { i1 = i1 | 0; var i2 = 0; HEAP32[i1 >> 2] = 2456; i2 = i1 + 4 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZN4wasm11make_uniqueINS_12FunctionTypeEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() { var i1 = 0; i1 = __Znwj(20) | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; return i1 | 0; } function __ZN4wasm13wasmToAsmTypeENS_8WasmTypeE(i2) { i2 = i2 | 0; var i1 = 0; switch (i2 | 0) { case 1: { i1 = 0; break; } case 3: { i1 = 2; break; } case 4: { i1 = 1; break; } case 0: { i1 = 8; break; } default: _abort(); } return i1 | 0; } function __ZN10MixedArena5allocIN4wasm5ConstEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 24) | 0; HEAP32[i1 >> 2] = 15; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; i2 = i1 + 16 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; return i1 | 0; } function __ZN4wasm16PrintSExpression14printableLocalEj(i2, i3) { i2 = i2 | 0; i3 = i3 | 0; var i1 = 0; i2 = HEAP32[i2 + 28 >> 2] | 0; if (!((i2 | 0) != 0 ? (i1 = __ZN4wasm8Function12tryLocalNameEj(i2, i3) | 0, (i1 | 0) != 0) : 0)) i1 = __ZN4wasm4Name7fromIntEj(i3) | 0; return i1 | 0; } function __ZN10MixedArena5allocIN4wasm5BreakEEEPT_v(i1) { i1 = i1 | 0; var i2 = 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 20) | 0; HEAP32[i1 >> 2] = 4; i2 = i1 + 8 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 5; return i1 | 0; } function __ZL12prepare2wasmv() { var i1 = 0; if ((HEAP32[11246] | 0) == 0 & (HEAP32[11247] | 0) == 0 & (HEAP32[11248] | 0) == 0 & (HEAP32[11249] | 0) == 0) { i1 = (_emscripten_asm_const_i(5) | 0) != 0 & 1; HEAP8[49408] = i1; return; } else ___assert_fail(16776, 13724, 48, 16888); } function __ZNKSt3__210moneypunctIwLb1EE16do_positive_signEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIwLb0EE16do_positive_signEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIcLb1EE16do_positive_signEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIcLb0EE16do_positive_signEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZN4wasm14ParseExceptionC2ENSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i1, i2); HEAP32[i1 + 12 >> 2] = -1; HEAP32[i1 + 16 >> 2] = -1; return; } function __ZN4wasm13asmToWasmTypeE7AsmType(i2) { i2 = i2 | 0; var i1 = 0; switch (i2 | 0) { case 0: { i1 = 1; break; } case 1: { i1 = 4; break; } case 2: { i1 = 3; break; } case 8: { i1 = 0; break; } default: _abort(); } return i1 | 0; } function __ZNKSt3__210moneypunctIwLb1EE14do_curr_symbolEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIwLb0EE14do_curr_symbolEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIcLb1EE14do_curr_symbolEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIcLb0EE14do_curr_symbolEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNK4wasm7Literal13truncateToF32Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var d3 = 0.0; if ((HEAP32[i2 >> 2] | 0) == 4) { d3 = +__ZNK4wasm7Literal6getf64Ev(i2); HEAP32[i1 >> 2] = 3; HEAPF32[i1 + 8 >> 2] = d3; return; } else ___assert_fail(24558, 14782, 394, 24605); } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE15doVisitSetLocalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator13visitSetLocalEPNS_8SetLocalE(i1, __ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZNK4wasm7Literal11extendToF64Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var d3 = 0.0; if ((HEAP32[i2 >> 2] | 0) == 3) { d3 = +__ZNK4wasm7Literal6getf32Ev(i2); HEAP32[i1 >> 2] = 4; HEAPF64[i1 + 8 >> 3] = d3; return; } else ___assert_fail(24430, 14782, 386, 24546); } function __ZN6cashew13OperatorClassC2EOS0_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0, i4 = 0; __ZN6cashew10IStringSetC2EOS0_(i1, i2); i4 = i2 + 32 | 0; i3 = HEAP32[i4 + 4 >> 2] | 0; i2 = i1 + 32 | 0; HEAP32[i2 >> 2] = HEAP32[i4 >> 2]; HEAP32[i2 + 4 >> 2] = i3; return; } function __ZN4wasm16PrintSExpression8visitNopEPNS_3NopE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(__Z17printMinorOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKc(HEAP32[i1 >> 2] | 0, 31651) | 0, 41) | 0; return; } function __ZNSt3__215__thread_structC2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = __Znwj(24) | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; HEAP32[i2 + 12 >> 2] = 0; HEAP32[i2 + 16 >> 2] = 0; HEAP32[i2 + 20 >> 2] = 0; HEAP32[i1 >> 2] = i2; return; } function __ZNKSt3__210moneypunctIwLb1EE11do_groupingEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIwLb0EE11do_groupingEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIcLb1EE11do_groupingEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function __ZNKSt3__210moneypunctIcLb0EE11do_groupingEv(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; HEAP32[i2 + 8 >> 2] = 0; i1 = 0; while (1) { if ((i1 | 0) == 3) break; HEAP32[i2 + (i1 << 2) >> 2] = 0; i1 = i1 + 1 | 0; } return; } function _wmemcpy(i4, i2, i1) { i4 = i4 | 0; i2 = i2 | 0; i1 = i1 | 0; var i3 = 0; if (i1 | 0) { i3 = i4; while (1) { i1 = i1 + -1 | 0; HEAP32[i3 >> 2] = HEAP32[i2 >> 2]; if (!i1) break; else { i2 = i2 + 4 | 0; i3 = i3 + 4 | 0; } } } return i4 | 0; } function ___muldi3(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i5 = i1; i6 = i3; i3 = ___muldsi3(i5, i6) | 0; i1 = tempRet0; return (tempRet0 = (Math_imul(i2, i6) | 0) + (Math_imul(i4, i5) | 0) + i1 | i1 & 0, i3 | 0 | 0) | 0; } function __ZN4wasm7Literal8getFloatEv(i2) { i2 = i2 | 0; var d1 = 0.0; switch (HEAP32[i2 >> 2] | 0) { case 3: { d1 = +__ZNK4wasm7Literal6getf32Ev(i2); break; } case 4: { d1 = +__ZNK4wasm7Literal6getf64Ev(i2); break; } default: _abort(); } return +d1; } function __ZN4wasm6Module15getFunctionTypeEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i1 >> 2] | 0; if ((HEAP32[i1 + 4 >> 2] | 0) - i3 >> 2 >>> 0 > i2 >>> 0) return HEAP32[i3 + (i2 << 2) >> 2] | 0; else ___assert_fail(19616, 14782, 1496, 17495); return 0; } function __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 2240; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 32 | 0); __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEED2Ev(i1); return; } function __ZNKSt3__28numpunctIwE12do_falsenameEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(i1, 10448, _wcslen(10448) | 0); return; } function __ZNKSt3__27codecvtIcc11__mbstate_tE6do_outERS1_PKcS5_RS5_PcS7_RS7_(i1, i2, i3, i4, i5, i6, i7, i8) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; HEAP32[i5 >> 2] = i3; HEAP32[i8 >> 2] = i6; return 3; } function __ZN4wasm6Module9getImportEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i1 + 12 >> 2] | 0; if ((HEAP32[i1 + 16 >> 2] | 0) - i3 >> 2 >>> 0 > i2 >>> 0) return HEAP32[i3 + (i2 << 2) >> 2] | 0; else ___assert_fail(20413, 14782, 1497, 18377); return 0; } function __ZN4wasm6Module9getGlobalEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i1 + 48 >> 2] | 0; if ((HEAP32[i1 + 52 >> 2] | 0) - i3 >> 2 >>> 0 > i2 >>> 0) return HEAP32[i3 + (i2 << 2) >> 2] | 0; else ___assert_fail(18556, 14782, 1500, 18575); return 0; } function __ZN4wasm16PrintSExpression9visitCallEPNS_4CallE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __Z12printOpeningRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEEPKcb(HEAP32[i1 >> 2] | 0, 33118, 0) | 0; __ZN4wasm16PrintSExpression13printCallBodyINS_4CallEEEvPT_(i1, i2); return; } function __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEE12__deallocateEPNS_11__hash_nodeIS2_PvEE(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; while (1) { if (!i1) break; i2 = HEAP32[i1 >> 2] | 0; __ZdlPv(i1); i1 = i2; } return; } function __ZNKSt3__28numpunctIwE11do_truenameEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwj(i1, 10472, _wcslen(10472) | 0); return; } function __ZNKSt3__27codecvtIcc11__mbstate_tE5do_inERS1_PKcS5_RS5_PcS7_RS7_(i1, i2, i3, i4, i5, i6, i7, i8) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; HEAP32[i5 >> 2] = i3; HEAP32[i8 >> 2] = i6; return 3; } function __ZN4wasm13WasmValidator8validateERNS_6ModuleEb(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; HEAP8[i1 + 25 >> 0] = i3 & 1; __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE10walkModuleEPNS_6ModuleE(i1, i2); return (HEAP8[i1 + 24 >> 0] | 0) != 0 | 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13doVisitSwitchEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator11visitSwitchEPNS_6SwitchE(i1, __ZN4wasm10Expression4castINS_6SwitchEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13doVisitReturnEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator11visitReturnEPNS_6ReturnE(i1, __ZN4wasm10Expression4castINS_6ReturnEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13doVisitBinaryEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator11visitBinaryEPNS_6BinaryE(i1, __ZN4wasm10Expression4castINS_6BinaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm16PrintSExpression9incIndentEv(i1) { i1 = i1 | 0; if (!(HEAP8[i1 + 8 >> 0] | 0)) { __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(HEAP32[i1 >> 2] | 0, 10) | 0; i1 = i1 + 4 | 0; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 1; } return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE18doVisitUnreachableEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_11UnreachableEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function ___cxa_get_globals_fast() { var i1 = 0, i2 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; if (!(_pthread_once(49396, 3) | 0)) { i2 = _pthread_getspecific(HEAP32[12350] | 0) | 0; STACKTOP = i1; return i2 | 0; } else _abort_message(41932, i1); return 0; } function __ZNSt3__24pairIKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEED2Ev(i1) { i1 = i1 | 0; __ZN4wasm12PassRegistry8PassInfoD2Ev(i1 + 16 | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); return; } function __ZNSt3__214__num_get_base10__get_baseERNS_8ios_baseE(i1) { i1 = i1 | 0; switch (HEAP32[i1 + 4 >> 2] & 74) { case 64: { i1 = 8; break; } case 8: { i1 = 16; break; } case 0: { i1 = 0; break; } default: i1 = 10; } return i1 | 0; } function __ZNSt3__212__tuple_leafILj0ENS_10unique_ptrINS_15__thread_structENS_14default_deleteIS2_EEEELb0EED2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) { __ZNSt3__215__thread_structD2Ev(i2); __ZdlPv(i2); } return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitUnaryEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator10visitUnaryEPNS_5UnaryE(i1, __ZN4wasm10Expression4castINS_5UnaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitStoreEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator10visitStoreEPNS_5StoreE(i1, __ZN4wasm10Expression4castINS_5StoreEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitBreakEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator10visitBreakEPNS_5BreakE(i1, __ZN4wasm10Expression4castINS_5BreakEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitBlockEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator10visitBlockEPNS_5BlockE(i1, __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13doVisitSwitchEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm11BreakSeeker11visitSwitchEPNS_6SwitchE(i1, __ZN4wasm10Expression4castINS_6SwitchEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function dynCall_iiiiiiii(i8, i1, i2, i3, i4, i5, i6, i7) { i8 = i8 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; return FUNCTION_TABLE_iiiiiiii[i8 & 7](i1 | 0, i2 | 0, i3 | 0, i4 | 0, i5 | 0, i6 | 0, i7 | 0) | 0; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return ((HEAP32[i2 + 4 >> 2] | 0) == 28452 ? i1 + 4 | 0 : 0) | 0; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return ((HEAP32[i2 + 4 >> 2] | 0) == 28258 ? i1 + 4 | 0 : 0) | 0; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE16doVisitSetGlobalEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE16doVisitGetGlobalEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_9GetGlobalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13doVisitSwitchEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10TypeSeeker11visitSwitchEPNS_6SwitchE(i1, __ZN4wasm10Expression4castINS_6SwitchEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE6targetERKSt9type_info(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return ((HEAP32[i2 + 4 >> 2] | 0) == 27977 ? i1 + 4 | 0 : 0) | 0; } function __ZN4wasm7Literal10NaNPayloadEf(d1) { d1 = +d1; var i2 = 0; i2 = (HEAPF32[tempDoublePtr >> 2] = d1, HEAP32[tempDoublePtr >> 2] | 0); if ((i2 & 2147483647) >>> 0 > 2139095040) return i2 & 8388607 | 0; else ___assert_fail(24967, 14782, 281, 26263); return 0; } function __ZN4wasm18isInRangeI32TruncUEx(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (i2 >>> 0 < 1106247679 | (i2 | 0) == 1106247679 & i1 >>> 0 < 4292870145) i1 = 1; else i1 = (i2 | 0) < 0 & (i2 >>> 0 < 3220176896 | (i2 | 0) == -1074790400 & i1 >>> 0 < 0); return i1 | 0; } function __ZN4wasm18isInRangeI32TruncSEx(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (i2 >>> 0 < 1105199103 | (i2 | 0) == 1105199103 & i1 >>> 0 < 4290772993) i1 = 1; else i1 = (i2 | 0) < 0 & (i2 >>> 0 < 3252682752 | (i2 | 0) == -1042284544 & i1 >>> 0 < 1); return i1 | 0; } function __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCalls6createEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = __Znwj(44) | 0; __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCallsC2EPS0_(i2, HEAP32[i1 + 40 >> 2] | 0); return i2 | 0; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE15doVisitSetLocalEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE15doVisitGetLocalEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_8GetLocalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitBreakEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm11BreakSeeker10visitBreakEPNS_5BreakE(i1, __ZN4wasm10Expression4castINS_5BreakEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZNKSt3__210moneypunctIwLb1EE16do_negative_signEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEjw(i1, 1, 45); return; } function __ZNKSt3__210moneypunctIwLb0EE16do_negative_signEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEjw(i1, 1, 45); return; } function __ZNKSt3__210moneypunctIcLb1EE16do_negative_signEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEjc(i1, 1, 45); return; } function __ZNKSt3__210moneypunctIcLb0EE16do_negative_signEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEjc(i1, 1, 45); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE11doVisitLoopEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator9visitLoopEPNS_4LoopE(i1, __ZN4wasm10Expression4castINS_4LoopEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE11doVisitLoadEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator9visitLoadEPNS_4LoadE(i1, __ZN4wasm10Expression4castINS_4LoadEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE11doVisitHostEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator9visitHostEPNS_4HostE(i1, __ZN4wasm10Expression4castINS_4HostEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE11doVisitCallEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator9visitCallEPNS_4CallE(i1, __ZN4wasm10Expression4castINS_4CallEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitBreakEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10TypeSeeker10visitBreakEPNS_5BreakE(i1, __ZN4wasm10Expression4castINS_5BreakEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitBlockEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10TypeSeeker10visitBlockEPNS_5BlockE(i1, __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm10TypeSeekerD2Ev(i1) { i1 = i1 | 0; __ZNSt3__213__vector_baseIN4wasm8WasmTypeENS_9allocatorIS2_EEED2Ev(i1 + 32 | 0); __ZNSt3__213__vector_baseIN4wasm6WalkerINS1_10TypeSeekerENS1_7VisitorIS3_vEEE4TaskENS_9allocatorIS7_EEED2Ev(i1 + 4 | 0); return; } function __ZNKSt3__25ctypeIcE8do_widenEPKcS3_Pc(i3, i1, i4, i2) { i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i2 = i2 | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; HEAP8[i2 >> 0] = HEAP8[i1 >> 0] | 0; i2 = i2 + 1 | 0; i1 = i1 + 1 | 0; } return i4 | 0; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13doVisitSwitchEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6SwitchEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13doVisitSelectEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6SelectEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13doVisitReturnEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6ReturnEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13doVisitBinaryEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6BinaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1, 2176); __ZNSt3__29basic_iosIcNS_11char_traitsIcEEED2Ev(i1 + 60 | 0); return; } function __ZN4wasm12PassRegistryD2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN4wasm12PassRegistry8PassInfoEEENS_19__map_value_compareIS7_SB_NS_4lessIS7_EELb1EEENS5_ISB_EEED2Ev(i1); return; } function __ZN10__cxxabiv112_GLOBAL__N_19destruct_EPv(i1) { i1 = i1 | 0; var i2 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; _free(i1); if (!(_pthread_setspecific(HEAP32[12350] | 0, 0) | 0)) { STACKTOP = i2; return; } else _abort_message(42031, i2); } function __Z8parseIntPKc(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = (HEAP8[i1 >> 0] | 0) + -48 | 0; while (1) { i1 = i1 + 1 | 0; i2 = HEAP8[i1 >> 0] | 0; if (!(i2 << 24 >> 24)) break; i3 = (i3 * 10 | 0) + -48 + (i2 << 24 >> 24) | 0; } return i3 | 0; } function _snprintf(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; var i5 = 0, i6 = 0; i5 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i6 = i5; HEAP32[i6 >> 2] = i4; i4 = _vsnprintf(i1, i2, i3, i6) | 0; STACKTOP = i5; return i4 | 0; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitUnaryEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5UnaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitStoreEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5StoreEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitConstEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5ConstEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitBreakEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5BreakEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitBlockEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm10ThreadPoolD2Ev(i1) { i1 = i1 | 0; __ZNSt3__218condition_variableD2Ev(i1 + 44 | 0); __ZNSt3__25mutexD2Ev(i1 + 16 | 0); __ZNSt3__213__vector_baseINS_10unique_ptrIN4wasm6ThreadENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEED2Ev(i1); return; } function __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1, 2604); __ZNSt3__29basic_iosIcNS_11char_traitsIcEEED2Ev(i1 + 64 | 0); return; } function __ZNKSt3__28numpunctIcE12do_falsenameEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 43511, 5); return; } function __ZNKSt3__25ctypeIwE8do_widenEPKcS3_Pw(i3, i1, i4, i2) { i3 = i3 | 0; i1 = i1 | 0; i4 = i4 | 0; i2 = i2 | 0; while (1) { if ((i1 | 0) == (i4 | 0)) break; HEAP32[i2 >> 2] = HEAP8[i1 >> 0]; i2 = i2 + 4 | 0; i1 = i1 + 1 | 0; } return i4 | 0; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE11doVisitLoopEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10TypeSeeker9visitLoopEPNS_4LoopE(i1, __ZN4wasm10Expression4castINS_4LoopEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __Znwj(i1) { i1 = i1 | 0; var i2 = 0; i2 = (i1 | 0) == 0 ? 1 : i1; while (1) { i1 = _malloc(i2) | 0; if (i1 | 0) break; i1 = __ZSt15get_new_handlerv() | 0; if (!i1) { i1 = 0; break; } FUNCTION_TABLE_v[i1 & 3](); } return i1 | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEjPKcj(i1, i2, i3, _strlen(i3) | 0) | 0; } function __ZNKSt3__28numpunctIcE11do_truenameEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcj(i1, 43517, 4); return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE11doVisitLoopEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4LoopEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE11doVisitLoadEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4LoadEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE11doVisitHostEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4HostEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE11doVisitCallEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4CallEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm18isInRangeI64TruncUEx(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (i2 >>> 0 < 1139802112 | (i2 | 0) == 1139802112 & i1 >>> 0 < 0) i1 = 1; else i1 = (i2 | 0) < 0 & (i2 >>> 0 < 3220176896 | (i2 | 0) == -1074790400 & i1 >>> 0 < 0); return i1 | 0; } function __ZN4wasm18isInRangeI64TruncSEx(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (i2 >>> 0 < 1138753536 | (i2 | 0) == 1138753536 & i1 >>> 0 < 0) i1 = 1; else i1 = (i2 | 0) < 0 & (i2 >>> 0 < 3286237184 | (i2 | 0) == -1008730112 & i1 >>> 0 < 1); return i1 | 0; } function __ZNK4wasm7Literal13truncateToI32Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i2 >> 2] | 0) == 2) { i2 = HEAP32[i2 + 8 >> 2] | 0; HEAP32[i1 >> 2] = 1; HEAP32[i1 + 8 >> 2] = i2; return; } else ___assert_fail(18153, 14782, 390, 24347); } function __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCallsD0Ev(i1) { i1 = i1 | 0; __ZN4wasm10WalkerPassINS_10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS5_vEEEEED2Ev(i1); __ZdlPv(i1); return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE10doVisitNopEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_3NopEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE9doVisitIfEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm13WasmValidator7visitIfEPNS_2IfE(i1, __ZN4wasm10Expression4castINS_2IfEEEPT_v(HEAP32[i2 >> 2] | 0) | 0); return; } function __ZN4wasm11make_uniqueINS_6ImportEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() { var i1 = 0; i1 = __Znwj(16) | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; return i1 | 0; } function __ZL8abort_onN6cashew3RefE(i1) { i1 = i1 | 0; __ZN6cashew5Value9stringifyERNSt3__213basic_ostreamIcNS1_11char_traitsIcEEEEb(HEAP32[i1 >> 2] | 0, 46772, 0); __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_c(46772, 10) | 0; _abort(); } function __ZNKSt3__27codecvtIDsc11__mbstate_tE9do_lengthERS1_PKcS5_j(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; return __ZNSt3__2L20utf8_to_utf16_lengthEPKhS1_jmNS_12codecvt_modeE(i3, i4, i5, 1114111, 0) | 0; } function __ZN4wasm12toSInteger32Ed(d1) { d1 = +d1; var i2 = 0; if (d1 > -2147483648.0 & d1 < 2147483647.0) i2 = ~~d1; else { HEAPF64[tempDoublePtr >> 3] = d1; i2 = (HEAP32[tempDoublePtr + 4 >> 2] | 0) < 0 ? -2147483648 : 2147483647; } return i2 | 0; } function __ZN10MixedArenaC2Ev(i1) { i1 = i1 | 0; var i2 = 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 32768; i2 = _pthread_self() | 0; HEAP32[i1 + 20 >> 2] = i2; HEAP32[i1 + 24 >> 2] = 0; return; } function __ZNKSt3__27codecvtIDic11__mbstate_tE9do_lengthERS1_PKcS5_j(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; return __ZNSt3__2L19utf8_to_ucs4_lengthEPKhS1_jmNS_12codecvt_modeE(i3, i4, i5, 1114111, 0) | 0; } function __ZNKSt3__25ctypeIwE5do_isEtw(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (i3 >>> 0 < 128) { i1 = ___ctype_b_loc() | 0; i1 = (HEAP16[(HEAP32[i1 >> 2] | 0) + (i3 << 1) >> 1] & i2) << 16 >> 16 != 0; } else i1 = 0; return i1 | 0; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE7__cloneEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = __Znwj(8) | 0; HEAP32[i2 >> 2] = 2324; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; return i2 | 0; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7__cloneEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = __Znwj(8) | 0; HEAP32[i2 >> 2] = 2412; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; return i2 | 0; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7__cloneEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = __Znwj(8) | 0; HEAP32[i2 >> 2] = 2368; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; return i2 | 0; } function __ZN6cashew5ValueixEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i1 >> 2] | 0) == 2) return __ZNSt3__26vectorIN6cashew3RefENS_9allocatorIS2_EEE2atEj(HEAP32[i1 + 8 >> 2] | 0, i2) | 0; else ___assert_fail(34036, 34046, 474, 42889); return 0; } function __ZTv0_n12_NSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZTv0_n12_NSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZNSt3__26locale5__imp7installINS_9money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49244) | 0); return; } function __ZNSt3__26locale5__imp7installINS_9money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49236) | 0); return; } function __ZNSt3__26locale5__imp7installINS_9money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49228) | 0); return; } function __ZNSt3__26locale5__imp7installINS_9money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49220) | 0); return; } function __ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE9doVisitIfEPS4_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_2IfEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNSt3__26locale5__imp7installINS_8time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49180) | 0); return; } function __ZNSt3__26locale5__imp7installINS_8time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49172) | 0); return; } function __ZNSt3__26locale5__imp7installINS_8time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49164) | 0); return; } function __ZNSt3__26locale5__imp7installINS_8time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(48352) | 0); return; } function __ZNKSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE6targetERKSt9type_info(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return ((HEAP32[i2 + 4 >> 2] | 0) == 31304 ? i1 + 4 | 0 : 0) | 0; } function __ZN4wasm34OptimizingIncrementalModuleBuilder14wakeAllWorkersEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = i1 + 52 | 0; __ZNSt3__25mutex4lockEv(i2); __ZNSt3__218condition_variable10notify_allEv(i1 + 80 | 0); __ZNSt3__25mutex6unlockEv(i2); return; } function __ZTv0_n12_NSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZTv0_n12_NSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZNSt3__26locale5__imp7installINS_7num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47540) | 0); return; } function __ZNSt3__26locale5__imp7installINS_7num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47532) | 0); return; } function __ZNSt3__26locale5__imp7installINS_7num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47524) | 0); return; } function __ZNSt3__26locale5__imp7installINS_7num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47500) | 0); return; } function __ZN4wasm8Function12tryLocalNameEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i1 + 40 >> 2] | 0; if ((HEAP32[i1 + 44 >> 2] | 0) - i3 >> 2 >>> 0 > i2 >>> 0) return HEAP32[i3 + (i2 << 2) >> 2] | 0; else return 0; return 0; } function __ZN4wasm4Host8finalizeEv(i1) { i1 = i1 | 0; switch (HEAP32[i1 + 8 >> 2] | 0) { case 3: case 1: case 0: { HEAP32[i1 + 4 >> 2] = 1; break; } case 2: { HEAP32[i1 + 4 >> 2] = 1; break; } default: _abort(); } return; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE7__cloneEPNS0_6__baseIS7_EE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i2 >> 2] = 2324; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; return; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7__cloneEPNS0_6__baseIS7_EE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i2 >> 2] = 2412; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; return; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7__cloneEPNS0_6__baseIS7_EE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i2 >> 2] = 2368; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; return; } function __ZN4wasm34OptimizingIncrementalModuleBuilder10wakeWorkerEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = i1 + 52 | 0; __ZNSt3__25mutex4lockEv(i2); __ZNSt3__218condition_variable10notify_oneEv(i1 + 80 | 0); __ZNSt3__25mutex6unlockEv(i2); return; } function __ZN6cashew5Value4sizeEv(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 2) { i1 = HEAP32[i1 + 8 >> 2] | 0; return (HEAP32[i1 + 4 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) >> 2 | 0; } else ___assert_fail(34036, 34046, 458, 14027); return 0; } function __ZN4wasm6Module11checkGlobalEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = HEAP32[i1 + 48 >> 2] | 0; if ((HEAP32[i1 + 52 >> 2] | 0) - i3 >> 2 >>> 0 > i2 >>> 0) i1 = HEAP32[i3 + (i2 << 2) >> 2] | 0; else i1 = 0; return i1 | 0; } function __ZN4wasm7AddressaSEy(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (i3 >>> 0 > 0 | (i3 | 0) == 0 & i2 >>> 0 > 4294967295) ___assert_fail(17088, 14782, 103, 42720); else { HEAP32[i1 >> 2] = i2; return i1 | 0; } return 0; } function ___stdio_close(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i3 = i2; HEAP32[i3 >> 2] = HEAP32[i1 + 60 >> 2]; i1 = ___syscall_ret(___syscall6(6, i3 | 0) | 0) | 0; STACKTOP = i2; return i1 | 0; } function __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return __ZNSt3__224__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j(i1, i2, _strlen(i2) | 0) | 0; } function __ZNK4wasm7Literal14reinterpreti64Ev(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 4) { i1 = i1 + 8 | 0; tempRet0 = HEAP32[i1 + 4 >> 2] | 0; return HEAP32[i1 >> 2] | 0; } else ___assert_fail(24558, 14782, 236, 24590); return 0; } function __ZNK11ArenaVectorIPN4wasm10ExpressionEEixEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i1 + 8 >> 2] | 0) >>> 0 > i2 >>> 0) return (HEAP32[i1 + 4 >> 2] | 0) + (i2 << 2) | 0; else ___assert_fail(14642, 33211, 181, 42889); return 0; } function __ZNKSt3__27codecvtIwc11__mbstate_tE13do_max_lengthEv(i1) { i1 = i1 | 0; i1 = HEAP32[i1 + 8 >> 2] | 0; if (i1) { i1 = _uselocale(i1) | 0; if (!i1) i1 = 4; else { _uselocale(i1) | 0; i1 = 4; } } else i1 = 1; return i1 | 0; } function __ZN4wasm18CountLeadingZeroesIyEEiT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((i2 | 0) == 0 & 0 == 0) i1 = (__ZN4wasm18CountLeadingZeroesIjEEiT_(i1) | 0) + 32 | 0; else i1 = __ZN4wasm18CountLeadingZeroesIjEEiT_(i2) | 0; return i1 | 0; } function dynCall_iiiiiii(i7, i1, i2, i3, i4, i5, i6) { i7 = i7 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; return FUNCTION_TABLE_iiiiiii[i7 & 63](i1 | 0, i2 | 0, i3 | 0, i4 | 0, i5 | 0, i6 | 0) | 0; } function _bitshift64Ashr(i3, i2, i1) { i3 = i3 | 0; i2 = i2 | 0; i1 = i1 | 0; if ((i1 | 0) < 32) { tempRet0 = i2 >> i1; return i3 >>> i1 | (i2 & (1 << i1) - 1) << 32 - i1; } tempRet0 = (i2 | 0) < 0 ? -1 : 0; return i2 >> i1 - 32 | 0; } function __ZNK11ArenaVectorIPN4wasm7ElementEEixEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i1 + 8 >> 2] | 0) >>> 0 > i2 >>> 0) return (HEAP32[i1 + 4 >> 2] | 0) + (i2 << 2) | 0; else ___assert_fail(14642, 33211, 181, 42889); return 0; } function __ZNK11ArenaVectorIPN4wasm10ExpressionEE4backEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 + 8 >> 2] | 0; if (!i2) ___assert_fail(33194, 33211, 201, 33229); else return (HEAP32[i1 + 4 >> 2] | 0) + (i2 + -1 << 2) | 0; return 0; } function __ZNSt3__27codecvtIwc11__mbstate_tED2Ev(i1) { i1 = i1 | 0; var i2 = 0; HEAP32[i1 >> 2] = 10256; i1 = i1 + 8 | 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) != (__ZNSt3__26__clocEv() | 0)) _freelocale(HEAP32[i1 >> 2] | 0); return; } function __ZNK11ArenaVectorIN4wasm4NameEEixEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i1 + 8 >> 2] | 0) >>> 0 > i2 >>> 0) return (HEAP32[i1 + 4 >> 2] | 0) + (i2 << 2) | 0; else ___assert_fail(14642, 33211, 181, 42889); return 0; } function __ZN10MixedArena5allocIN4wasm5StoreEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 28) | 0; HEAP32[i1 >> 2] = 14; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; return i1 | 0; } function _fprintf(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4; HEAP32[i5 >> 2] = i3; i3 = _vfprintf(i1, i2, i5) | 0; STACKTOP = i4; return i3 | 0; } function __ZNK4wasm7Literal6geti64Ev(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 2) { i1 = i1 + 8 | 0; tempRet0 = HEAP32[i1 + 4 >> 2] | 0; return HEAP32[i1 >> 2] | 0; } else ___assert_fail(18153, 14782, 229, 23912); return 0; } function __ZN4wasm7Literal9castToI32Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i2 >> 2] | 0) == 3) { HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i1 >> 2] = 1; return; } else ___assert_fail(24430, 14782, 216, 24536); } function __ZN4wasm7Literal9castToF32Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i2 >> 2] | 0) == 1) { HEAP32[i1 + 8 >> 2] = HEAP32[i2 + 8 >> 2]; HEAP32[i1 >> 2] = 3; return; } else ___assert_fail(18121, 14782, 204, 18143); } function __ZN10MixedArena5allocIN4wasm4LoadEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 24) | 0; HEAP32[i1 >> 2] = 13; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; return i1 | 0; } function dynCall_iiiiiid(i7, i1, i2, i3, i4, i5, d6) { i7 = i7 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; d6 = +d6; return FUNCTION_TABLE_iiiiiid[i7 & 3](i1 | 0, i2 | 0, i3 | 0, i4 | 0, i5 | 0, +d6) | 0; } function __ZNSt3__210unique_ptrIN4wasm10ThreadPoolENS_14default_deleteIS2_EEED2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 >> 2] | 0; HEAP32[i1 >> 2] = 0; if (i2 | 0) { __ZN4wasm10ThreadPoolD2Ev(i2); __ZdlPv(i2); } return; } function _sscanf(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; var i4 = 0, i5 = 0; i4 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i5 = i4; HEAP32[i5 >> 2] = i3; i3 = _vsscanf(i1, i2, i5) | 0; STACKTOP = i4; return i3 | 0; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKwj(i1, i2, _wcslen(i2) | 0) | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKcj(i1, i2, _strlen(i2) | 0) | 0; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj(i1, i2, _strlen(i2) | 0) | 0; } function __ZN10MixedArena5allocIN4wasm4LoopEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 20) | 0; HEAP32[i1 >> 2] = 3; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 12 >> 2] = 0; return i1 | 0; } function _wmemset(i3, i4, i1) { i3 = i3 | 0; i4 = i4 | 0; i1 = i1 | 0; var i2 = 0; if (i1 | 0) { i2 = i3; while (1) { i1 = i1 + -1 | 0; HEAP32[i2 >> 2] = i4; if (!i1) break; else i2 = i2 + 4 | 0; } } return i3 | 0; } function __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE(i1, HEAP32[i1 + 4 >> 2] | 0); return; } function __ZNKSt3__25ctypeIcE10do_tolowerEc(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; if (i1 << 24 >> 24 > -1) { i2 = ___ctype_tolower_loc() | 0; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + (i1 << 24 >> 24 << 2) >> 2] & 255; } return i1 | 0; } function __ZN4wasm11BreakSeeker10visitBreakEPNS_5BreakE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i2 + 8 >> 2] | 0) == (HEAP32[i1 + 24 >> 2] | 0)) { i2 = i1 + 28 | 0; HEAP32[i2 >> 2] = (HEAP32[i2 >> 2] | 0) + 1; } return; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE6targetERKSt9type_info(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return ((HEAP32[i2 + 4 >> 2] | 0) == 19303 ? i1 + 4 | 0 : 0) | 0; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE6targetERKSt9type_info(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return ((HEAP32[i2 + 4 >> 2] | 0) == 21152 ? i1 + 4 | 0 : 0) | 0; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE6targetERKSt9type_info(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return ((HEAP32[i2 + 4 >> 2] | 0) == 20998 ? i1 + 4 | 0 : 0) | 0; } function __ZNK11ArenaVectorIN4wasm4NameEE4backEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 + 8 >> 2] | 0; if (!i2) ___assert_fail(33194, 33211, 201, 33229); else return (HEAP32[i1 + 4 >> 2] | 0) + (i2 + -1 << 2) | 0; return 0; } function __ZN6cashew7IString6hash_cEPKc(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = 5381; while (1) { i3 = HEAP8[i1 >> 0] | 0; if (!(i3 << 24 >> 24)) break; i1 = i1 + 1 | 0; i2 = i3 << 24 >> 24 ^ i2 * 33; } return i2 | 0; } function __ZN6cashew10IStringSetD2Ev(i1) { i1 = i1 | 0; __ZNSt3__213__vector_baseIcNS_9allocatorIcEEED2Ev(i1 + 20 | 0); __ZNSt3__212__hash_tableIN6cashew7IStringENS_4hashIS2_EENS_8equal_toIS2_EENS_9allocatorIS2_EEED2Ev(i1); return; } function dynCall_viiiiii(i7, i1, i2, i3, i4, i5, i6) { i7 = i7 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; FUNCTION_TABLE_viiiiii[i7 & 15](i1 | 0, i2 | 0, i3 | 0, i4 | 0, i5 | 0, i6 | 0); } function __ZN4wasm12isUInteger64Ed(d1) { d1 = +d1; HEAPF64[tempDoublePtr >> 3] = d1; if ((HEAP32[tempDoublePtr + 4 >> 2] | 0) < 0) return 0; else return d1 <= 18446744073709551616.0 & (__ZN4wasm9isIntegerEd(d1) | 0) | 0; return 0; } function __ZN4wasm4NameC2ERKNSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN6cashew7IStringC2EPKcb(i1, (HEAP8[i2 + 11 >> 0] | 0) < 0 ? HEAP32[i2 >> 2] | 0 : i2, 0); return; } function __ZN11ArenaVectorIPN4wasm10ExpressionEE8allocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 + 12 >> 2] = i2; i2 = __ZN10MixedArena10allocSpaceEj(HEAP32[i1 >> 2] | 0, i2 << 2) | 0; HEAP32[i1 + 4 >> 2] = i2; return; } function __ZNKSt3__25ctypeIcE10do_toupperEc(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; if (i1 << 24 >> 24 > -1) { i2 = ___ctype_toupper_loc() | 0; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + ((i1 & 255) << 2) >> 2] & 255; } return i1 | 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE18doVisitUnreachableEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_11UnreachableEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE19doVisitCallIndirectEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm14AstStackHelperD2Ev(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = HEAP32[11243] | 0; i1 = 0; while (1) { if ((i1 | 0) == -1) break; i3 = i1 + -1 | 0; HEAP32[11243] = i2 + (i3 << 2); i1 = i3; } return; } function __ZN4wasm14AstStackHelper9getParentEv(i1) { i1 = i1 | 0; var i2 = 0; i1 = HEAP32[11242] | 0; i2 = (HEAP32[11243] | 0) - i1 >> 2; if (i2 >>> 0 > 1) i1 = HEAP32[i1 + (i2 + -2 << 2) >> 2] | 0; else i1 = 0; return i1 | 0; } function __ZN4wasm11make_uniqueINS_6GlobalEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() { var i1 = 0; i1 = __Znwj(12) | 0; HEAP32[i1 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; return i1 | 0; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE19doVisitCallIndirectEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function _bitshift64Shl(i3, i2, i1) { i3 = i3 | 0; i2 = i2 | 0; i1 = i1 | 0; if ((i1 | 0) < 32) { tempRet0 = i2 << i1 | (i3 & (1 << i1) - 1 << 32 - i1) >>> 32 - i1; return i3 << i1; } tempRet0 = i3 << i1 - 32; return 0; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE18doVisitUnreachableEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_11UnreachableEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm19CountTrailingZeroesIyEEiT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i1) i1 = (__ZN4wasm19CountTrailingZeroesIjEEiT_(i2) | 0) + 32 | 0; else i1 = __ZN4wasm19CountTrailingZeroesIjEEiT_(i1) | 0; return i1 | 0; } function __ZN4wasm12toUInteger32Ed(d1) { d1 = +d1; var i2 = 0; HEAPF64[tempDoublePtr >> 3] = d1; if ((HEAP32[tempDoublePtr + 4 >> 2] | 0) >= 0) if (d1 < 4294967295.0) i2 = ~~d1 >>> 0; else i2 = -1; else i2 = 0; return i2 | 0; } function __ZNKSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E7__cloneEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = __Znwj(8) | 0; HEAP32[i2 >> 2] = 2972; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; return i2 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement7getNodeEv(i1) { i1 = i1 | 0; if (!(HEAP8[i1 >> 0] | 0)) ___assert_fail(29448, 28546, 322, 29455); else return HEAP32[i1 + 4 >> 2] | 0; return 0; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE18doVisitUnreachableEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_11UnreachableEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN11ArenaVectorIPN4wasm7ElementEE8allocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 + 12 >> 2] = i2; i2 = __ZN10MixedArena10allocSpaceEj(HEAP32[i1 >> 2] | 0, i2 << 2) | 0; HEAP32[i1 + 4 >> 2] = i2; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE17doVisitCallImportEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm12FunctionTypeeqERS0_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if ((HEAP32[i1 >> 2] | 0) == (HEAP32[i2 >> 2] | 0)) i1 = __ZN4wasm12FunctionType20structuralComparisonERS0_(i1, i2) | 0; else i1 = 0; return i1 | 0; } function _abort_message(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; var i3 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; HEAP32[i3 >> 2] = i2; i2 = HEAP32[806] | 0; _vfprintf(i2, i1, i3) | 0; _fputc(10, i2) | 0; _abort(); } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE17ExpressionElement5getOpEv(i1) { i1 = i1 | 0; if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 4 >> 2] | 0; else ___assert_fail(29463, 28546, 326, 29471); return 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE16doVisitSetGlobalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE16doVisitGetGlobalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_9GetGlobalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE17doVisitCallImportEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function _bitshift64Lshr(i3, i2, i1) { i3 = i3 | 0; i2 = i2 | 0; i1 = i1 | 0; if ((i1 | 0) < 32) { tempRet0 = i2 >>> i1; return i3 >>> i1 | (i2 & (1 << i1) - 1) << 32 - i1; } tempRet0 = 0; return i2 >>> i1 - 32 | 0; } function __ZNKSt3__28ios_base6getlocEv(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i3 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; i2 = i3; __ZNSt3__26localeC2ERKS0_(i2, i1 + 28 | 0); STACKTOP = i3; return HEAP32[i2 >> 2] | 0; } function __ZN10__cxxabiv112_GLOBAL__N_110construct_Ev() { var i1 = 0; i1 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; if (!(_pthread_key_create(49400, 181) | 0)) { STACKTOP = i1; return; } else _abort_message(41981, i1); } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE15doVisitGetLocalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_8GetLocalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE16doVisitSetGlobalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE16doVisitGetGlobalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_9GetGlobalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN11ArenaVectorIN4wasm4NameEE8allocateEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 + 12 >> 2] = i2; i2 = __ZN10MixedArena10allocSpaceEj(HEAP32[i1 >> 2] | 0, i2 << 2) | 0; HEAP32[i1 + 4 >> 2] = i2; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE16doVisitSetGlobalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE16doVisitGetGlobalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_9GetGlobalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm12isUInteger32Ed(d1) { d1 = +d1; HEAPF64[tempDoublePtr >> 3] = d1; if ((HEAP32[tempDoublePtr + 4 >> 2] | 0) < 0) return 0; else return d1 <= 4294967295.0 & (__ZN4wasm9isIntegerEd(d1) | 0) | 0; return 0; } function __ZNKSt3__27codecvtIcc11__mbstate_tE9do_lengthERS1_PKcS5_j(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i4 = i4 - i3 | 0; return (i4 >>> 0 < i5 >>> 0 ? i4 : i5) | 0; } function __ZNKSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E7__cloneEPNS0_6__baseIS5_EE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i2 >> 2] = 2972; HEAP32[i2 + 4 >> 2] = HEAP32[i1 + 4 >> 2]; return; } function __ZN4wasm7AddressC2Ey(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; HEAP32[i1 >> 2] = i2; if (i3 >>> 0 > 0 | (i3 | 0) == 0 & i2 >>> 0 > 4294967295) ___assert_fail(17088, 14782, 100, 17131); else return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE15doVisitSetLocalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE15doVisitGetLocalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_8GetLocalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm11make_uniqueINS_6ExportEJEEENSt3__210unique_ptrIT_NS2_14default_deleteIS4_EEEEDpOT0_() { var i1 = 0, i2 = 0; i1 = __Znwj(8) | 0; i2 = i1; HEAP32[i2 >> 2] = 0; HEAP32[i2 + 4 >> 2] = 0; return i1 | 0; } function __ZN4wasm8PopCountIjEEiT_(i1) { i1 = i1 | 0; i1 = i1 - (i1 >>> 1 & 1431655765) | 0; i1 = (i1 >>> 2 & 858993459) + (i1 & 858993459) | 0; return (Math_imul((i1 >>> 4) + i1 & 252645135, 16843009) | 0) >>> 24 | 0; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE15doVisitSetLocalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE15doVisitGetLocalEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_8GetLocalEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNSt3__26locale5__imp7installINS_7codecvtIDsc11__mbstate_tEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49284) | 0); return; } function __ZNSt3__26locale5__imp7installINS_7codecvtIDic11__mbstate_tEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49292) | 0); return; } function __ZN6cashew3RefeqERKNS_7IStringE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = HEAP32[i1 >> 2] | 0; if (!(HEAP32[i1 >> 2] | 0)) i1 = (HEAP32[i1 + 8 >> 2] | 0) == (HEAP32[i2 >> 2] | 0); else i1 = 0; return i1 | 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13doVisitSelectEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6SelectEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNSt3__26locale5__imp7installINS_7codecvtIwc11__mbstate_tEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49276) | 0); return; } function __ZNSt3__26locale5__imp7installINS_7codecvtIcc11__mbstate_tEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49268) | 0); return; } function __ZNKSt3__26locale9use_facetERNS0_2idE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = HEAP32[i1 >> 2] | 0; i2 = __ZNSt3__26locale2id5__getEv(i2) | 0; return HEAP32[(HEAP32[i1 + 8 >> 2] | 0) + (i2 << 2) >> 2] | 0; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitConstEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5ConstEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13doVisitSelectEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6SelectEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13doVisitReturnEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6ReturnEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13doVisitBinaryEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6BinaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function runPostSets() {} function _i64Subtract(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i4 = i2 - i4 - (i3 >>> 0 > i1 >>> 0 | 0) >>> 0; return (tempRet0 = i4, i1 - i3 >>> 0 | 0) | 0; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13doVisitSelectEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6SelectEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13doVisitReturnEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6ReturnEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13doVisitBinaryEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_6BinaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function dynCall_iiiiii(i6, i1, i2, i3, i4, i5) { i6 = i6 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; return FUNCTION_TABLE_iiiiii[i6 & 31](i1 | 0, i2 | 0, i3 | 0, i4 | 0, i5 | 0) | 0; } function __ZNSt3__26locale5__imp11make_globalEv() { var i1 = 0; i1 = __ZNSt3__26locale7classicEv() | 0; i1 = HEAP32[i1 >> 2] | 0; HEAP32[12327] = i1; __ZNSt3__214__shared_count12__add_sharedEv(i1); return 49308; } function __ZNKSt3__25ctypeIwE10do_toupperEw(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; if (i1 >>> 0 < 128) { i2 = ___ctype_toupper_loc() | 0; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + (i1 << 2) >> 2] | 0; } return i1 | 0; } function __ZNKSt3__25ctypeIwE10do_tolowerEw(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; if (i1 >>> 0 < 128) { i2 = ___ctype_tolower_loc() | 0; i1 = HEAP32[(HEAP32[i2 >> 2] | 0) + (i1 << 2) >> 2] | 0; } return i1 | 0; } function __ZN6cashew6ParserINS_3RefENS_19DotZeroValueBuilderEE7isSpaceEc(i1) { i1 = i1 | 0; i1 = i1 + -9 << 24 >> 24; if ((i1 & 255) < 24) return (8388627 >>> (i1 & 255) & 1 | 0) != 0 | 0; else return 0; return 0; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitUnaryEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5UnaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitConstEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5ConstEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitBlockEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5BlockEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNK6cashew7IStringltERKS0_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = HEAP32[i1 >> 2] | 0; i2 = HEAP32[i2 >> 2] | 0; return (_strcmp((i1 | 0) == 0 ? 53494 : i1, (i2 | 0) == 0 ? 53494 : i2) | 0) < 0 | 0; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitStoreEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5StoreEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitUnaryEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5UnaryEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitStoreEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5StoreEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitConstEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_5ConstEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE10doVisitNopEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_3NopEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE11doVisitLoopEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4LoopEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE11doVisitLoadEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4LoadEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE11doVisitHostEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4HostEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE11doVisitCallEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4CallEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNSt3__26locale8__globalEv() { if ((HEAP8[44952] | 0) == 0 ? ___cxa_guard_acquire(44952) | 0 : 0) { __ZNSt3__26locale5__imp11make_globalEv() | 0; HEAP32[12328] = 49308; } return HEAP32[12328] | 0; } function __ZNSt3__26locale7classicEv() { if ((HEAP8[44784] | 0) == 0 ? ___cxa_guard_acquire(44784) | 0 : 0) { __ZNSt3__26locale5__imp12make_classicEv() | 0; HEAP32[12326] = 49300; } return HEAP32[12326] | 0; } function __ZNSt3__26locale5__imp7installINS_10moneypunctIwLb1EEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49212) | 0); return; } function __ZNSt3__26locale5__imp7installINS_10moneypunctIwLb0EEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49204) | 0); return; } function __ZNSt3__26locale5__imp7installINS_10moneypunctIcLb1EEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49196) | 0); return; } function __ZNSt3__26locale5__imp7installINS_10moneypunctIcLb0EEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49188) | 0); return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE11doVisitLoadEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4LoadEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE11doVisitHostEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4HostEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE11doVisitCallEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_4CallEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNSt3__26localeC2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = __ZNSt3__26locale8__globalEv() | 0; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i1 >> 2] = i2; __ZNSt3__214__shared_count12__add_sharedEv(i2); return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE10doVisitNopEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_3NopEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN10MixedArena5allocIN4wasm6ReturnEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 12) | 0; HEAP32[i1 >> 2] = 19; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 + 4 >> 2] = 5; return i1 | 0; } function ___cxx_global_array_dtor_112(i1) { i1 = i1 | 0; i1 = 48696; do { i1 = i1 + -12 | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i1); } while ((i1 | 0) != 48408); return; } function ___cxx_global_array_dtor_109(i1) { i1 = i1 | 0; i1 = 47884; do { i1 = i1 + -12 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); } while ((i1 | 0) != 47596); return; } function __ZTv0_n12_NSt3__214basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__214basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZNSt3__26__clocEv() { var i1 = 0; if ((HEAP8[44304] | 0) == 0 ? ___cxa_guard_acquire(44304) | 0 : 0) { i1 = _newlocale(2147483647, 38855, 0) | 0; HEAP32[11871] = i1; } return HEAP32[11871] | 0; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE10doVisitNopEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_3NopEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function ___cxx_global_array_dtor_85(i1) { i1 = i1 | 0; i1 = 48988; do { i1 = i1 + -12 | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i1); } while ((i1 | 0) != 48700); return; } function ___cxx_global_array_dtor_61(i1) { i1 = i1 | 0; i1 = 48176; do { i1 = i1 + -12 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); } while ((i1 | 0) != 47888); return; } function ___cxx_global_array_dtor_46(i1) { i1 = i1 | 0; i1 = 49160; do { i1 = i1 + -12 | 0; __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i1); } while ((i1 | 0) != 48992); return; } function dynCall_iiiiid(i6, i1, i2, i3, i4, d5) { i6 = i6 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; d5 = +d5; return FUNCTION_TABLE_iiiiid[i6 & 7](i1 | 0, i2 | 0, i3 | 0, i4 | 0, +d5) | 0; } function __ZTv0_n12_NSt3__213basic_ostreamIwNS_11char_traitsIwEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZTv0_n12_NSt3__213basic_ostreamIcNS_11char_traitsIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZTv0_n12_NSt3__213basic_istreamIwNS_11char_traitsIwEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__213basic_istreamIwNS_11char_traitsIwEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZTv0_n12_NSt3__213basic_istreamIcNS_11char_traitsIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEED0Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) | 0); return; } function __ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE9doVisitIfEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_2IfEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1); __ZdlPv(i1); return; } function __ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE9doVisitIfEPS1_PPNS_10ExpressionE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN4wasm10Expression4castINS_2IfEEEPT_v(HEAP32[i2 >> 2] | 0) | 0; return; } function __ZN10MixedArena5allocIN4wasm2IfEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 20) | 0; HEAP32[i1 >> 2] = 2; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 16 >> 2] = 0; return i1 | 0; } function ___cxx_global_array_dtor(i1) { i1 = i1 | 0; i1 = 48348; do { i1 = i1 + -12 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); } while ((i1 | 0) != 48180); return; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEEclEv(i1) { i1 = i1 | 0; return __ZN4wasm17WasmBinaryBuilder7getInt8Ev(HEAP32[i1 + 4 >> 2] | 0) | 0; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEEclEv(i1) { i1 = i1 | 0; return __ZN4wasm17WasmBinaryBuilder7getInt8Ev(HEAP32[i1 + 4 >> 2] | 0) | 0; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEEclEv(i1) { i1 = i1 | 0; return __ZN4wasm17WasmBinaryBuilder7getInt8Ev(HEAP32[i1 + 4 >> 2] | 0) | 0; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZN4wasm19CountTrailingZeroesIjEEiT_(i1) { i1 = i1 | 0; if (!i1) i1 = 32; else { i1 = 34285 + ((Math_imul(i1 & 0 - i1, 125613361) | 0) >>> 27) | 0; i1 = HEAPU8[i1 >> 0] | 0; } return i1 | 0; } function __ZThn8_NSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1 + -8 | 0); return; } function __ZThn8_NSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1 + -8 | 0); return; } function __ZNSt3__26locale5__imp7installINS_8numpunctIwEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47516) | 0); return; } function __ZNSt3__26locale5__imp7installINS_8numpunctIcEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47492) | 0); return; } function __ZNSt3__26locale5__imp7installINS_8messagesIwEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49260) | 0); return; } function __ZNSt3__26locale5__imp7installINS_8messagesIcEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(49252) | 0); return; } function __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev(i1); __ZdlPv(i1); return; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE18destroy_deallocateEv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNKSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E6targetERKSt9type_info(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return ((HEAP32[i2 + 4 >> 2] | 0) == 31052 ? i1 + 4 | 0 : 0) | 0; } function __ZNSt3__26locale5__imp7installINS_7collateIwEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47468) | 0); return; } function __ZNSt3__26locale5__imp7installINS_7collateIcEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47460) | 0); return; } function __ZN6cashew7IStringC2EPKcb(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (!i2) ___assert_fail(13947, 13949, 63, 13984); else { __ZN6cashew7IString3setEPKcb(i1, i2, i3); return; } } function __ZN4wasm12PassRegistry8PassInfoD2Ev(i1) { i1 = i1 | 0; __ZNSt3__28functionIFPN4wasm4PassEvEED2Ev(i1 + 16 | 0); __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); return; } function dynCall_viiiii(i6, i1, i2, i3, i4, i5) { i6 = i6 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; FUNCTION_TABLE_viiiii[i6 & 3](i1 | 0, i2 | 0, i3 | 0, i4 | 0, i5 | 0); } function __ZNSt3__26locale5__imp7installINS_5ctypeIwEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47508) | 0); return; } function __ZNSt3__26locale5__imp7installINS_5ctypeIcEEEEvPT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__26locale5__imp7installEPNS0_5facetEl(i1, i2, __ZNSt3__26locale2id5__getEv(47476) | 0); return; } function __ZN4wasm8Function12getNumLocalsEv(i1) { i1 = i1 | 0; return ((HEAP32[i1 + 24 >> 2] | 0) - (HEAP32[i1 + 20 >> 2] | 0) >> 2) + ((HEAP32[i1 + 12 >> 2] | 0) - (HEAP32[i1 + 8 >> 2] | 0) >> 2) | 0; } function __ZZ11instantiateEN19JSExternalInterface10growMemoryEN4wasm7AddressES1_(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; _emscripten_asm_const_ii(31, HEAP32[i3 >> 2] | 0) | 0; return; } function __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); __ZdlPv(i1); return; } function __ZN4wasm17WasmBinaryBuilder11getWasmTypeEv(i1) { i1 = i1 | 0; i1 = __ZN4wasm17WasmBinaryBuilder7getInt8Ev(i1) | 0; if ((i1 & 255) < 5) return i1 << 24 >> 24 | 0; else _abort(); return 0; } function __ZNKSt3__210moneypunctIwLb1EE13do_pos_formatEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP8[i1 >> 0] = 2; HEAP8[i1 + 1 >> 0] = 3; HEAP8[i1 + 2 >> 0] = 0; HEAP8[i1 + 3 >> 0] = 4; return; } function __ZNKSt3__210moneypunctIwLb1EE13do_neg_formatEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP8[i1 >> 0] = 2; HEAP8[i1 + 1 >> 0] = 3; HEAP8[i1 + 2 >> 0] = 0; HEAP8[i1 + 3 >> 0] = 4; return; } function __ZNKSt3__210moneypunctIwLb0EE13do_pos_formatEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP8[i1 >> 0] = 2; HEAP8[i1 + 1 >> 0] = 3; HEAP8[i1 + 2 >> 0] = 0; HEAP8[i1 + 3 >> 0] = 4; return; } function __ZNKSt3__210moneypunctIwLb0EE13do_neg_formatEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP8[i1 >> 0] = 2; HEAP8[i1 + 1 >> 0] = 3; HEAP8[i1 + 2 >> 0] = 0; HEAP8[i1 + 3 >> 0] = 4; return; } function __ZNKSt3__210moneypunctIcLb1EE13do_pos_formatEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP8[i1 >> 0] = 2; HEAP8[i1 + 1 >> 0] = 3; HEAP8[i1 + 2 >> 0] = 0; HEAP8[i1 + 3 >> 0] = 4; return; } function __ZNKSt3__210moneypunctIcLb1EE13do_neg_formatEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP8[i1 >> 0] = 2; HEAP8[i1 + 1 >> 0] = 3; HEAP8[i1 + 2 >> 0] = 0; HEAP8[i1 + 3 >> 0] = 4; return; } function __ZNKSt3__210moneypunctIcLb0EE13do_pos_formatEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP8[i1 >> 0] = 2; HEAP8[i1 + 1 >> 0] = 3; HEAP8[i1 + 2 >> 0] = 0; HEAP8[i1 + 3 >> 0] = 4; return; } function __ZNKSt3__210moneypunctIcLb0EE13do_neg_formatEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP8[i1 >> 0] = 2; HEAP8[i1 + 1 >> 0] = 3; HEAP8[i1 + 2 >> 0] = 0; HEAP8[i1 + 3 >> 0] = 4; return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEEN10__cxxabiv112_GLOBAL__N_112malloc_allocIcEEED2Ev(i1) { i1 = i1 | 0; if ((HEAP8[i1 + 11 >> 0] | 0) < 0) _free(HEAP32[i1 >> 2] | 0); return; } function __ZNKSt3__27codecvtIDsc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; HEAP32[i5 >> 2] = i3; return 3; } function __ZNKSt3__27codecvtIDic11__mbstate_tE10do_unshiftERS1_PcS4_RS4_(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; HEAP32[i5 >> 2] = i3; return 3; } function __ZN6cashew5Value9setStringERKNS_7IStringE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZN6cashew5Value4freeEv(i1); HEAP32[i1 >> 2] = 0; HEAP32[i1 + 8 >> 2] = HEAP32[i2 >> 2]; return i1 | 0; } function __ZNKSt3__27codecvtIcc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; HEAP32[i5 >> 2] = i3; return 3; } function __ZN4wasm6Memory7SegmentC2ERKS1_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 >> 2] = HEAP32[i2 >> 2]; __ZNSt3__26vectorIcNS_9allocatorIcEEEC2ERKS3_(i1 + 4 | 0, i2 + 4 | 0); return; } function __ZNK4wasm7Literal14reinterpretf64Ev(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 2) return +(+HEAPF64[i1 + 8 >> 3]); else ___assert_fail(18153, 14782, 238, 21249); return +(0.0); } function __ZNK4wasm7Literal14reinterpretf32Ev(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) return +(+HEAPF32[i1 + 8 >> 2]); else ___assert_fail(18121, 14782, 237, 21210); return +(0.0); } function __ZNSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE18destroy_deallocateEv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv(i1) { i1 = i1 | 0; return 448; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv(i1) { i1 = i1 | 0; return 424; } function __ZN4wasm16PrintSExpression15printableGlobalEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i2 = __ZN4wasm6Module9getGlobalEj(HEAP32[i1 + 24 >> 2] | 0, i2) | 0; return HEAP32[i2 >> 2] | 0; } function __ZN4wasm12PassRegistryC2Ev(i1) { i1 = i1 | 0; HEAP32[i1 + 4 >> 2] = 0; HEAP32[i1 + 8 >> 2] = 0; HEAP32[i1 >> 2] = i1 + 4; __ZN4wasm12PassRegistry14registerPassesEv(i1); return; } function __ZN10MixedArena5allocIN4wasm11UnreachableEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 8) | 0; HEAP32[i1 >> 2] = 22; HEAP32[i1 + 4 >> 2] = 5; return i1 | 0; } function ___strdup(i2) { i2 = i2 | 0; var i1 = 0, i3 = 0; i3 = (_strlen(i2) | 0) + 1 | 0; i1 = _malloc(i3) | 0; if (!i1) i1 = 0; else _memcpy(i1 | 0, i2 | 0, i3 | 0) | 0; return i1 | 0; } function __ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE11target_typeEv(i1) { i1 = i1 | 0; return 392; } function __ZN6cashew11isIdentInitEc(i1) { i1 = i1 | 0; if ((i1 + -97 & 255) < 26) return 1; else return i1 << 24 >> 24 == 36 | (i1 << 24 >> 24 == 95 | (i1 + -65 & 255) < 26) | 0; return 0; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZN4wasm15MinifiedPrinterD0Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 2456; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 4 | 0); __ZdlPv(i1); return; } function __ZN10MixedArena5allocIN4wasm9SetGlobalEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 16) | 0; HEAP32[i1 >> 2] = 12; HEAP32[i1 + 4 >> 2] = 0; return i1 | 0; } function __ZN10MixedArena5allocIN4wasm9GetGlobalEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 12) | 0; HEAP32[i1 >> 2] = 11; HEAP32[i1 + 4 >> 2] = 0; return i1 | 0; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZN10MixedArena5allocIN4wasm8SetLocalEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 16) | 0; HEAP32[i1 >> 2] = 10; HEAP32[i1 + 4 >> 2] = 0; return i1 | 0; } function dynCall_iiiii(i5, i1, i2, i3, i4) { i5 = i5 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; return FUNCTION_TABLE_iiiii[i5 & 7](i1 | 0, i2 | 0, i3 | 0, i4 | 0) | 0; } function __ZNK4wasm7Literal14reinterpreti32Ev(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 3) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(24430, 14782, 235, 24452); return 0; } function __ZN10MixedArena5allocIN4wasm8GetLocalEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 12) | 0; HEAP32[i1 >> 2] = 9; HEAP32[i1 + 4 >> 2] = 0; return i1 | 0; } function _i64Add(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i3 = i1 + i3 >>> 0; return (tempRet0 = i2 + i4 + (i3 >>> 0 < i1 >>> 0 | 0) >>> 0, i3 | 0) | 0; } function __ZTv0_n12_NSt3__214basic_iostreamIcNS_11char_traitsIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 12 | 0); return; } function __ZNSt3__25ctypeIcED2Ev(i1) { i1 = i1 | 0; var i2 = 0; HEAP32[i1 >> 2] = 10324; i2 = HEAP32[i1 + 8 >> 2] | 0; if (i2 | 0 ? HEAP8[i1 + 12 >> 0] | 0 : 0) __ZdaPv(i2); return; } function __ZNSt3__221__thread_specific_ptrINS_15__thread_structEE16__at_thread_exitEPv(i1) { i1 = i1 | 0; if (i1 | 0) { __ZNSt3__215__thread_structD2Ev(i1); __ZdlPv(i1); } return; } function __ZN10MixedArena5allocIN4wasm6SelectEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 20) | 0; HEAP32[i1 >> 2] = 18; HEAP32[i1 + 4 >> 2] = 0; return i1 | 0; } function __ZN10MixedArena5allocIN4wasm6BinaryEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 20) | 0; HEAP32[i1 >> 2] = 17; HEAP32[i1 + 4 >> 2] = 0; return i1 | 0; } function __ZNKSt3__28numpunctIwE11do_groupingEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i1, i2 + 16 | 0); return; } function __ZNKSt3__28numpunctIcE11do_groupingEv(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_(i1, i2 + 12 | 0); return; } function __ZN4wasm11FullPrinterD0Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 2456; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 4 | 0); __ZdlPv(i1); return; } function __ZN4wasm10Expression4castINS_12CallIndirectEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 8) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_11UnreachableEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 22) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN10MixedArena5allocIN4wasm5UnaryEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 16) | 0; HEAP32[i1 >> 2] = 16; HEAP32[i1 + 4 >> 2] = 0; return i1 | 0; } function __ZTv0_n12_NSt3__213basic_ostreamIwNS_11char_traitsIwEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0); return; } function __ZTv0_n12_NSt3__213basic_ostreamIcNS_11char_traitsIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 4 | 0); return; } function __ZTv0_n12_NSt3__213basic_istreamIwNS_11char_traitsIwEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 8 | 0); return; } function __ZTv0_n12_NSt3__213basic_istreamIcNS_11char_traitsIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + (HEAP32[(HEAP32[i1 >> 2] | 0) + -12 >> 2] | 0) + 8 | 0); return; } function __ZNK4wasm7Literal6getf64Ev(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 4) return +(+HEAPF64[i1 + 8 >> 3]); else ___assert_fail(24558, 14782, 231, 26350); return +(0.0); } function __ZNK4wasm7Literal6getf32Ev(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 3) return +(+HEAPF32[i1 + 8 >> 2]); else ___assert_fail(24430, 14782, 230, 26343); return +(0.0); } function __ZNSt3__210__time_putD2Ev(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[i1 >> 2] | 0; if ((i2 | 0) != (__ZNSt3__26__clocEv() | 0)) _freelocale(HEAP32[i1 >> 2] | 0); return; } function __ZN4wasm10Expression4castINS_10CallImportEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 7) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_9SetGlobalEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 12) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_9GetGlobalEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 11) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN10MixedArena5allocIN4wasm3NopEEEPT_v(i1) { i1 = i1 | 0; i1 = __ZN10MixedArena10allocSpaceEj(i1, 8) | 0; HEAP32[i1 >> 2] = 21; HEAP32[i1 + 4 >> 2] = 0; return i1 | 0; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7destroyEv(i1) { i1 = i1 | 0; return; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7destroyEv(i1) { i1 = i1 | 0; return; } function __ZN6cashew12ValueBuilder13makeRawStringERKNS_7IStringE(i1) { i1 = i1 | 0; return __ZN6cashew5Value9setStringERKNS_7IStringE(__ZN6cashew5Arena5allocEv(45436) | 0, i1) | 0; } function __ZN4wasm10Expression4castINS_8SetLocalEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 10) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function b12(i1, i2, i3, i4, i5, i6, i7, i8) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; i8 = i8 | 0; abort(12); return 0; } function __ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7destroyEv(i1) { i1 = i1 | 0; return; } function __ZN4wasm7PrinterD0Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 2456; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 4 | 0); __ZdlPv(i1); return; } function __ZN4wasm10Expression4castINS_8GetLocalEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 9) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZNSt3__26localeC2ERKS0_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i2 = HEAP32[i2 >> 2] | 0; HEAP32[i1 >> 2] = i2; __ZNSt3__214__shared_count12__add_sharedEv(i2); return; } function __ZN6cashew5Value8getArrayEv(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 2) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(34036, 34046, 220, 28525); return 0; } function __ZN4wasm10Expression4castINS_6SelectEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 18) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_6ReturnEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 19) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_6BinaryEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 17) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZNK4wasm7Literal6geti32Ev(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(18121, 14782, 228, 26336); return 0; } function __ZNK10__cxxabiv123__fundamental_type_info9can_catchEPKNS_16__shim_type_infoERPv(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return (i1 | 0) == (i2 | 0) | 0; } function __ZN6cashew5Value10getCStringEv(i1) { i1 = i1 | 0; if (!(HEAP32[i1 >> 2] | 0)) return HEAP32[i1 + 8 >> 2] | 0; else ___assert_fail(13925, 34046, 208, 14457); return 0; } function __ZN4wasm10Expression4castINS_6SwitchEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 5) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_5UnaryEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 16) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_5StoreEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 14) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_5ConstEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 15) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function dynCall_viiii(i5, i1, i2, i3, i4) { i5 = i5 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; FUNCTION_TABLE_viiii[i5 & 15](i1 | 0, i2 | 0, i3 | 0, i4 | 0); } function __ZNSt3__23setIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__26__treeIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev(i1); return; } function __ZN4wasm4PassD0Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 2456; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 4 | 0); __ZdlPv(i1); return; } function __ZN4wasm10Expression4castINS_5BreakEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 4) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_5BlockEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_4LoadEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 13) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_4HostEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 20) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function _uselocale(i1) { i1 = i1 | 0; var i2 = 0, i3 = 0; i2 = (_pthread_self() | 0) + 184 | 0; i3 = HEAP32[i2 >> 2] | 0; if (i1 | 0) HEAP32[i2 >> 2] = i1; return i3 | 0; } function __ZN4wasm10Expression4castINS_4LoopEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 3) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_4CallEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 6) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZN4wasm10Expression4castINS_3NopEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 21) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function ___syscall_ret(i1) { i1 = i1 | 0; var i2 = 0; if (i1 >>> 0 > 4294963200) { i2 = ___errno_location() | 0; HEAP32[i2 >> 2] = 0 - i1; i1 = -1; } return i1 | 0; } function __ZNSt3__218condition_variable4waitERNS_11unique_lockINS_5mutexEEE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; _pthread_cond_wait(i1 | 0, HEAP32[i2 >> 2] | 0) | 0; return; } function __ZNSt3__211char_traitsIcE7compareEPKcS3_j(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (!i3) i1 = 0; else i1 = _memcmp(i1, i2, i3) | 0; return i1 | 0; } function __ZNKSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE11target_typeEv(i1) { i1 = i1 | 0; return 520; } function __ZN4wasm5FatallsIPKcEERS0_T_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, i2) | 0; return i1 | 0; } function ___errno_location() { var i1 = 0; if (!(HEAP32[11467] | 0)) i1 = 45912; else { i1 = (_pthread_self() | 0) + 64 | 0; i1 = HEAP32[i1 >> 2] | 0; } return i1 | 0; } function __ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev(i1) { i1 = i1 | 0; if ((HEAP8[i1 + 8 + 3 >> 0] | 0) < 0) __ZdlPv(HEAP32[i1 >> 2] | 0); return; } function __ZN6cashew12ValueBuilder8makeNullEv() { var i1 = 0; i1 = __ZN6cashew5Arena5allocEv(45436) | 0; __ZN6cashew5Value4freeEv(i1); HEAP32[i1 >> 2] = 3; return i1 | 0; } function __ZN4wasm10Expression4castINS_2IfEEEPT_v(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 2) return i1 | 0; else ___assert_fail(15154, 14782, 906, 15185); return 0; } function __ZNSt3__28numpunctIwED2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 10416; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 16 | 0); return; } function __ZNSt3__28numpunctIcED2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 10376; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 12 | 0); return; } function __ZNSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__215__thread_structD2Ev(i1) { i1 = i1 | 0; i1 = HEAP32[i1 >> 2] | 0; if (i1 | 0) { __ZNSt3__219__thread_struct_impD2Ev(i1); __ZdlPv(i1); } return; } function __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1) { i1 = i1 | 0; if ((HEAP8[i1 + 11 >> 0] | 0) < 0) __ZdlPv(HEAP32[i1 >> 2] | 0); return; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE18destroy_deallocateEv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE18destroy_deallocateEv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE18destroy_deallocateEv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZN4wasm7Element5c_strEv(i1) { i1 = i1 | 0; if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 20 >> 2] | 0; else ___assert_fail(17335, 17152, 97, 17348); return 0; } function __ZN4wasm7Element3strEv(i1) { i1 = i1 | 0; if (!(HEAP8[i1 >> 0] | 0)) return HEAP32[i1 + 20 >> 2] | 0; else ___assert_fail(17335, 17152, 92, 17344); return 0; } function __ZSt11__terminatePFvvE(i1) { i1 = i1 | 0; var i2 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + 16 | 0; FUNCTION_TABLE_v[i1 & 3](); _abort_message(42084, i2); } function __ZN6cashew5Value9getNumberEv(i1) { i1 = i1 | 0; if ((HEAP32[i1 >> 2] | 0) == 1) return i1 + 8 | 0; else ___assert_fail(14110, 34046, 216, 14121); return 0; } function __ZNSt3__28time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__210__time_putD2Ev(i1 + 8 | 0); __ZdlPv(i1); return; } function __ZNSt3__28time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__210__time_putD2Ev(i1 + 8 | 0); __ZdlPv(i1); return; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEED0Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 7488; __ZNSt3__26localeD2Ev(i1 + 4 | 0); __ZdlPv(i1); return; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEED0Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 7424; __ZNSt3__26localeD2Ev(i1 + 4 | 0); __ZdlPv(i1); return; } function __ZN4wasm8PopCountIyEEiT_(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = __ZN4wasm8PopCountIjEEiT_(i1) | 0; return (__ZN4wasm8PopCountIjEEiT_(i2) | 0) + i1 | 0; } function __ZNSt3__219__thread_local_dataEv() { if ((HEAP8[44960] | 0) == 0 ? ___cxa_guard_acquire(44960) | 0 : 0) _pthread_key_create(49392, 180) | 0; return 49392; } function __ZNSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE7destroyEv(i1) { i1 = i1 | 0; return; } function __ZN6cashew5Value10getIStringEv(i1) { i1 = i1 | 0; if (!(HEAP32[i1 >> 2] | 0)) return i1 + 8 | 0; else ___assert_fail(13925, 34046, 212, 13936); return 0; } function __ZThn8_NSt3__214basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__214basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1 + -8 | 0); return; } function __ZN4wasm4PassD2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 2456; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1 + 4 | 0); return; } function __ZNSt3__26locale5facet16__on_zero_sharedEv(i1) { i1 = i1 | 0; if (i1 | 0) FUNCTION_TABLE_vi[HEAP32[(HEAP32[i1 >> 2] | 0) + 4 >> 2] & 255](i1); return; } function dynCall_iiii(i4, i1, i2, i3) { i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return FUNCTION_TABLE_iiii[i4 & 31](i1 | 0, i2 | 0, i3 | 0) | 0; } function b0(i1, i2, i3, i4, i5, i6, i7) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; i7 = i7 | 0; abort(0); return 0; } function __ZNSt3__26locale2id6__initEv(i1) { i1 = i1 | 0; var i2 = 0; i2 = HEAP32[11872] | 0; HEAP32[11872] = i2 + 1; HEAP32[i1 + 4 >> 2] = i2 + 1; return; } function __ZNSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_EclEv(i1) { i1 = i1 | 0; return FUNCTION_TABLE_i[HEAP32[i1 + 4 >> 2] & 31]() | 0; } function __ZNSt3__211char_traitsIwE4moveEPwPKwj(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (i3) i1 = _wmemmove(i1, i2, i3) | 0; return i1 | 0; } function __ZN4wasm18isInRangeI64TruncUEi(i1) { i1 = i1 | 0; if (i1 >>> 0 < 1602224128) i1 = 1; else i1 = (i1 | 0) < 0 & i1 >>> 0 < 3212836864; return i1 | 0; } function __ZN4wasm18isInRangeI64TruncSEi(i1) { i1 = i1 | 0; if (i1 >>> 0 < 1593835520) i1 = 1; else i1 = (i1 | 0) < 0 & i1 >>> 0 < 3741319169; return i1 | 0; } function __ZN4wasm18isInRangeI32TruncUEi(i1) { i1 = i1 | 0; if (i1 >>> 0 < 1333788672) i1 = 1; else i1 = (i1 | 0) < 0 & i1 >>> 0 < 3212836864; return i1 | 0; } function __ZN4wasm18isInRangeI32TruncSEi(i1) { i1 = i1 | 0; if (i1 >>> 0 < 1325400064) i1 = 1; else i1 = (i1 | 0) < 0 & i1 >>> 0 < 3472883713; return i1 | 0; } function __ZN4wasm10ThreadPool9isRunningEv() { var i1 = 0; i1 = HEAP32[11381] | 0; if (!i1) i1 = 0; else i1 = (HEAP8[i1 + 12 >> 0] | 0) != 0; return i1 | 0; } function __GLOBAL__sub_I_wasm_js_cpp() { HEAP32[11242] = 0; HEAP32[11243] = 0; HEAP32[11244] = 0; ___cxa_atexit(157, 44968, ___dso_handle | 0) | 0; return; } function __ZNSt3__211char_traitsIwE6assignEPwjw(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (i2) i1 = _wmemset(i1, i3, i2) | 0; return i1 | 0; } function __ZNSt3__211char_traitsIwE4copyEPwPKwj(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; if (i3) i1 = _wmemcpy(i1, i2, i3) | 0; return i1 | 0; } function _strchr(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i1 = ___strchrnul(i1, i2) | 0; return ((HEAP8[i1 >> 0] | 0) == (i2 & 255) << 24 >> 24 ? i1 : 0) | 0; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE11target_typeEv(i1) { i1 = i1 | 0; return 144; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE11target_typeEv(i1) { i1 = i1 | 0; return 120; } function __ZN6cashew11isIdentPartEc(i1) { i1 = i1 | 0; if (__ZN6cashew11isIdentInitEc(i1) | 0) return 1; else return (i1 + -48 & 255) < 10 | 0; return 0; } function __ZN4wasm10ThreadPool4sizeEv(i1) { i1 = i1 | 0; i1 = (HEAP32[i1 + 4 >> 2] | 0) - (HEAP32[i1 >> 2] | 0) >> 2; return (i1 >>> 0 > 1 ? i1 : 1) | 0; } function __ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE11target_typeEv(i1) { i1 = i1 | 0; return 88; } function __ZN4wasm25createMinifiedPrinterPassEv() { var i1 = 0; i1 = __Znwj(20) | 0; __ZN4wasm7PrinterC2Ev(i1); HEAP32[i1 >> 2] = 3100; return i1 | 0; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZN6cashew12ValueBuilder12makeRawArrayEi(i1) { i1 = i1 | 0; return __ZN6cashew5Value8setArrayEj(__ZN6cashew5Arena5allocEv(45436) | 0, i1) | 0; } function __ZN4wasm4Pass11runFunctionEPNS_10PassRunnerEPNS_6ModuleEPNS_8FunctionE(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; } function _wcslen(i2) { i2 = i2 | 0; var i1 = 0; i1 = i2; while (1) if (!(HEAP32[i1 >> 2] | 0)) break; else i1 = i1 + 4 | 0; return i1 - i2 >> 2 | 0; } function __ZNSt3__28time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__210__time_putD2Ev(i1 + 8 | 0); return; } function __ZNSt3__28time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__210__time_putD2Ev(i1 + 8 | 0); return; } function __ZNSt3__28ios_base33__set_badbit_and_consider_rethrowEv(i1) { i1 = i1 | 0; i1 = i1 + 16 | 0; HEAP32[i1 >> 2] = HEAP32[i1 >> 2] | 1; return; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEED2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 7488; __ZNSt3__26localeD2Ev(i1 + 4 | 0); return; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEED2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 7424; __ZNSt3__26localeD2Ev(i1 + 4 | 0); return; } function __ZNK10__cxxabiv120__function_type_info9can_catchEPKNS_16__shim_type_infoERPv(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return 0; } function __ZNSt3__25mutex6unlockEv(i1) { i1 = i1 | 0; if (!(_pthread_mutex_unlock(i1 | 0) | 0)) return; else ___assert_fail(41139, 41147, 48, 41249); } function __ZN4wasm21createFullPrinterPassEv() { var i1 = 0; i1 = __Znwj(20) | 0; __ZN4wasm7PrinterC2Ev(i1); HEAP32[i1 >> 2] = 3140; return i1 | 0; } function dynCall_viii(i4, i1, i2, i3) { i4 = i4 | 0; i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; FUNCTION_TABLE_viii[i4 & 7](i1 | 0, i2 | 0, i3 | 0); } function __ZZ11instantiateEN19JSExternalInterface4trapEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; _emscripten_asm_const_ii(32, i2 | 0) | 0; return; } function stackAlloc(i1) { i1 = i1 | 0; var i2 = 0; i2 = STACKTOP; STACKTOP = STACKTOP + i1 | 0; STACKTOP = STACKTOP + 15 & -16; return i2 | 0; } function ___cxa_guard_acquire(i1) { i1 = i1 | 0; if ((HEAP8[i1 >> 0] | 0) == 1) i1 = 0; else { HEAP8[i1 >> 0] = 1; i1 = 1; } return i1 | 0; } function __ZN6cashew3RefntEv(i1) { i1 = i1 | 0; i1 = HEAP32[i1 >> 2] | 0; if (!i1) i1 = 1; else i1 = (HEAP32[i1 >> 2] | 0) == 3; return i1 | 0; } function ___cxa_is_pointer_type(i1) { i1 = i1 | 0; if (!i1) i1 = 0; else i1 = (___dynamic_cast(i1, 1984, 2056, 0) | 0) != 0; return i1 & 1 | 0; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE7destroyEv(i1) { i1 = i1 | 0; return; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7destroyEv(i1) { i1 = i1 | 0; return; } function __ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7destroyEv(i1) { i1 = i1 | 0; return; } function __ZN4wasm5FatalD2Ev(i1) { i1 = i1 | 0; __ZNSt3__2lsINS_11char_traitsIcEEEERNS_13basic_ostreamIcT_EES6_PKc(46772, 31522) | 0; _exit(1); } function __ZNSt3__28ios_base5clearEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; HEAP32[i1 + 16 >> 2] = (HEAP32[i1 + 24 >> 2] | 0) == 0 | i2; return; } function __ZNSt3__214basic_iostreamIcNS_11char_traitsIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 12 | 0); __ZdlPv(i1); return; } function __ZNSt3__214__shared_count12__add_sharedEv(i1) { i1 = i1 | 0; i1 = i1 + 4 | 0; HEAP32[i1 >> 2] = (HEAP32[i1 >> 2] | 0) + 1; return; } function __ZNSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E18destroy_deallocateEv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNKSt3__25ctypeIwE9do_narrowEwc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return (i2 >>> 0 < 128 ? i2 & 255 : i3) | 0; } function b8(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; abort(8); return 0; } function _strtoull_l(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i4 = _strtoull(i1, i2, i3) | 0; return i4 | 0; } function __ZNSt3__211__stdoutbufIwED0Ev(i1) { i1 = i1 | 0; __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEED2Ev(i1); __ZdlPv(i1); return; } function __ZNSt3__211__stdoutbufIcED0Ev(i1) { i1 = i1 | 0; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEED2Ev(i1); __ZdlPv(i1); return; } function __ZNKSt3__25ctypeIcE9do_narrowEcc(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return (i2 << 24 >> 24 > -1 ? i2 : i3) | 0; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE6setbufEPwi(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return i1 | 0; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE6setbufEPci(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return i1 | 0; } function __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 4 | 0); __ZdlPv(i1); return; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 4 | 0); __ZdlPv(i1); return; } function __ZNSt3__213basic_istreamIwNS_11char_traitsIwEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 8 | 0); __ZdlPv(i1); return; } function __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEED0Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 8 | 0); __ZdlPv(i1); return; } function __ZNSt3__210__stdinbufIwED0Ev(i1) { i1 = i1 | 0; __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEED2Ev(i1); __ZdlPv(i1); return; } function __ZNSt3__210__stdinbufIcED0Ev(i1) { i1 = i1 | 0; __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEED2Ev(i1); __ZdlPv(i1); return; } function __ZN4wasm14ParseExceptionD2Ev(i1) { i1 = i1 | 0; __ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev(i1); return; } function _strtoll_l(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i4 = _strtoll(i1, i2, i3) | 0; return i4 | 0; } function __ZN4wasm12isSInteger32Ed(d1) { d1 = +d1; return d1 <= 2147483647.0 & (d1 >= -2147483648.0 & (__ZN4wasm9isIntegerEd(d1) | 0)) | 0; } function b4(i1, i2, i3, i4, i5, d6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; d6 = +d6; abort(4); return 0; } function __ZThn8_NSt3__214basic_iostreamIcNS_11char_traitsIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + -8 + 12 | 0); return; } function __ZN4wasm7PrinterC2Ev(i1) { i1 = i1 | 0; __ZN4wasm4PassC2Ev(i1); HEAP32[i1 >> 2] = 3060; HEAP32[i1 + 16 >> 2] = 46604; return; } function __ZN4wasm38createDuplicateFunctionEliminationPassEv__wrapper() { return __ZN4wasm38createDuplicateFunctionEliminationPassEv() | 0; } function ___udivdi3(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; return ___udivmoddi4(i1, i2, i3, i4, 0) | 0; } function _strpbrk(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; i2 = i1 + (_strcspn(i1, i2) | 0) | 0; return (HEAP8[i2 >> 0] | 0 ? i2 : 0) | 0; } function __ZNSt3__27codecvtIwc11__mbstate_tED0Ev(i1) { i1 = i1 | 0; __ZNSt3__27codecvtIwc11__mbstate_tED2Ev(i1); __ZdlPv(i1); return; } function __ZNKSt3__221__basic_string_commonILb1EE20__throw_out_of_rangeEv(i1) { i1 = i1 | 0; ___assert_fail(41409, 41285, 1194, 41438); } function __ZNKSt3__221__basic_string_commonILb1EE20__throw_length_errorEv(i1) { i1 = i1 | 0; ___assert_fail(41256, 41285, 1183, 41388); } function _strtoll(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i3 = _strtox(i1, i2, i3, 0, -2147483648) | 0; return i3 | 0; } function __ZN6Colors15outputColorCodeERNSt3__213basic_ostreamIcNS0_11char_traitsIcEEEEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return; } function __ZN4wasm36createCoalesceLocalsWithLearningPassEv__wrapper() { return __ZN4wasm36createCoalesceLocalsWithLearningPassEv() | 0; } function _strtol(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i3 = _strtox(i1, i2, i3, -2147483648, 0) | 0; return i3 | 0; } function __ZNKSt3__220__vector_base_commonILb1EE20__throw_out_of_rangeEv(i1) { i1 = i1 | 0; ___assert_fail(41073, 40970, 315, 41438); } function __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv(i1) { i1 = i1 | 0; ___assert_fail(40947, 40970, 304, 41388); } function __GLOBAL__sub_I_pass_cpp() { __ZN4wasm12PassRegistryC2Ev(45024); ___cxa_atexit(158, 45024, ___dso_handle | 0) | 0; return; } function dynCall_iii(i3, i1, i2) { i3 = i3 | 0; i1 = i1 | 0; i2 = i2 | 0; return FUNCTION_TABLE_iii[i3 & 31](i1 | 0, i2 | 0) | 0; } function __ZNSt3__26localeD2Ev(i1) { i1 = i1 | 0; __ZNSt3__214__shared_count16__release_sharedEv(HEAP32[i1 >> 2] | 0) | 0; return; } function b2(i1, i2, i3, i4, i5, i6) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; i6 = i6 | 0; abort(2); } function __ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCalls18isFunctionParallelEv(i1) { i1 = i1 | 0; return 1; } function __ZNSt3__26locale5__imp12make_classicEv() { __ZNSt3__26locale5__impC2Ej(44792, 1); HEAP32[12325] = 44792; return 49300; } function __ZNSt3__214basic_iostreamIcNS_11char_traitsIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 12 | 0); return; } function _strtoull(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i3 = _strtox(i1, i2, i3, -1, -1) | 0; return i3 | 0; } function __ZNSt3__26thread4joinEv(i1) { i1 = i1 | 0; _pthread_join(HEAP32[i1 >> 2] | 0, 0) | 0; HEAP32[i1 >> 2] = 0; return; } function __ZNSt3__26thread20hardware_concurrencyEv() { var i1 = 0; i1 = _sysconf(84) | 0; return ((i1 | 0) < 0 ? 0 : i1) | 0; } function __ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 4 | 0); return; } function __ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 4 | 0); return; } function __ZNSt3__213basic_istreamIwNS_11char_traitsIwEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 8 | 0); return; } function __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEED1Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1 + 8 | 0); return; } function __ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13do_date_orderEv(i1) { i1 = i1 | 0; return 2; } function __ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13do_date_orderEv(i1) { i1 = i1 | 0; return 2; } function __ZNKSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E11target_typeEv(i1) { i1 = i1 | 0; return 472; } function b17(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; abort(17); return 0; } function __ZNSt3__29money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__29money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZN4wasm4Pass8finalizeEPNS_10PassRunnerEPNS_6ModuleE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return; } function _mbrlen(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return _mbrtowc(0, i1, i2, i3 | 0 ? i3 : 45928) | 0; } function __ZNSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE5imbueERKNS_6localeE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE5imbueERKNS_6localeE(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return; } function __ZNSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_ED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZN6cashew3RefixEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return __ZN6cashew5ValueixEj(HEAP32[i1 >> 2] | 0, i2) | 0; } function __ZN4wasm4Pass7prepareEPNS_10PassRunnerEPNS_6ModuleE(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return; } function __ZN4wasm31createRemoveUnusedFunctionsPassEv__wrapper() { return __ZN4wasm31createRemoveUnusedFunctionsPassEv() | 0; } function __ZNSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __GLOBAL__I_000101() { __ZNSt3__28ios_base4InitC2Ev(0); ___cxa_atexit(167, 53493, ___dso_handle | 0) | 0; return; } function b16(i1, i2, i3, i4, d5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; d5 = +d5; abort(16); return 0; } function __ZNSt3__210__stdinbufIwE9underflowEv(i1) { i1 = i1 | 0; return __ZNSt3__210__stdinbufIwE9__getcharEb(i1, 0) | 0; } function __ZNSt3__210__stdinbufIcE9underflowEv(i1) { i1 = i1 | 0; return __ZNSt3__210__stdinbufIcE9__getcharEb(i1, 0) | 0; } function __ZN4wasm30createOptimizeInstructionsPassEv__wrapper() { return __ZN4wasm30createOptimizeInstructionsPassEv() | 0; } function dynCall_vii(i3, i1, i2) { i3 = i3 | 0; i1 = i1 | 0; i2 = i2 | 0; FUNCTION_TABLE_vii[i3 & 255](i1 | 0, i2 | 0); } function _wctomb(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!i1) i1 = 0; else i1 = _wcrtomb(i1, i2, 0) | 0; return i1 | 0; } function __ZN4wasm29createDeadCodeEliminationPassEv__wrapper() { return __ZN4wasm29createDeadCodeEliminationPassEv() | 0; } function __ZN4wasm17createPrinterPassEv() { var i1 = 0; i1 = __Znwj(20) | 0; __ZN4wasm7PrinterC2Ev(i1); return i1 | 0; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE9pbackfailEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return -1; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE9pbackfailEi(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return -1; } function __ZNSt3__218condition_variable10notify_allEv(i1) { i1 = i1 | 0; _pthread_cond_broadcast(i1 | 0) | 0; return; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE8overflowEj(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return -1; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE8overflowEi(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return -1; } function __ZNSt3__210__stdinbufIwE5uflowEv(i1) { i1 = i1 | 0; return __ZNSt3__210__stdinbufIwE9__getcharEb(i1, 1) | 0; } function __ZNSt3__210__stdinbufIcE5uflowEv(i1) { i1 = i1 | 0; return __ZNSt3__210__stdinbufIcE9__getcharEb(i1, 1) | 0; } function __GLOBAL__sub_I_threads_cpp() { HEAP32[11381] = 0; ___cxa_atexit(163, 45524, ___dso_handle | 0) | 0; return; } function _strncpy(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; ___stpncpy(i1, i2, i3) | 0; return i1 | 0; } function __ZNSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E7destroyEv(i1) { i1 = i1 | 0; return; } function __ZN4wasm27createRemoveUnusedNamesPassEv__wrapper() { return __ZN4wasm27createRemoveUnusedNamesPassEv() | 0; } function _isxdigit(i1) { i1 = i1 | 0; return ((i1 + -48 | 0) >>> 0 < 10 | ((i1 | 32) + -97 | 0) >>> 0 < 6) & 1 | 0; } function _do_read_421(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return ___string_read(i1, i2, i3) | 0; } function __ZNSt3__218condition_variable10notify_oneEv(i1) { i1 = i1 | 0; _pthread_cond_signal(i1 | 0) | 0; return; } function __ZN4wasm26createReorderFunctionsPassEv__wrapper() { return __ZN4wasm26createReorderFunctionsPassEv() | 0; } function __ZN4wasm26createDropReturnValuesPassEv__wrapper() { return __ZN4wasm26createDropReturnValuesPassEv() | 0; } function __ZSt15get_new_handlerv() { var i1 = 0; i1 = HEAP32[12351] | 0; HEAP32[12351] = i1 + 0; return i1 | 0; } function __ZNSt3__29basic_iosIcNS_11char_traitsIcEEED2Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1); return; } function setThrew(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; if (!__THREW__) { __THREW__ = i1; threwValue = i2; } } function b3(i1, i2, i3, i4, i5) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; i5 = i5 | 0; abort(3); } function __ZN4wasm25createRemoveUnusedBrsPassEv__wrapper() { return __ZN4wasm25createRemoveUnusedBrsPassEv() | 0; } function __Z17prepareMajorColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(i1) { i1 = i1 | 0; return i1 | 0; } function _mbsinit(i1) { i1 = i1 | 0; if (!i1) i1 = 1; else i1 = (HEAP32[i1 >> 2] | 0) == 0; return i1 & 1 | 0; } function __ZNSt3__29money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__29money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__26locale5__impD0Ev(i1) { i1 = i1 | 0; __ZNSt3__26locale5__impD2Ev(i1); __ZdlPv(i1); return; } function __ZNSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__26threadD2Ev(i1) { i1 = i1 | 0; if (!(HEAP32[i1 >> 2] | 0)) return; else __ZSt9terminatev(); } function __ZN4wasm24createSimplifyLocalsPassEv__wrapper() { return __ZN4wasm24createSimplifyLocalsPassEv() | 0; } function __ZN4wasm24createPostEmscriptenPassEv__wrapper() { return __ZN4wasm24createPostEmscriptenPassEv() | 0; } function __ZN4wasm24createCoalesceLocalsPassEv__wrapper() { return __ZN4wasm24createCoalesceLocalsPassEv() | 0; } function _nearbyintf(d1) { d1 = +d1; var i2 = 0; i2 = _fetestexcept(32) | 0; d1 = +_rintf(d1); return +d1; } function __ZSt13get_terminatev() { var i1 = 0; i1 = HEAP32[2681] | 0; HEAP32[2681] = i1 + 0; return i1 | 0; } function __ZNSt3__28numpunctIwED0Ev(i1) { i1 = i1 | 0; __ZNSt3__28numpunctIwED2Ev(i1); __ZdlPv(i1); return; } function __ZNSt3__28numpunctIcED0Ev(i1) { i1 = i1 | 0; __ZNSt3__28numpunctIcED2Ev(i1); __ZdlPv(i1); return; } function __ZNSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev(i1) { i1 = i1 | 0; return; } function _strtold_l(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; return +(+_strtox_17(i1, i2, 2)); } function __ZN4wasm23createReorderLocalsPassEv__wrapper() { return __ZN4wasm23createReorderLocalsPassEv() | 0; } function __ZN4wasm23createRemoveImportsPassEv__wrapper() { return __ZN4wasm23createRemoveImportsPassEv() | 0; } function b13(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; abort(13); return 0; } function _nearbyint(d1) { d1 = +d1; var i2 = 0; i2 = _fetestexcept(32) | 0; d1 = +_rint(d1); return +d1; } function __ZNSt3__214basic_iostreamIcNS_11char_traitsIcEEED2Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return; } function __ZNSt3__210__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev(i1) { i1 = i1 | 0; return; } function __Z12prepareColorRNSt3__213basic_ostreamIcNS_11char_traitsIcEEEE(i1) { i1 = i1 | 0; return i1 | 0; } function __ZNSt3__218condition_variableD2Ev(i1) { i1 = i1 | 0; _pthread_cond_destroy(i1 | 0) | 0; return; } function __ZNSt3__213basic_istreamIcNS_11char_traitsIcEEED2Ev(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return; } function __ZNSt3__210__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev(i1) { i1 = i1 | 0; return; } function __ZN4wasm22createRemoveMemoryPassEv__wrapper() { return __ZN4wasm22createRemoveMemoryPassEv() | 0; } function _catgets(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; return i4 | 0; } function __ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE4trapEPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; } function dynCall_ii(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; return FUNCTION_TABLE_ii[i2 & 127](i1 | 0) | 0; } function ___clang_call_terminate(i1) { i1 = i1 | 0; ___cxa_begin_catch(i1 | 0) | 0; __ZSt9terminatev(); } function __ZNKSt3__28numpunctIwE16do_thousands_sepEv(i1) { i1 = i1 | 0; return HEAP32[i1 + 12 >> 2] | 0; } function __ZNKSt3__25ctypeIwE8do_widenEc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return i2 << 24 >> 24 | 0; } function __ZN4wasm21createNameManagerPassEv__wrapper() { return __ZN4wasm21createNameManagerPassEv() | 0; } function __ZN4wasm21createMergeBlocksPassEv__wrapper() { return __ZN4wasm21createMergeBlocksPassEv() | 0; } function __ZN4wasm21createLowerIfElsePassEv__wrapper() { return __ZN4wasm21createLowerIfElsePassEv() | 0; } function __ZNSt3__28ios_baseD0Ev(i1) { i1 = i1 | 0; __ZNSt3__28ios_baseD2Ev(i1); __ZdlPv(i1); return; } function __ZNSt3__25ctypeIcED0Ev(i1) { i1 = i1 | 0; __ZNSt3__25ctypeIcED2Ev(i1); __ZdlPv(i1); return; } function __ZNKSt3__28numpunctIwE16do_decimal_pointEv(i1) { i1 = i1 | 0; return HEAP32[i1 + 8 >> 2] | 0; } function __ZNKSt3__28numpunctIcE16do_thousands_sepEv(i1) { i1 = i1 | 0; return HEAP8[i1 + 9 >> 0] | 0; } function __ZNKSt3__28numpunctIcE16do_decimal_pointEv(i1) { i1 = i1 | 0; return HEAP8[i1 + 8 >> 0] | 0; } function __ZN4wasm20createPrecomputePassEv__wrapper() { return __ZN4wasm20createPrecomputePassEv() | 0; } function _cleanup_435(i1) { i1 = i1 | 0; if (!(HEAP32[i1 + 68 >> 2] | 0)) ___unlockfile(i1); return; } function _cleanup_418(i1) { i1 = i1 | 0; if (!(HEAP32[i1 + 68 >> 2] | 0)) ___unlockfile(i1); return; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE9underflowEv(i1) { i1 = i1 | 0; return -1; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE9underflowEv(i1) { i1 = i1 | 0; return -1; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE9showmanycEv(i1) { i1 = i1 | 0; return 0; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE9showmanycEv(i1) { i1 = i1 | 0; return 0; } function __ZNSt3__210__function6__baseIFN4wasm15ThreadWorkStateEvEED2Ev(i1) { i1 = i1 | 0; return; } function __ZN4wasm18createNameListPassEv__wrapper() { return __ZN4wasm18createNameListPassEv() | 0; } function establishStackSpace(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; STACKTOP = i1; STACK_MAX = i2; } function __ZNKSt3__210moneypunctIwLb1EE16do_thousands_sepEv(i1) { i1 = i1 | 0; return 2147483647; } function __ZNKSt3__210moneypunctIwLb1EE16do_decimal_pointEv(i1) { i1 = i1 | 0; return 2147483647; } function __ZNKSt3__210moneypunctIwLb0EE16do_thousands_sepEv(i1) { i1 = i1 | 0; return 2147483647; } function __ZNKSt3__210moneypunctIwLb0EE16do_decimal_pointEv(i1) { i1 = i1 | 0; return 2147483647; } function b14(i1, i2, i3, i4) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; i4 = i4 | 0; abort(14); } function __ZN4wasm17createMetricsPassEv__wrapper() { return __ZN4wasm17createMetricsPassEv() | 0; } function _isspace(i1) { i1 = i1 | 0; return ((i1 | 0) == 32 | (i1 + -9 | 0) >>> 0 < 5) & 1 | 0; } function __ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE4syncEv(i1) { i1 = i1 | 0; return 0; } function __ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE4syncEv(i1) { i1 = i1 | 0; return 0; } function __ZNKSt3__27codecvtIDsc11__mbstate_tE16do_always_noconvEv(i1) { i1 = i1 | 0; return 0; } function __ZNKSt3__27codecvtIDic11__mbstate_tE16do_always_noconvEv(i1) { i1 = i1 | 0; return 0; } function __ZN10__cxxabiv123__fundamental_type_infoD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function _isdigit_l(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return (i1 + -48 | 0) >>> 0 < 10 | 0; } function __ZNKSt3__27codecvtIwc11__mbstate_tE16do_always_noconvEv(i1) { i1 = i1 | 0; return 0; } function __ZNKSt3__27codecvtIcc11__mbstate_tE16do_always_noconvEv(i1) { i1 = i1 | 0; return 1; } function __ZN4wasm16createVacuumPassEv__wrapper() { return __ZN4wasm16createVacuumPassEv() | 0; } function dynCall_vi(i2, i1) { i2 = i2 | 0; i1 = i1 | 0; FUNCTION_TABLE_vi[i2 & 255](i1 | 0); } function __ZNSt3__25mutexD2Ev(i1) { i1 = i1 | 0; _pthread_mutex_destroy(i1 | 0) | 0; return; } function __ZNSt3__25mutex4lockEv(i1) { i1 = i1 | 0; _pthread_mutex_lock(i1 | 0) | 0; return; } function __ZN10__cxxabiv121__vmi_class_type_infoD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNKSt3__27codecvtIDsc11__mbstate_tE13do_max_lengthEv(i1) { i1 = i1 | 0; return 4; } function __ZNKSt3__27codecvtIDic11__mbstate_tE13do_max_lengthEv(i1) { i1 = i1 | 0; return 4; } function __ZNKSt3__25ctypeIcE8do_widenEc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return i2 | 0; } function __ZN10__cxxabiv120__si_class_type_infoD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZN10__cxxabiv120__function_type_infoD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__220__throw_system_errorEiPKc(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return; } function __ZNKSt3__27codecvtIcc11__mbstate_tE13do_max_lengthEv(i1) { i1 = i1 | 0; return 1; } function __ZN10__cxxabiv119__pointer_type_infoD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__27codecvtIDsc11__mbstate_tED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__27codecvtIDic11__mbstate_tED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__217__widen_from_utf8ILj32EED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNKSt3__27codecvtIDsc11__mbstate_tE11do_encodingEv(i1) { i1 = i1 | 0; return 0; } function __ZNKSt3__27codecvtIDic11__mbstate_tE11do_encodingEv(i1) { i1 = i1 | 0; return 0; } function __ZNKSt3__210moneypunctIcLb1EE16do_thousands_sepEv(i1) { i1 = i1 | 0; return 127; } function __ZNKSt3__210moneypunctIcLb1EE16do_decimal_pointEv(i1) { i1 = i1 | 0; return 127; } function __ZNKSt3__210moneypunctIcLb0EE16do_thousands_sepEv(i1) { i1 = i1 | 0; return 127; } function __ZNKSt3__210moneypunctIcLb0EE16do_decimal_pointEv(i1) { i1 = i1 | 0; return 127; } function __ZNSt3__27codecvtIcc11__mbstate_tED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__216__narrow_to_utf8ILj32EED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNKSt3__27codecvtIcc11__mbstate_tE11do_encodingEv(i1) { i1 = i1 | 0; return 1; } function __ZN10__cxxabiv117__class_type_infoD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNKSt3__28messagesIwE8do_closeEi(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return; } function __ZNKSt3__28messagesIcE8do_closeEi(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return; } function b1(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; abort(1); return 0; } function _strtof(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return +(+_strtox_17(i1, i2, 0)); } function _strtod(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return +(+_strtox_17(i1, i2, 1)); } function __ZNSt3__210__function6__baseIFPN4wasm4PassEvEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNKSt3__210moneypunctIwLb1EE14do_frac_digitsEv(i1) { i1 = i1 | 0; return 0; } function __ZNKSt3__210moneypunctIwLb0EE14do_frac_digitsEv(i1) { i1 = i1 | 0; return 0; } function __ZNKSt3__210moneypunctIcLb1EE14do_frac_digitsEv(i1) { i1 = i1 | 0; return 0; } function __ZNKSt3__210moneypunctIcLb0EE14do_frac_digitsEv(i1) { i1 = i1 | 0; return 0; } function _isxdigit_l(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return _isxdigit(i1) | 0; } function __ZNSt3__217bad_function_callD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210moneypunctIwLb1EED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210moneypunctIwLb0EED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210moneypunctIcLb1EED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210moneypunctIcLb0EED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt9bad_allocC2Ev(i1) { i1 = i1 | 0; HEAP32[i1 >> 2] = 10820; return; } function __ZN4wasm9isIntegerEd(d1) { d1 = +d1; return +_fmod(d1, 1.0) == 0.0 | 0; } function _copysignl(d1, d2) { d1 = +d1; d2 = +d2; return +(+_copysign(d1, d2)); } function _scalbnl(d1, i2) { d1 = +d1; i2 = i2 | 0; return +(+_scalbn(d1, i2)); } function __ZNK10__cxxabiv116__shim_type_info5noop2Ev(i1) { i1 = i1 | 0; return; } function __ZNK10__cxxabiv116__shim_type_info5noop1Ev(i1) { i1 = i1 | 0; return; } function b10(i1, i2, i3) { i1 = i1 | 0; i2 = i2 | 0; i3 = i3 | 0; abort(10); } function dynCall_i(i1) { i1 = i1 | 0; return FUNCTION_TABLE_i[i1 & 31]() | 0; } function _frexpl(d1, i2) { d1 = +d1; i2 = i2 | 0; return +(+_frexp(d1, i2)); } function __ZNSt3__26locale5facetD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__28messagesIwED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__28messagesIcED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__27collateIwED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__27collateIcED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__210__function6__baseIFhvEED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__210__function6__baseIFavEED2Ev(i1) { i1 = i1 | 0; return; } function _isupper(i1) { i1 = i1 | 0; return (i1 + -65 | 0) >>> 0 < 26 | 0; } function __ZN4wasm4Pass18isFunctionParallelEv(i1) { i1 = i1 | 0; return 0; } function __ZN10__cxxabiv116__shim_type_infoD2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__25ctypeIwED0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function __ZNSt3__221__throw_runtime_errorEPKc(i1) { i1 = i1 | 0; return; } function _fmodl(d1, d2) { d1 = +d1; d2 = +d2; return +(+_fmod(d1, d2)); } function b15(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; abort(15); return 0; } function __ZNSt9bad_allocD0Ev(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function _catopen(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; return -1 | 0; } function __ZNSt3__210moneypunctIwLb1EED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__210moneypunctIwLb0EED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__210moneypunctIcLb1EED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__210moneypunctIcLb0EED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__214__shared_countD2Ev(i1) { i1 = i1 | 0; return; } function __ZNKSt9exception4whatEv(i1) { i1 = i1 | 0; return 42152; } function __ZNKSt9bad_alloc4whatEv(i1) { i1 = i1 | 0; return 42124; } function dynCall_v(i1) { i1 = i1 | 0; FUNCTION_TABLE_v[i1 & 3](); } function ___cxa_pure_virtual__wrapper() { ___cxa_pure_virtual(); } function __ZNSt3__26locale5facetD2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__212__do_nothingEPv(i1) { i1 = i1 | 0; return; } function __ZNSt3__28messagesIwED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__28messagesIcED2Ev(i1) { i1 = i1 | 0; return; } function _pthread_cond_broadcast(i1) { i1 = i1 | 0; return 0; } function __ZNSt3__27collateIwED2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt3__27collateIcED2Ev(i1) { i1 = i1 | 0; return; } function __ZN4wasm4Pass6createEv(i1) { i1 = i1 | 0; return 0; } function _pthread_mutex_unlock(i1) { i1 = i1 | 0; return 0; } function _freelocale(i1) { i1 = i1 | 0; _free(i1); return; } function b7(i1, i2) { i1 = i1 | 0; i2 = i2 | 0; abort(7); } function _pthread_mutex_lock(i1) { i1 = i1 | 0; return 0; } function __Znaj(i1) { i1 = i1 | 0; return __Znwj(i1) | 0; } function __ZdaPv(i1) { i1 = i1 | 0; __ZdlPv(i1); return; } function ___cxa_guard_release(i1) { i1 = i1 | 0; return; } function __ZNSt9type_infoD2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt9exceptionD2Ev(i1) { i1 = i1 | 0; return; } function __ZNSt9bad_allocD2Ev(i1) { i1 = i1 | 0; return; } function stackRestore(i1) { i1 = i1 | 0; STACKTOP = i1; } function __ZdlPv(i1) { i1 = i1 | 0; _free(i1); return; } function __ZN4wasm12PassRegistry3getEv() { return 45024; } function setTempRet0(i1) { i1 = i1 | 0; tempRet0 = i1; } function ___cxa_guard_abort(i1) { i1 = i1 | 0; return; } function _feclearexcept(i1) { i1 = i1 | 0; return 0; } function b9(i1) { i1 = i1 | 0; abort(9); return 0; } function _fetestexcept(i1) { i1 = i1 | 0; return 0; } function ___unlockfile(i1) { i1 = i1 | 0; return; } function ___lockfile(i1) { i1 = i1 | 0; return 0; } function __GLOBAL__sub_I_iostream_cpp() { return; } function _catclose(i1) { i1 = i1 | 0; return 0; } function _nan(i1) { i1 = i1 | 0; return +nan; } function ___ctype_toupper_loc() { return 3936; } function ___ctype_tolower_loc() { return 5476; } function __ZSt17__throw_bad_allocv() { return; } function getTempRet0() { return tempRet0 | 0; } function stackSave() { return STACKTOP | 0; } function b6(i1) { i1 = i1 | 0; abort(6); } function ___ctype_b_loc() { return 3932; } function b5() { abort(5); return 0; } function _pthread_self() { return 0; } function b11() { abort(11); } // EMSCRIPTEN_END_FUNCS var FUNCTION_TABLE_iiiiiiii = [b0,__ZNKSt3__28time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPK2tmcc,__ZNKSt3__28time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPK2tmcc,__ZNKSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe,__ZNKSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIcS3_NS_9allocatorIcEEEE,__ZNKSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe,__ZNKSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIwS3_NS_9allocatorIwEEEE,b0]; var FUNCTION_TABLE_iiii = [b1,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE6setbufEPci,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE6xsgetnEPci,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE6xsputnEPKci,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEEclEOS5_Oj,___stdio_write,___stdio_seek,___stdout_write,___stdio_read,_sn_write,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE6setbufEPwi,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE6xsgetnEPwi,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE6xsputnEPKwi,__ZNSt3__211__stdoutbufIwE6xsputnEPKwi,__ZNSt3__211__stdoutbufIcE6xsputnEPKci,__ZNKSt3__27collateIcE7do_hashEPKcS3_,__ZNKSt3__27collateIwE7do_hashEPKwS3_,__ZNKSt3__28messagesIcE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE,__ZNKSt3__28messagesIwE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE,__ZNKSt3__25ctypeIcE10do_toupperEPcPKc,__ZNKSt3__25ctypeIcE10do_tolowerEPcPKc,__ZNKSt3__25ctypeIcE9do_narrowEcc,__ZNKSt3__25ctypeIwE5do_isEtw,__ZNKSt3__25ctypeIwE10do_toupperEPwPKw,__ZNKSt3__25ctypeIwE10do_tolowerEPwPKw,__ZNKSt3__25ctypeIwE9do_narrowEwc,__ZNK10__cxxabiv117__class_type_info9can_catchEPKNS_16__shim_type_infoERPv,__ZNK10__cxxabiv123__fundamental_type_info9can_catchEPKNS_16__shim_type_infoERPv ,__ZNK10__cxxabiv119__pointer_type_info9can_catchEPKNS_16__shim_type_infoERPv,__ZNK10__cxxabiv120__function_type_info9can_catchEPKNS_16__shim_type_infoERPv,_do_read_421]; var FUNCTION_TABLE_viiiiii = [b2,__ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekoffExNS_8ios_base7seekdirEj,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE7seekoffExNS_8ios_base7seekdirEj,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE7seekoffExNS_8ios_base7seekdirEj,__ZNKSt3__28messagesIcE6do_getEiiiRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE,__ZNKSt3__28messagesIwE6do_getEiiiRKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEE,__ZNK10__cxxabiv117__class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib,__ZNK10__cxxabiv120__si_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib,__ZNK10__cxxabiv121__vmi_class_type_info16search_above_dstEPNS_19__dynamic_cast_infoEPKvS4_ib,b2,b2,b2,b2,b2,b2,b2]; var FUNCTION_TABLE_viiiii = [b3,__ZNK10__cxxabiv117__class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib,__ZNK10__cxxabiv120__si_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib,__ZNK10__cxxabiv121__vmi_class_type_info16search_below_dstEPNS_19__dynamic_cast_infoEPKvib]; var FUNCTION_TABLE_iiiiiid = [b4,__ZNKSt3__29money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEce,__ZNKSt3__29money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwe,b4]; var FUNCTION_TABLE_i = [b5,__ZN4wasm24createCoalesceLocalsPassEv__wrapper,__ZN4wasm36createCoalesceLocalsWithLearningPassEv__wrapper,__ZN4wasm29createDeadCodeEliminationPassEv__wrapper,__ZN4wasm26createDropReturnValuesPassEv__wrapper,__ZN4wasm38createDuplicateFunctionEliminationPassEv__wrapper,__ZN4wasm21createLowerIfElsePassEv__wrapper,__ZN4wasm21createMergeBlocksPassEv__wrapper,__ZN4wasm17createMetricsPassEv__wrapper,__ZN4wasm18createNameListPassEv__wrapper,__ZN4wasm21createNameManagerPassEv__wrapper,__ZN4wasm30createOptimizeInstructionsPassEv__wrapper,__ZN4wasm24createPostEmscriptenPassEv__wrapper,__ZN4wasm17createPrinterPassEv,__ZN4wasm25createMinifiedPrinterPassEv,__ZN4wasm21createFullPrinterPassEv,__ZN4wasm23createRemoveImportsPassEv__wrapper,__ZN4wasm22createRemoveMemoryPassEv__wrapper,__ZN4wasm25createRemoveUnusedBrsPassEv__wrapper,__ZN4wasm31createRemoveUnusedFunctionsPassEv__wrapper,__ZN4wasm27createRemoveUnusedNamesPassEv__wrapper,__ZN4wasm26createReorderFunctionsPassEv__wrapper,__ZN4wasm23createReorderLocalsPassEv__wrapper,__ZN4wasm24createSimplifyLocalsPassEv__wrapper,__ZN4wasm16createVacuumPassEv__wrapper,__ZN4wasm20createPrecomputePassEv__wrapper,b5,b5,b5 ,b5,b5,b5]; var FUNCTION_TABLE_vi = [b6,__ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZNSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZTv0_n12_NSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZTv0_n12_NSt3__219basic_istringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZNSt3__213basic_istreamIcNS_11char_traitsIcEEED1Ev,__ZNSt3__213basic_istreamIcNS_11char_traitsIcEEED0Ev,__ZTv0_n12_NSt3__213basic_istreamIcNS_11char_traitsIcEEED1Ev,__ZTv0_n12_NSt3__213basic_istreamIcNS_11char_traitsIcEEED0Ev,__ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev,__ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZNSt9exceptionD2Ev,__ZNSt3__217bad_function_callD0Ev,__ZNSt3__210__function6__baseIFhvEED2Ev,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEED0Ev,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE7destroyEv,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE18destroy_deallocateEv,__ZNSt3__210__function6__baseIFavEED2Ev,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEED0Ev,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7destroyEv,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE18destroy_deallocateEv,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEED0Ev,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7destroyEv,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE18destroy_deallocateEv,__ZN4wasm4PassD2Ev,__ZN4wasm4PassD0Ev,__ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZNSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZThn8_NSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev ,__ZThn8_NSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZTv0_n12_NSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev,__ZTv0_n12_NSt3__218basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev,__ZNSt3__214basic_iostreamIcNS_11char_traitsIcEEED1Ev,__ZNSt3__214basic_iostreamIcNS_11char_traitsIcEEED0Ev,__ZThn8_NSt3__214basic_iostreamIcNS_11char_traitsIcEEED1Ev,__ZThn8_NSt3__214basic_iostreamIcNS_11char_traitsIcEEED0Ev,__ZTv0_n12_NSt3__214basic_iostreamIcNS_11char_traitsIcEEED1Ev,__ZTv0_n12_NSt3__214basic_iostreamIcNS_11char_traitsIcEEED0Ev,__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEED1Ev,__ZNSt3__213basic_ostreamIcNS_11char_traitsIcEEED0Ev,__ZTv0_n12_NSt3__213basic_ostreamIcNS_11char_traitsIcEEED1Ev,__ZTv0_n12_NSt3__213basic_ostreamIcNS_11char_traitsIcEEED0Ev,__ZN4wasm10WalkerPassINS_10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS5_vEEEEED2Ev,__ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCallsD0Ev,__ZNSt3__210__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEEED2Ev,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EED0Ev,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7destroyEv,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE18destroy_deallocateEv,__ZNSt3__210__function6__baseIFPN4wasm10ExpressionEN6cashew3RefEjEED2Ev,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEED0Ev,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7destroyEv,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEED0Ev,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7destroyEv,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE18destroy_deallocateEv,__ZNSt3__210__function6__baseIFPN4wasm4PassEvEED2Ev,__ZNSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_ED0Ev,__ZNSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E7destroyEv,__ZNSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E18destroy_deallocateEv ,__ZNSt3__210__function6__baseIFN4wasm15ThreadWorkStateEvEED2Ev,__ZNSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEED0Ev,__ZNSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE7destroyEv,__ZNSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE18destroy_deallocateEv,__ZN4wasm7PrinterD0Ev,__ZN4wasm15MinifiedPrinterD0Ev,__ZN4wasm11FullPrinterD0Ev,__ZNSt3__28ios_baseD2Ev,__ZNSt3__28ios_baseD0Ev,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEED2Ev,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEED0Ev,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEED2Ev,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEED0Ev,__ZNSt3__213basic_istreamIwNS_11char_traitsIwEEED1Ev,__ZNSt3__213basic_istreamIwNS_11char_traitsIwEEED0Ev,__ZTv0_n12_NSt3__213basic_istreamIwNS_11char_traitsIwEEED1Ev,__ZTv0_n12_NSt3__213basic_istreamIwNS_11char_traitsIwEEED0Ev,__ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEED1Ev,__ZNSt3__213basic_ostreamIwNS_11char_traitsIwEEED0Ev,__ZTv0_n12_NSt3__213basic_ostreamIwNS_11char_traitsIwEEED1Ev,__ZTv0_n12_NSt3__213basic_ostreamIwNS_11char_traitsIwEEED0Ev,__ZNSt3__211__stdoutbufIwED0Ev,__ZNSt3__211__stdoutbufIcED0Ev,__ZNSt3__210__stdinbufIwED0Ev,__ZNSt3__210__stdinbufIcED0Ev,__ZNSt3__27collateIcED2Ev,__ZNSt3__27collateIcED0Ev,__ZNSt3__26locale5facet16__on_zero_sharedEv,__ZNSt3__27collateIwED2Ev,__ZNSt3__27collateIwED0Ev ,__ZNSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__28time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__28time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__28time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__28time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__210moneypunctIcLb0EED2Ev,__ZNSt3__210moneypunctIcLb0EED0Ev,__ZNSt3__210moneypunctIcLb1EED2Ev,__ZNSt3__210moneypunctIcLb1EED0Ev,__ZNSt3__210moneypunctIwLb0EED2Ev,__ZNSt3__210moneypunctIwLb0EED0Ev,__ZNSt3__210moneypunctIwLb1EED2Ev,__ZNSt3__210moneypunctIwLb1EED0Ev,__ZNSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__29money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev,__ZNSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__29money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__29money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED2Ev,__ZNSt3__29money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEED0Ev ,__ZNSt3__29money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED2Ev,__ZNSt3__29money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEED0Ev,__ZNSt3__28messagesIcED2Ev,__ZNSt3__28messagesIcED0Ev,__ZNSt3__28messagesIwED2Ev,__ZNSt3__28messagesIwED0Ev,__ZNSt3__26locale5facetD2Ev,__ZNSt3__216__narrow_to_utf8ILj32EED0Ev,__ZNSt3__217__widen_from_utf8ILj32EED0Ev,__ZNSt3__27codecvtIwc11__mbstate_tED2Ev,__ZNSt3__27codecvtIwc11__mbstate_tED0Ev,__ZNSt3__26locale5__impD2Ev,__ZNSt3__26locale5__impD0Ev,__ZNSt3__25ctypeIcED2Ev,__ZNSt3__25ctypeIcED0Ev,__ZNSt3__28numpunctIcED2Ev,__ZNSt3__28numpunctIcED0Ev,__ZNSt3__28numpunctIwED2Ev,__ZNSt3__28numpunctIwED0Ev,__ZNSt3__26locale5facetD0Ev,__ZNSt3__25ctypeIwED0Ev,__ZNSt3__27codecvtIcc11__mbstate_tED0Ev,__ZNSt3__27codecvtIDsc11__mbstate_tED0Ev,__ZNSt3__27codecvtIDic11__mbstate_tED0Ev,__ZN10__cxxabiv116__shim_type_infoD2Ev,__ZN10__cxxabiv117__class_type_infoD0Ev,__ZNK10__cxxabiv116__shim_type_info5noop1Ev,__ZNK10__cxxabiv116__shim_type_info5noop2Ev,__ZN10__cxxabiv120__si_class_type_infoD0Ev,__ZNSt9bad_allocD2Ev ,__ZNSt9bad_allocD0Ev,__ZN10__cxxabiv123__fundamental_type_infoD0Ev,__ZN10__cxxabiv119__pointer_type_infoD0Ev,__ZN10__cxxabiv120__function_type_infoD0Ev,__ZN10__cxxabiv121__vmi_class_type_infoD0Ev,__ZN4wasm14ParseExceptionD2Ev,__ZN4wasm34OptimizingIncrementalModuleBuilder10workerMainEPv,__ZNSt3__23setIN4wasm4NameENS_4lessIS2_EENS_9allocatorIS2_EEED2Ev,__ZNSt3__213__vector_baseIN6cashew3RefENS_9allocatorIS2_EEED2Ev,__ZN4wasm12PassRegistryD2Ev,__ZN6cashew10IStringSetD2Ev,__ZNSt3__213__vector_baseIN6cashew13OperatorClassENS_9allocatorIS2_EEED2Ev,__ZNSt3__213__vector_baseINS_13unordered_mapIN6cashew7IStringEiNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_iEEEEEENS8_ISD_EEED2Ev,__ZN6cashew5ArenaD2Ev,__ZNSt3__210unique_ptrIN4wasm10ThreadPoolENS_14default_deleteIS2_EEED2Ev,__ZN4wasm6Thread8mainLoopEPv,_cleanup_418,_cleanup_435,__ZNSt3__28ios_base4InitD2Ev,__ZNSt3__26locale2id6__initEv,__ZNSt3__217__call_once_proxyINS_5tupleIJONS_12_GLOBAL__N_111__fake_bindEEEEEEvPv,___cxx_global_array_dtor,___cxx_global_array_dtor_61,___cxx_global_array_dtor_109,__ZNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev,___cxx_global_array_dtor_46,___cxx_global_array_dtor_85,___cxx_global_array_dtor_112,__ZNSt3__212basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev,__ZNSt3__212__do_nothingEPv ,_free,__ZNSt3__221__thread_specific_ptrINS_15__thread_structEE16__at_thread_exitEPv,__ZN10__cxxabiv112_GLOBAL__N_19destruct_EPv,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6 ,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6 ,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6]; var FUNCTION_TABLE_vii = [b7,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE5imbueERKNS_6localeE,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE7__cloneEPNS0_6__baseIS7_EE,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7__cloneEPNS0_6__baseIS7_EE,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7__cloneEPNS0_6__baseIS7_EE,__ZZ11instantiateEN19JSExternalInterface4initERN4wasm6ModuleE,__ZZ11instantiateEN19JSExternalInterface4trapEPKc,__ZN4wasm16ExpressionRunnerINS_16GlobalInitRunnerEE4trapEPKc,__ZZN4wasm14ModuleInstance20callFunctionInternalEN6cashew7IStringERNSt3__26vectorINS_7LiteralENS3_9allocatorIS5_EEEEEN23RuntimeExpressionRunner4trapEPKc,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7__cloneEPNS0_6__baseISB_EE,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEPNS0_6__baseISB_EE,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEPNS0_6__baseISB_EE,__ZNKSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E7__cloneEPNS0_6__baseIS5_EE,__ZNKSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE7__cloneEPNS0_6__baseIS9_EE,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE5imbueERKNS_6localeE,__ZNSt3__211__stdoutbufIwE5imbueERKNS_6localeE,__ZNSt3__211__stdoutbufIcE5imbueERKNS_6localeE,__ZNSt3__210__stdinbufIwE5imbueERKNS_6localeE,__ZNSt3__210__stdinbufIcE5imbueERKNS_6localeE,__ZNKSt3__210moneypunctIcLb0EE11do_groupingEv,__ZNKSt3__210moneypunctIcLb0EE14do_curr_symbolEv,__ZNKSt3__210moneypunctIcLb0EE16do_positive_signEv,__ZNKSt3__210moneypunctIcLb0EE16do_negative_signEv,__ZNKSt3__210moneypunctIcLb0EE13do_pos_formatEv,__ZNKSt3__210moneypunctIcLb0EE13do_neg_formatEv,__ZNKSt3__210moneypunctIcLb1EE11do_groupingEv,__ZNKSt3__210moneypunctIcLb1EE14do_curr_symbolEv,__ZNKSt3__210moneypunctIcLb1EE16do_positive_signEv,__ZNKSt3__210moneypunctIcLb1EE16do_negative_signEv ,__ZNKSt3__210moneypunctIcLb1EE13do_pos_formatEv,__ZNKSt3__210moneypunctIcLb1EE13do_neg_formatEv,__ZNKSt3__210moneypunctIwLb0EE11do_groupingEv,__ZNKSt3__210moneypunctIwLb0EE14do_curr_symbolEv,__ZNKSt3__210moneypunctIwLb0EE16do_positive_signEv,__ZNKSt3__210moneypunctIwLb0EE16do_negative_signEv,__ZNKSt3__210moneypunctIwLb0EE13do_pos_formatEv,__ZNKSt3__210moneypunctIwLb0EE13do_neg_formatEv,__ZNKSt3__210moneypunctIwLb1EE11do_groupingEv,__ZNKSt3__210moneypunctIwLb1EE14do_curr_symbolEv,__ZNKSt3__210moneypunctIwLb1EE16do_positive_signEv,__ZNKSt3__210moneypunctIwLb1EE16do_negative_signEv,__ZNKSt3__210moneypunctIwLb1EE13do_pos_formatEv,__ZNKSt3__210moneypunctIwLb1EE13do_neg_formatEv,__ZNKSt3__28messagesIcE8do_closeEi,__ZNKSt3__28messagesIwE8do_closeEi,__ZNKSt3__28numpunctIcE11do_groupingEv,__ZNKSt3__28numpunctIcE11do_truenameEv,__ZNKSt3__28numpunctIcE12do_falsenameEv,__ZNKSt3__28numpunctIwE11do_groupingEv,__ZNKSt3__28numpunctIwE11do_truenameEv,__ZNKSt3__28numpunctIwE12do_falsenameEv,__ZN4wasm10PostWalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE4scanEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitBlockEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE9doVisitIfEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE11doVisitLoopEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitBreakEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13doVisitSwitchEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE11doVisitCallEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE17doVisitCallImportEPS1_PPNS_10ExpressionE ,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE19doVisitCallIndirectEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE15doVisitGetLocalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE15doVisitSetLocalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE16doVisitGetGlobalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE16doVisitSetGlobalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE11doVisitLoadEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitStoreEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitConstEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE12doVisitUnaryEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13doVisitBinaryEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13doVisitSelectEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE13doVisitReturnEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE11doVisitHostEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE10doVisitNopEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_13WasmValidatorENS_7VisitorIS1_vEEE18doVisitUnreachableEPS1_PPNS_10ExpressionE,__ZN4wasm10PostWalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE4scanEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitBlockEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE9doVisitIfEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE11doVisitLoopEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitBreakEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13doVisitSwitchEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE11doVisitCallEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE17doVisitCallImportEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE19doVisitCallIndirectEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE15doVisitGetLocalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE15doVisitSetLocalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE16doVisitGetGlobalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE16doVisitSetGlobalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE11doVisitLoadEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitStoreEPS1_PPNS_10ExpressionE ,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitConstEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE12doVisitUnaryEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13doVisitBinaryEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13doVisitSelectEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE13doVisitReturnEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE11doVisitHostEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE10doVisitNopEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_11BreakSeekerENS_7VisitorIS1_vEEE18doVisitUnreachableEPS1_PPNS_10ExpressionE,__ZN4wasm10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE4scanEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitBlockEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE9doVisitIfEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE11doVisitLoopEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitBreakEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13doVisitSwitchEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE11doVisitCallEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE17doVisitCallImportEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE19doVisitCallIndirectEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE15doVisitGetLocalEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE15doVisitSetLocalEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE16doVisitGetGlobalEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE16doVisitSetGlobalEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE11doVisitLoadEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitStoreEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitConstEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE12doVisitUnaryEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13doVisitBinaryEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13doVisitSelectEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE13doVisitReturnEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE11doVisitHostEPS4_PPNS_10ExpressionE,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE10doVisitNopEPS4_PPNS_10ExpressionE ,__ZN4wasm6WalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS4_vEEE18doVisitUnreachableEPS4_PPNS_10ExpressionE,__ZN4wasm10PostWalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE4scanEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitBlockEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE9doVisitIfEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE11doVisitLoopEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitBreakEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13doVisitSwitchEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE11doVisitCallEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE17doVisitCallImportEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE19doVisitCallIndirectEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE15doVisitGetLocalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE15doVisitSetLocalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE16doVisitGetGlobalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE16doVisitSetGlobalEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE11doVisitLoadEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitStoreEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitConstEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE12doVisitUnaryEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13doVisitBinaryEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13doVisitSelectEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE13doVisitReturnEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE11doVisitHostEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE10doVisitNopEPS1_PPNS_10ExpressionE,__ZN4wasm6WalkerINS_10TypeSeekerENS_7VisitorIS1_vEEE18doVisitUnreachableEPS1_PPNS_10ExpressionE,b7,b7,b7,b7,b7,b7 ,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7 ,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7 ,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7 ,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7,b7]; var FUNCTION_TABLE_iiiiiii = [b8,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRb,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRl,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRx,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRt,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRm,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRy,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRf,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRd,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRe,__ZNKSt3__27num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRb,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRl,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRx,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRt,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRm,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRy,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRf,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRd,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRe,__ZNKSt3__27num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv,__ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcx,__ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcy,__ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwx,__ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwy,__ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm ,__ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm,__ZNKSt3__29money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEcRKNS_12basic_stringIcS3_NS_9allocatorIcEEEE,__ZNKSt3__29money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwRKNS_12basic_stringIwS3_NS_9allocatorIwEEEE,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8 ,b8,b8,b8,b8,b8]; var FUNCTION_TABLE_ii = [b9,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE4syncEv,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE9showmanycEv,__ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE5uflowEv,__ZNKSt9exception4whatEv,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE7__cloneEv,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEEclEv,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE11target_typeEv,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7__cloneEv,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEEclEv,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE11target_typeEv,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE7__cloneEv,__ZNSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEEclEv,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE11target_typeEv,__ZN4wasm4Pass18isFunctionParallelEv,__ZN4wasm4Pass6createEv,__ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCalls18isFunctionParallelEv,__ZZN4wasm15Asm2WasmBuilder10processAsmEN6cashew3RefEEN13FinalizeCalls6createEv,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE7__cloneEv,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE11target_typeEv,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE7__cloneEv,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE11target_typeEv,__ZNKSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E7__cloneEv,__ZNSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_EclEv,__ZNKSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E11target_typeEv,__ZNKSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE7__cloneEv ,__ZNSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEEclEv,__ZNKSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE11target_typeEv,___stdio_close,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE9underflowEv,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE4syncEv,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE9showmanycEv,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE9underflowEv,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE5uflowEv,__ZNSt3__211__stdoutbufIwE4syncEv,__ZNSt3__211__stdoutbufIcE4syncEv,__ZNSt3__210__stdinbufIwE9underflowEv,__ZNSt3__210__stdinbufIwE5uflowEv,__ZNSt3__210__stdinbufIcE9underflowEv,__ZNSt3__210__stdinbufIcE5uflowEv,__ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13do_date_orderEv,__ZNKSt3__220__time_get_c_storageIcE7__weeksEv,__ZNKSt3__220__time_get_c_storageIcE8__monthsEv,__ZNKSt3__220__time_get_c_storageIcE7__am_pmEv,__ZNKSt3__220__time_get_c_storageIcE3__cEv,__ZNKSt3__220__time_get_c_storageIcE3__rEv,__ZNKSt3__220__time_get_c_storageIcE3__xEv,__ZNKSt3__220__time_get_c_storageIcE3__XEv,__ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13do_date_orderEv,__ZNKSt3__220__time_get_c_storageIwE7__weeksEv,__ZNKSt3__220__time_get_c_storageIwE8__monthsEv,__ZNKSt3__220__time_get_c_storageIwE7__am_pmEv,__ZNKSt3__220__time_get_c_storageIwE3__cEv,__ZNKSt3__220__time_get_c_storageIwE3__rEv,__ZNKSt3__220__time_get_c_storageIwE3__xEv,__ZNKSt3__220__time_get_c_storageIwE3__XEv ,__ZNKSt3__210moneypunctIcLb0EE16do_decimal_pointEv,__ZNKSt3__210moneypunctIcLb0EE16do_thousands_sepEv,__ZNKSt3__210moneypunctIcLb0EE14do_frac_digitsEv,__ZNKSt3__210moneypunctIcLb1EE16do_decimal_pointEv,__ZNKSt3__210moneypunctIcLb1EE16do_thousands_sepEv,__ZNKSt3__210moneypunctIcLb1EE14do_frac_digitsEv,__ZNKSt3__210moneypunctIwLb0EE16do_decimal_pointEv,__ZNKSt3__210moneypunctIwLb0EE16do_thousands_sepEv,__ZNKSt3__210moneypunctIwLb0EE14do_frac_digitsEv,__ZNKSt3__210moneypunctIwLb1EE16do_decimal_pointEv,__ZNKSt3__210moneypunctIwLb1EE16do_thousands_sepEv,__ZNKSt3__210moneypunctIwLb1EE14do_frac_digitsEv,__ZNKSt3__27codecvtIDic11__mbstate_tE11do_encodingEv,__ZNKSt3__27codecvtIDic11__mbstate_tE16do_always_noconvEv,__ZNKSt3__27codecvtIDic11__mbstate_tE13do_max_lengthEv,__ZNKSt3__27codecvtIwc11__mbstate_tE11do_encodingEv,__ZNKSt3__27codecvtIwc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__27codecvtIwc11__mbstate_tE13do_max_lengthEv,__ZNKSt3__28numpunctIcE16do_decimal_pointEv,__ZNKSt3__28numpunctIcE16do_thousands_sepEv,__ZNKSt3__28numpunctIwE16do_decimal_pointEv,__ZNKSt3__28numpunctIwE16do_thousands_sepEv,__ZNKSt3__27codecvtIcc11__mbstate_tE11do_encodingEv,__ZNKSt3__27codecvtIcc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__27codecvtIcc11__mbstate_tE13do_max_lengthEv,__ZNKSt3__27codecvtIDsc11__mbstate_tE11do_encodingEv,__ZNKSt3__27codecvtIDsc11__mbstate_tE16do_always_noconvEv,__ZNKSt3__27codecvtIDsc11__mbstate_tE13do_max_lengthEv,__ZNKSt9bad_alloc4whatEv,__ZNSt3__214__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEPFvPvEPN4wasm34OptimizingIncrementalModuleBuilderEEEEEES7_S7_ ,__ZNSt3__214__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEPFvPvEPN4wasm6ThreadEEEEEES7_S7_,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9 ,b9,b9,b9,b9,b9,b9,b9,b9,b9]; var FUNCTION_TABLE_viii = [b10,__ZN4wasm4Pass7prepareEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm4Pass8finalizeEPNS_10PassRunnerEPNS_6ModuleE,__ZZ11instantiateEN19JSExternalInterface10growMemoryEN4wasm7AddressES1_,__ZN4wasm10WalkerPassINS_10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS5_vEEEEE3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm7Printer3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm15MinifiedPrinter3runEPNS_10PassRunnerEPNS_6ModuleE,__ZN4wasm11FullPrinter3runEPNS_10PassRunnerEPNS_6ModuleE]; var FUNCTION_TABLE_v = [b11,___cxa_pure_virtual__wrapper,__ZL25default_terminate_handlerv,__ZN10__cxxabiv112_GLOBAL__N_110construct_Ev]; var FUNCTION_TABLE_iiiiiiiii = [b12,__ZNKSt3__28time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc,__ZNKSt3__28time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc,__ZNKSt3__27codecvtIDic11__mbstate_tE6do_outERS1_PKDiS5_RS5_PcS7_RS7_,__ZNKSt3__27codecvtIDic11__mbstate_tE5do_inERS1_PKcS5_RS5_PDiS7_RS7_,__ZNKSt3__27codecvtIwc11__mbstate_tE6do_outERS1_PKwS5_RS5_PcS7_RS7_,__ZNKSt3__27codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_,__ZNKSt3__27codecvtIcc11__mbstate_tE6do_outERS1_PKcS5_RS5_PcS7_RS7_,__ZNKSt3__27codecvtIcc11__mbstate_tE5do_inERS1_PKcS5_RS5_PcS7_RS7_,__ZNKSt3__27codecvtIDsc11__mbstate_tE6do_outERS1_PKDsS5_RS5_PcS7_RS7_,__ZNKSt3__27codecvtIDsc11__mbstate_tE5do_inERS1_PKcS5_RS5_PDsS7_RS7_,b12,b12,b12,b12,b12]; var FUNCTION_TABLE_iiiii = [b13,__ZNKSt3__25ctypeIcE8do_widenEPKcS3_Pc,__ZNKSt3__25ctypeIwE5do_isEPKwS3_Pt,__ZNKSt3__25ctypeIwE10do_scan_isEtPKwS3_,__ZNKSt3__25ctypeIwE11do_scan_notEtPKwS3_,__ZNKSt3__25ctypeIwE8do_widenEPKcS3_Pw,b13,b13]; var FUNCTION_TABLE_viiii = [b14,__ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj,__ZN4wasm4Pass11runFunctionEPNS_10PassRunnerEPNS_6ModuleEPNS_8FunctionE,__ZZ11instantiateEN19JSExternalInterface10callImportEPN4wasm6ImportERNSt3__26vectorINS0_7LiteralENS3_9allocatorIS5_EEEE,__ZZ11instantiateEN19JSExternalInterface4loadEPN4wasm4LoadENS0_7AddressE,__ZZ11instantiateEN19JSExternalInterface5storeEPN4wasm5StoreENS0_7AddressENS0_7LiteralE,__ZN4wasm10WalkerPassINS_10PostWalkerIZNS_15Asm2WasmBuilder10processAsmEN6cashew3RefEE13FinalizeCallsNS_7VisitorIS5_vEEEEE11runFunctionEPNS_10PassRunnerEPNS_6ModuleEPNS_8FunctionE,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE7seekposENS_4fposI11__mbstate_tEEj,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE7seekposENS_4fposI11__mbstate_tEEj,__ZNKSt3__27collateIcE12do_transformEPKcS3_,__ZNKSt3__27collateIwE12do_transformEPKwS3_,__ZNK10__cxxabiv117__class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi,__ZNK10__cxxabiv120__si_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi,__ZNK10__cxxabiv121__vmi_class_type_info27has_unambiguous_public_baseEPNS_19__dynamic_cast_infoEPvi,b14,b14]; var FUNCTION_TABLE_iii = [b15,__ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pbackfailEi,__ZNSt3__215basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getU32LEBEvEUlvE_NS_9allocatorIS4_EEFhvEE6targetERKSt9type_info,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS32LEBEvEUlvE_NS_9allocatorIS4_EEFavEE6targetERKSt9type_info,__ZNKSt3__210__function6__funcIZN4wasm17WasmBinaryBuilder9getS64LEBEvEUlvE_NS_9allocatorIS4_EEFavEE6targetERKSt9type_info,__ZNSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EEclEOS5_,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__1NS_9allocatorIS6_EEFPNS2_10ExpressionES5_EE6targetERKSt9type_info,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__2NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info,__ZNKSt3__210__function6__funcIZN4wasm15Asm2WasmBuilder15processFunctionEN6cashew3RefEE3__3NS_9allocatorIS6_EEFPNS2_10ExpressionES5_jEE6targetERKSt9type_info,__ZNKSt3__210__function6__funcIPFPN4wasm4PassEvENS_9allocatorIS6_EES5_E6targetERKSt9type_info,__ZNKSt3__210__function6__funcIZZN4wasm10PassRunner3runEvENK3__0clEvEUlvE_NS_9allocatorIS5_EEFNS2_15ThreadWorkStateEvEE6targetERKSt9type_info,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE9pbackfailEi,__ZNSt3__215basic_streambufIcNS_11char_traitsIcEEE8overflowEi,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE9pbackfailEj,__ZNSt3__215basic_streambufIwNS_11char_traitsIwEEE8overflowEj,__ZNSt3__211__stdoutbufIwE8overflowEj,__ZNSt3__211__stdoutbufIcE8overflowEi,__ZNSt3__210__stdinbufIwE9pbackfailEj,__ZNSt3__210__stdinbufIcE9pbackfailEi,__ZNKSt3__25ctypeIcE10do_toupperEc,__ZNKSt3__25ctypeIcE10do_tolowerEc,__ZNKSt3__25ctypeIcE8do_widenEc,__ZNKSt3__25ctypeIwE10do_toupperEw,__ZNKSt3__25ctypeIwE10do_tolowerEw,__ZNKSt3__25ctypeIwE8do_widenEc,b15,b15,b15 ,b15,b15,b15]; var FUNCTION_TABLE_iiiiid = [b16,__ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcd,__ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEce,__ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwd,__ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwe,b16,b16,b16]; var FUNCTION_TABLE_iiiiii = [b17,__ZNKSt3__27collateIcE10do_compareEPKcS3_S3_S3_,__ZNKSt3__27collateIwE10do_compareEPKwS3_S3_S3_,__ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcb,__ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcl,__ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcm,__ZNKSt3__27num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPKv,__ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwb,__ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwl,__ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwm,__ZNKSt3__27num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPKv,__ZNKSt3__27codecvtIDic11__mbstate_tE10do_unshiftERS1_PcS4_RS4_,__ZNKSt3__27codecvtIDic11__mbstate_tE9do_lengthERS1_PKcS5_j,__ZNKSt3__27codecvtIwc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_,__ZNKSt3__27codecvtIwc11__mbstate_tE9do_lengthERS1_PKcS5_j,__ZNKSt3__25ctypeIcE9do_narrowEPKcS3_cPc,__ZNKSt3__25ctypeIwE9do_narrowEPKwS3_cPc,__ZNKSt3__27codecvtIcc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_,__ZNKSt3__27codecvtIcc11__mbstate_tE9do_lengthERS1_PKcS5_j,__ZNKSt3__27codecvtIDsc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_,__ZNKSt3__27codecvtIDsc11__mbstate_tE9do_lengthERS1_PKcS5_j,b17,b17,b17,b17,b17,b17,b17,b17 ,b17,b17,b17]; return { _instantiate: _instantiate, ___udivdi3: ___udivdi3, _interpreter_stack_trace: _interpreter_stack_trace, _bitshift64Lshr: _bitshift64Lshr, _bitshift64Shl: _bitshift64Shl, _fflush: _fflush, _load_asm2wasm: _load_asm2wasm, ___cxa_is_pointer_type: ___cxa_is_pointer_type, _bitshift64Ashr: _bitshift64Ashr, _memset: _memset, ___cxa_demangle: ___cxa_demangle, _i64Add: _i64Add, _memcpy: _memcpy, ___muldi3: ___muldi3, ___uremdi3: ___uremdi3, ___divdi3: ___divdi3, _llvm_cttz_i32: _llvm_cttz_i32, _i64Subtract: _i64Subtract, ___udivmoddi4: ___udivmoddi4, _load_s_expr2wasm: _load_s_expr2wasm, _pthread_self: _pthread_self, _pthread_mutex_unlock: _pthread_mutex_unlock, ___remdi3: ___remdi3, _pthread_cond_broadcast: _pthread_cond_broadcast, ___errno_location: ___errno_location, _call_from_js: _call_from_js, ___muldsi3: ___muldsi3, ___cxa_can_catch: ___cxa_can_catch, _free: _free, _load_binary2wasm: _load_binary2wasm, _memmove: _memmove, _malloc: _malloc, _pthread_mutex_lock: _pthread_mutex_lock, __GLOBAL__I_000101: __GLOBAL__I_000101, __GLOBAL__sub_I_wasm_js_cpp: __GLOBAL__sub_I_wasm_js_cpp, __GLOBAL__sub_I_pass_cpp: __GLOBAL__sub_I_pass_cpp, __GLOBAL__sub_I_parser_cpp: __GLOBAL__sub_I_parser_cpp, __GLOBAL__sub_I_simple_ast_cpp: __GLOBAL__sub_I_simple_ast_cpp, __GLOBAL__sub_I_optimizer_shared_cpp: __GLOBAL__sub_I_optimizer_shared_cpp, __GLOBAL__sub_I_threads_cpp: __GLOBAL__sub_I_threads_cpp, __GLOBAL__sub_I_shared_constants_cpp: __GLOBAL__sub_I_shared_constants_cpp, __GLOBAL__sub_I_wasm_cpp: __GLOBAL__sub_I_wasm_cpp, __GLOBAL__sub_I_iostream_cpp: __GLOBAL__sub_I_iostream_cpp, runPostSets: runPostSets, _emscripten_replace_memory: _emscripten_replace_memory, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_iiiiiiii: dynCall_iiiiiiii, dynCall_iiii: dynCall_iiii, dynCall_viiiiii: dynCall_viiiiii, dynCall_viiiii: dynCall_viiiii, dynCall_iiiiiid: dynCall_iiiiiid, dynCall_i: dynCall_i, dynCall_vi: dynCall_vi, dynCall_vii: dynCall_vii, dynCall_iiiiiii: dynCall_iiiiiii, dynCall_ii: dynCall_ii, dynCall_viii: dynCall_viii, dynCall_v: dynCall_v, dynCall_iiiiiiiii: dynCall_iiiiiiiii, dynCall_iiiii: dynCall_iiiii, dynCall_viiii: dynCall_viiii, dynCall_iii: dynCall_iii, dynCall_iiiiid: dynCall_iiiiid, dynCall_iiiiii: dynCall_iiiiii }; }) // EMSCRIPTEN_END_ASM (Module.asmGlobalArg, Module.asmLibraryArg, buffer); var __GLOBAL__sub_I_simple_ast_cpp = Module["__GLOBAL__sub_I_simple_ast_cpp"] = asm["__GLOBAL__sub_I_simple_ast_cpp"]; var _instantiate = Module["_instantiate"] = asm["_instantiate"]; var ___udivdi3 = Module["___udivdi3"] = asm["___udivdi3"]; var _interpreter_stack_trace = Module["_interpreter_stack_trace"] = asm["_interpreter_stack_trace"]; var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; var __GLOBAL__sub_I_wasm_cpp = Module["__GLOBAL__sub_I_wasm_cpp"] = asm["__GLOBAL__sub_I_wasm_cpp"]; var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; var __GLOBAL__sub_I_parser_cpp = Module["__GLOBAL__sub_I_parser_cpp"] = asm["__GLOBAL__sub_I_parser_cpp"]; var _fflush = Module["_fflush"] = asm["_fflush"]; var _load_asm2wasm = Module["_load_asm2wasm"] = asm["_load_asm2wasm"]; var ___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = asm["___cxa_is_pointer_type"]; var __GLOBAL__sub_I_pass_cpp = Module["__GLOBAL__sub_I_pass_cpp"] = asm["__GLOBAL__sub_I_pass_cpp"]; var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; var _memset = Module["_memset"] = asm["_memset"]; var ___cxa_demangle = Module["___cxa_demangle"] = asm["___cxa_demangle"]; var _load_s_expr2wasm = Module["_load_s_expr2wasm"] = asm["_load_s_expr2wasm"]; var _memcpy = Module["_memcpy"] = asm["_memcpy"]; var ___muldi3 = Module["___muldi3"] = asm["___muldi3"]; var __GLOBAL__sub_I_shared_constants_cpp = Module["__GLOBAL__sub_I_shared_constants_cpp"] = asm["__GLOBAL__sub_I_shared_constants_cpp"]; var ___uremdi3 = Module["___uremdi3"] = asm["___uremdi3"]; var ___divdi3 = Module["___divdi3"] = asm["___divdi3"]; var _llvm_cttz_i32 = Module["_llvm_cttz_i32"] = asm["_llvm_cttz_i32"]; var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; var ___udivmoddi4 = Module["___udivmoddi4"] = asm["___udivmoddi4"]; var _i64Add = Module["_i64Add"] = asm["_i64Add"]; var _pthread_self = Module["_pthread_self"] = asm["_pthread_self"]; var _pthread_mutex_unlock = Module["_pthread_mutex_unlock"] = asm["_pthread_mutex_unlock"]; var __GLOBAL__I_000101 = Module["__GLOBAL__I_000101"] = asm["__GLOBAL__I_000101"]; var ___remdi3 = Module["___remdi3"] = asm["___remdi3"]; var __GLOBAL__sub_I_iostream_cpp = Module["__GLOBAL__sub_I_iostream_cpp"] = asm["__GLOBAL__sub_I_iostream_cpp"]; var _pthread_cond_broadcast = Module["_pthread_cond_broadcast"] = asm["_pthread_cond_broadcast"]; var ___errno_location = Module["___errno_location"] = asm["___errno_location"]; var _call_from_js = Module["_call_from_js"] = asm["_call_from_js"]; var ___muldsi3 = Module["___muldsi3"] = asm["___muldsi3"]; var ___cxa_can_catch = Module["___cxa_can_catch"] = asm["___cxa_can_catch"]; var _free = Module["_free"] = asm["_free"]; var runPostSets = Module["runPostSets"] = asm["runPostSets"]; var __GLOBAL__sub_I_wasm_js_cpp = Module["__GLOBAL__sub_I_wasm_js_cpp"] = asm["__GLOBAL__sub_I_wasm_js_cpp"]; var _load_binary2wasm = Module["_load_binary2wasm"] = asm["_load_binary2wasm"]; var _memmove = Module["_memmove"] = asm["_memmove"]; var __GLOBAL__sub_I_threads_cpp = Module["__GLOBAL__sub_I_threads_cpp"] = asm["__GLOBAL__sub_I_threads_cpp"]; var _malloc = Module["_malloc"] = asm["_malloc"]; var _pthread_mutex_lock = Module["_pthread_mutex_lock"] = asm["_pthread_mutex_lock"]; var _emscripten_replace_memory = Module["_emscripten_replace_memory"] = asm["_emscripten_replace_memory"]; var __GLOBAL__sub_I_optimizer_shared_cpp = Module["__GLOBAL__sub_I_optimizer_shared_cpp"] = asm["__GLOBAL__sub_I_optimizer_shared_cpp"]; var dynCall_iiiiiiii = Module["dynCall_iiiiiiii"] = asm["dynCall_iiiiiiii"]; var dynCall_iiii = Module["dynCall_iiii"] = asm["dynCall_iiii"]; var dynCall_viiiiii = Module["dynCall_viiiiii"] = asm["dynCall_viiiiii"]; var dynCall_viiiii = Module["dynCall_viiiii"] = asm["dynCall_viiiii"]; var dynCall_iiiiiid = Module["dynCall_iiiiiid"] = asm["dynCall_iiiiiid"]; var dynCall_i = Module["dynCall_i"] = asm["dynCall_i"]; var dynCall_vi = Module["dynCall_vi"] = asm["dynCall_vi"]; var dynCall_vii = Module["dynCall_vii"] = asm["dynCall_vii"]; var dynCall_iiiiiii = Module["dynCall_iiiiiii"] = asm["dynCall_iiiiiii"]; var dynCall_ii = Module["dynCall_ii"] = asm["dynCall_ii"]; var dynCall_viii = Module["dynCall_viii"] = asm["dynCall_viii"]; var dynCall_v = Module["dynCall_v"] = asm["dynCall_v"]; var dynCall_iiiiiiiii = Module["dynCall_iiiiiiiii"] = asm["dynCall_iiiiiiiii"]; var dynCall_iiiii = Module["dynCall_iiiii"] = asm["dynCall_iiiii"]; var dynCall_viiii = Module["dynCall_viiii"] = asm["dynCall_viiii"]; var dynCall_iii = Module["dynCall_iii"] = asm["dynCall_iii"]; var dynCall_iiiiid = Module["dynCall_iiiiid"] = asm["dynCall_iiiiid"]; var dynCall_iiiiii = Module["dynCall_iiiiii"] = asm["dynCall_iiiiii"]; Runtime.stackAlloc = asm["stackAlloc"]; Runtime.stackSave = asm["stackSave"]; Runtime.stackRestore = asm["stackRestore"]; Runtime.establishStackSpace = asm["establishStackSpace"]; Runtime.setTempRet0 = asm["setTempRet0"]; Runtime.getTempRet0 = asm["getTempRet0"]; function ExitStatus(status) { this.name = "ExitStatus"; this.message = "Program terminated with exit(" + status + ")"; this.status = status; } ExitStatus.prototype = new Error; ExitStatus.prototype.constructor = ExitStatus; var initialStackTop; var preloadStartTime = null; var calledMain = false; dependenciesFulfilled = function runCaller() { if (!Module["calledRun"]) run(); if (!Module["calledRun"]) dependenciesFulfilled = runCaller; }; Module["callMain"] = Module.callMain = function callMain(args) { args = args || []; ensureInitRuntime(); var argc = args.length + 1; function pad() { for (var i = 0; i < 4 - 1; i++) { argv.push(0); } } var argv = [ allocate(intArrayFromString(Module["thisProgram"]), "i8", ALLOC_NORMAL) ]; pad(); for (var i = 0; i < argc - 1; i = i + 1) { argv.push(allocate(intArrayFromString(args[i]), "i8", ALLOC_NORMAL)); pad(); } argv.push(0); argv = allocate(argv, "i32", ALLOC_NORMAL); try { var ret = Module["_main"](argc, argv, 0); exit(ret, true); } catch (e) { if (e instanceof ExitStatus) { return; } else if (e == "SimulateInfiniteLoop") { Module["noExitRuntime"] = true; return; } else { if (e && typeof e === "object" && e.stack) Module.printErr("exception thrown: " + [ e, e.stack ]); throw e; } } finally { calledMain = true; } }; function run(args) { args = args || Module["arguments"]; if (preloadStartTime === null) preloadStartTime = Date.now(); if (runDependencies > 0) { return; } preRun(); if (runDependencies > 0) return; if (Module["calledRun"]) return; function doRun() { if (Module["calledRun"]) return; Module["calledRun"] = true; if (ABORT) return; ensureInitRuntime(); preMain(); if (Module["onRuntimeInitialized"]) Module["onRuntimeInitialized"](); if (Module["_main"] && shouldRunNow) Module["callMain"](args); postRun(); } if (Module["setStatus"]) { Module["setStatus"]("Running..."); setTimeout((function() { setTimeout((function() { Module["setStatus"](""); }), 1); doRun(); }), 1); } else { doRun(); } } Module["run"] = Module.run = run; function exit(status, implicit) { if (implicit && Module["noExitRuntime"]) { return; } if (Module["noExitRuntime"]) {} else { ABORT = true; EXITSTATUS = status; STACKTOP = initialStackTop; exitRuntime(); if (Module["onExit"]) Module["onExit"](status); } if (ENVIRONMENT_IS_NODE) { process["exit"](status); } else if (ENVIRONMENT_IS_SHELL && typeof quit === "function") { quit(status); } throw new ExitStatus(status); } Module["exit"] = Module.exit = exit; var abortDecorators = []; function abort(what) { if (what !== undefined) { Module.print(what); Module.printErr(what); what = JSON.stringify(what); } else { what = ""; } ABORT = true; EXITSTATUS = 1; var extra = "\nIf this abort() is unexpected, build with -s ASSERTIONS=1 which can give more information."; var output = "abort(" + what + ") at " + stackTrace() + extra; if (abortDecorators) { abortDecorators.forEach((function(decorator) { output = decorator(output, what); })); } throw output; } Module["abort"] = Module.abort = abort; if (Module["preInit"]) { if (typeof Module["preInit"] == "function") Module["preInit"] = [ Module["preInit"] ]; while (Module["preInit"].length > 0) { Module["preInit"].pop()(); } } var shouldRunNow = true; if (Module["noInitialRun"]) { shouldRunNow = false; } run(); return Module; };