From 6870fef1169be3f0fcd8ac4b919306c49b00f5d9 Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Mon, 9 Sep 2024 21:08:20 +0200 Subject: [PATCH 1/5] chore: adding option to treat null under sourcemap-locations as valid 'ignore' cases --- src/common/utils.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/common/utils.ts b/src/common/utils.ts index 99197db..bb65bc5 100644 --- a/src/common/utils.ts +++ b/src/common/utils.ts @@ -234,7 +234,8 @@ export class ProgramSourceDescriptorRegistry { !jsonSourcesDescription['txn-group-sources'].every( (entry) => typeof entry.hash === 'string' && - typeof entry['sourcemap-location'] === 'string', + (typeof entry['sourcemap-location'] === 'string' || + entry['sourcemap-location'] === null), ) ) { throw new Error('Invalid program sources description file'); @@ -245,14 +246,15 @@ export class ProgramSourceDescriptorRegistry { `Could not parse program sources description file from '${programSourcesDescriptionFilePath}': ${err.message}`, ); } - const programSources = jsonSourcesDescription['txn-group-sources'].map( - (source) => + const programSources = jsonSourcesDescription['txn-group-sources'] + .filter((source) => source['sourcemap-location'] !== null) + .map((source) => ProgramSourceDescriptor.fromJSONObj( fileAccessor, programSourcesDescriptionFilePath, source, ), - ); + ); return new ProgramSourceDescriptorRegistry({ txnGroupSources: await Promise.all(programSources), }); From 7bf24a8669d205bbaaf8e9e2a06d1281f401a75d Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Mon, 9 Sep 2024 21:09:08 +0200 Subject: [PATCH 2/5] chore: npm audit --- package-lock.json | 42 +++++++++++++++++++++++++++++++----------- 1 file changed, 31 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index be8e17d..b81d50b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1554,12 +1554,13 @@ } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, + "license": "MIT", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -2493,10 +2494,11 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -2611,6 +2613,21 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", @@ -3036,6 +3053,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.12.0" } @@ -3474,12 +3492,13 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, + "license": "MIT", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -4916,6 +4935,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, From 9e9c8e9072473750a11499d79689b02dfcaa1292 Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Fri, 13 Sep 2024 14:27:20 +0200 Subject: [PATCH 3/5] chore: adding npm prepare script for installation via github --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index e47710d..d16f609 100644 --- a/package.json +++ b/package.json @@ -49,6 +49,7 @@ "src" ], "scripts": { + "prepare": "npm run compile", "compile": "shx rm -rf out && tsc -p ./", "lint": "eslint src --ext ts", "typecheck": "tsc -p tsconfig.json --noEmit", From beeef25701dde1ee8f140de599c3696b6e1b759e Mon Sep 17 00:00:00 2001 From: Daniel McGregor Date: Wed, 25 Sep 2024 15:12:55 +0800 Subject: [PATCH 4/5] feat: add puya debug support (WIP) --- sampleWorkspace/.vscode/launch.json | 12 +- .../puya/DebugContract.approval.puya.map | 3035 ++++++++++++++ sampleWorkspace/puya/contract.py | 59 + sampleWorkspace/puya/contract.simulate.json | 3473 +++++++++++++++++ sampleWorkspace/puya/sources.json | 8 + src/common/debugSession.ts | 211 +- src/common/programReplay.ts | 325 ++ src/common/runtime.ts | 67 +- src/common/traceReplayEngine.ts | 412 +- src/common/utils.ts | 66 +- 10 files changed, 7312 insertions(+), 356 deletions(-) create mode 100644 sampleWorkspace/puya/DebugContract.approval.puya.map create mode 100644 sampleWorkspace/puya/contract.py create mode 100644 sampleWorkspace/puya/contract.simulate.json create mode 100644 sampleWorkspace/puya/sources.json create mode 100644 src/common/programReplay.ts diff --git a/sampleWorkspace/.vscode/launch.json b/sampleWorkspace/.vscode/launch.json index 9667da6..8196311 100644 --- a/sampleWorkspace/.vscode/launch.json +++ b/sampleWorkspace/.vscode/launch.json @@ -163,6 +163,16 @@ "programSourcesDescriptionFile": "${workspaceFolder}/errors/clear-state/sources.json", "stopOnEntry": true - } + }, + { + "type": "avm", + "request": "launch", + "name": "Debug Puya", + + "simulateTraceFile": "${workspaceFolder}/puya/contract.simulate.json", + "programSourcesDescriptionFile": "${workspaceFolder}/puya/sources.json", + + "stopOnEntry": true + }, ] } diff --git a/sampleWorkspace/puya/DebugContract.approval.puya.map b/sampleWorkspace/puya/DebugContract.approval.puya.map new file mode 100644 index 0000000..9f08653 --- /dev/null +++ b/sampleWorkspace/puya/DebugContract.approval.puya.map @@ -0,0 +1,3035 @@ +{ + "version": 3, + "sources": [ + "/Users/danielm/repos/algorand/puya/examples/debug/contract.py", + "/algopy/arc4.py" + ], + "mappings": "ACAA;;;AAAA;ADGA;;;AAAA;;AAAA;;;AAAA;;;;;;AAAA;;;AAAA;;;;AAAA;AAAA;AACK;;AAAA;AAAA;AAAA;;AAAA;AADL;;;AAAA;AAAA;;;AAAA;AAAA;;;AAAA;AACK;;;AAAA;AAAA;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AADL;;AAAA;;;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;;;;;;;;AAGQ;;AAAQ;AAAJ;AACJ;;AAAA;;AAAI;AAAJ;;AACA;;AAAI;AAAJ;AAAA;;AACG;AAAX;;;AACY;;AAAA;;AAAI;AAAJ;;;;;AACC;;AAAA;;AAAA;AAAb;;;AACY;;AAAA;;AAAI;AAAJ;;;;;AACC;;AAAA;;AAAA;AAAb;;;AACY;;AAAQ;;AAAJ;AAAJ;;;;;AACC;;AAAA;AAAA;;AAAA;;;;AAAb;;;AACY;;AAAA;;AAAI;;;;;;;AAEL;;AAAA;;AAAA;AAAA;;AAAA;AAAX;;;AACiB;;AAAA;AAAA;;AAAA;;;AAAL;AAAA;;;;;AAEK;;AAAA;AAAA;;AAAA;;;AAAL;AAAA;;AAEJ;;AAAA;AAAM;;;AAAN;;AACA;;AAAA;AAAA;;AAAI;AAAJ;AAAA;;AACA;AAAM;;;AAAN;;AAEG;;AAAA;;;;AAAX;;;AACY;;AAAA;;AAAA;;;;;;;;AACD;AAAA;;AAAA;;;;AAAX;;;AACY;;AAAA;;AAAA;;;;;;;;AACG;;AAAA;;AAAA;AAAJ;;AAAA;;;;AAAX;;;AACY;;AAAA;;AAAI;;;;;AAER;AAAM;;;AACiB;AAAd;AAAA;;AAAA;AAAc;AAAT;AAAA;;AAAA;AAAd;AAEA;;AAAA;AAGR;;;AAEI;;AAAA;;AAAA;AAAA;;AACA;;AAAA;;AAAA;AAAA;;AACA;;AAAA;;AAAA;;AAAA;;AACK;;AAAL;;AAAA;;AACA;;AAAI;AACJ;;AAAA;;AAAI;AACQ;AAAA;AAAA;AAAL;;AAAA;AAAP;AAGJ;;;AAIO;;AADK;AACL;AAAP;;;AACe;;AAAA;AAAA;AAHF;AAGE;;AAAA;;AAAA;AAAP;AACQ;;AAHJ;AAGI;AAAL;;;AAA0B;;AAHzB;AAGyB;AAAP;AAAA;AAAA;AAJjB;AAIiB;;AAAA;AAAnB;AAAP", + "op_pc_offset": 2, + "pc_events": { + "0": { + "op": "callsub __puya_arc4_router__", + "callsub": "examples.debug.contract.DebugContract.__puya_arc4_router__", + "stack_out": [ + "tmp%0#0" + ], + "defined_out": [ + "tmp%0#0" + ] + }, + "3": { + "op": "return", + "stack_out": [] + }, + "4": { + "subroutine": "examples.debug.contract.DebugContract.__puya_arc4_router__", + "block": "__puya_arc4_router__", + "op": "proto 0 1", + "params": {}, + "stack_in": [] + }, + "7": { + "op": "txn NumAppArgs", + "stack_out": [ + "tmp%0#0" + ], + "defined_out": [ + "tmp%0#0" + ] + }, + "9": { + "op": "bz __puya_arc4_router___bare_routing@5", + "stack_out": [] + }, + "12": { + "op": "pushbytes 53574bff" + }, + "18": { + "op": "txna ApplicationArgs 0", + "stack_out": [ + "method<\"test(uint64,uint64,uint64)uint64\">", + "tmp%2#0" + ], + "defined_out": [ + "method<\"test(uint64,uint64,uint64)uint64\">", + "tmp%2#0" + ] + }, + "21": { + "op": "match __puya_arc4_router___test_route@2", + "stack_out": [] + }, + "25": { + "op": "intc 1", + "stack_out": [ + "0" + ], + "defined_out": [ + "0" + ] + }, + "26": { + "op": "retsub", + "retsub": true + }, + "27": { + "block": "__puya_arc4_router___test_route@2", + "op": "txn OnCompletion", + "stack_in": [], + "stack_out": [ + "tmp%3#0" + ], + "defined_out": [ + "tmp%3#0" + ] + }, + "29": { + "op": "!", + "stack_out": [ + "tmp%4#0" + ], + "defined_out": [ + "tmp%4#0" + ] + }, + "30": { + "op": "assert", + "stack_out": [] + }, + "31": { + "op": "txn ApplicationID", + "stack_out": [ + "tmp%5#0" + ], + "defined_out": [ + "tmp%5#0" + ] + }, + "33": { + "op": "assert", + "stack_out": [] + }, + "34": { + "op": "txna ApplicationArgs 1", + "stack_out": [ + "tmp%7#0" + ], + "defined_out": [ + "tmp%7#0" + ] + }, + "37": { + "op": "btoi", + "stack_out": [ + "tmp%8#0" + ], + "defined_out": [ + "tmp%8#0" + ] + }, + "38": { + "op": "txna ApplicationArgs 2", + "stack_out": [ + "tmp%8#0", + "tmp%9#0" + ], + "defined_out": [ + "tmp%9#0" + ] + }, + "41": { + "op": "btoi", + "stack_out": [ + "tmp%8#0", + "tmp%10#0" + ], + "defined_out": [ + "tmp%10#0" + ] + }, + "42": { + "op": "txna ApplicationArgs 3", + "stack_out": [ + "tmp%8#0", + "tmp%10#0", + "tmp%11#0" + ], + "defined_out": [ + "tmp%11#0" + ] + }, + "45": { + "op": "btoi", + "stack_out": [ + "tmp%8#0", + "tmp%10#0", + "tmp%12#0" + ], + "defined_out": [ + "tmp%10#0", + "tmp%12#0", + "tmp%8#0" + ] + }, + "46": { + "op": "callsub test", + "callsub": "examples.debug.contract.DebugContract.test", + "stack_out": [ + "tmp%13#0" + ], + "defined_out": [ + "tmp%13#0" + ] + }, + "49": { + "op": "itob", + "stack_out": [ + "val_as_bytes%0#0" + ], + "defined_out": [ + "val_as_bytes%0#0" + ] + }, + "50": { + "op": "pushbytes 151f7c75", + "stack_out": [ + "val_as_bytes%0#0", + "0x151f7c75" + ], + "defined_out": [ + "0x151f7c75" + ] + }, + "56": { + "op": "swap", + "stack_out": [ + "0x151f7c75", + "val_as_bytes%0#0" + ], + "defined_out": [ + "val_as_bytes%0#0" + ] + }, + "57": { + "op": "concat", + "stack_out": [ + "tmp%14#0" + ], + "defined_out": [ + "tmp%14#0" + ] + }, + "58": { + "op": "log", + "stack_out": [] + }, + "59": { + "op": "intc 0", + "stack_out": [ + "1" + ], + "defined_out": [ + "1" + ] + }, + "60": { + "op": "retsub", + "retsub": true + }, + "61": { + "block": "__puya_arc4_router___bare_routing@5", + "op": "txn OnCompletion", + "stack_in": [], + "stack_out": [ + "tmp%15#0" + ], + "defined_out": [ + "tmp%15#0" + ] + }, + "63": { + "op": "bnz __puya_arc4_router___after_if_else@9", + "stack_out": [] + }, + "66": { + "op": "txn ApplicationID", + "stack_out": [ + "tmp%16#0" + ], + "defined_out": [ + "tmp%16#0" + ] + }, + "68": { + "op": "!", + "stack_out": [ + "tmp%17#0" + ], + "defined_out": [ + "tmp%17#0" + ] + }, + "69": { + "op": "assert", + "stack_out": [] + }, + "70": { + "op": "intc 0", + "stack_out": [ + "1" + ], + "defined_out": [ + "1" + ] + }, + "71": { + "op": "retsub", + "retsub": true + }, + "72": { + "block": "__puya_arc4_router___after_if_else@9", + "op": "intc 1", + "stack_in": [], + "stack_out": [ + "0" + ], + "defined_out": [ + "0" + ] + }, + "73": { + "op": "retsub", + "retsub": true + }, + "74": { + "subroutine": "examples.debug.contract.DebugContract.test", + "block": "test", + "op": "proto 3 1", + "params": { + "x#0": "uint64", + "y#0": "uint64", + "z#0": "uint64" + }, + "stack_in": [] + }, + "77": { + "op": "intc 1", + "stack_out": [ + "bee#0" + ] + }, + "78": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0" + ] + }, + "79": { + "op": "pushbytes ", + "stack_out": [ + "bee#0", + "cea#0", + "a#30" + ] + }, + "81": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10" + ] + }, + "82": { + "op": "frame_dig -3", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "x#0 (copy)" + ], + "defined_out": [ + "x#0 (copy)" + ] + }, + "84": { + "op": "intc 3", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "x#0 (copy)", + "TMPL_A_MULT" + ], + "defined_out": [ + "TMPL_A_MULT" + ] + }, + "85": { + "op": "*", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "86": { + "op": "frame_dig -3", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "x#0 (copy)" + ], + "defined_out": [ + "x#0 (copy)" + ] + }, + "88": { + "op": "frame_dig -2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "x#0 (copy)", + "y#0 (copy)" + ], + "defined_out": [ + "y#0 (copy)" + ] + }, + "90": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "{+}" + ], + "defined_out": [ + "{+}" + ] + }, + "91": { + "op": "dupn 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "b#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0", + "b#0 (copy)" + ] + }, + "93": { + "op": "frame_dig -1", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "b#0", + "b#0 (copy)", + "z#0 (copy)" + ], + "defined_out": [ + "z#0 (copy)" + ] + }, + "95": { + "op": "*", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "b#0", + "{*}" + ], + "defined_out": [ + "{*}" + ] + }, + "96": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "b#0", + "c#0", + "c#0 (copy)" + ], + "defined_out": [ + "c#0", + "c#0 (copy)" + ] + }, + "97": { + "op": "cover 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "c#0" + ], + "defined_out": [ + "b#0", + "c#0" + ] + }, + "99": { + "op": "<", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%0#0" + ], + "defined_out": [ + "tmp%0#0" + ] + }, + "100": { + "op": "bz test_else_body@2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ] + }, + "103": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "105": { + "op": "frame_dig -2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)", + "y#0 (copy)" + ], + "defined_out": [ + "y#0 (copy)" + ] + }, + "107": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "{+}" + ], + "defined_out": [ + "{+}" + ] + }, + "108": { + "op": "frame_bury 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "a#0" + ] + }, + "110": { + "op": "b test_after_if_else@11" + }, + "113": { + "block": "test_else_body@2", + "op": "frame_dig 4", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "115": { + "op": "frame_dig 6", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)", + "c#0 (copy)" + ], + "defined_out": [ + "c#0 (copy)" + ] + }, + "117": { + "op": "<", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%1#0" + ], + "defined_out": [ + "tmp%1#0" + ] + }, + "118": { + "op": "bz test_else_body@4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ] + }, + "121": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "123": { + "op": "frame_dig -1", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)", + "z#0 (copy)" + ], + "defined_out": [ + "z#0 (copy)" + ] + }, + "125": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "{+}" + ], + "defined_out": [ + "{+}" + ] + }, + "126": { + "op": "frame_bury 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "a#0" + ] + }, + "128": { + "op": "b test_after_if_else@10" + }, + "131": { + "block": "test_else_body@4", + "op": "frame_dig 5", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "133": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0 (copy)", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "135": { + "op": "<", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%2#0" + ], + "defined_out": [ + "tmp%2#0" + ] + }, + "136": { + "op": "bz test_else_body@6", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ] + }, + "139": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "141": { + "op": "pushint 3", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)", + "3" + ], + "defined_out": [ + "3" + ] + }, + "143": { + "op": "*", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "{*}" + ], + "defined_out": [ + "{*}" + ] + }, + "144": { + "op": "frame_bury 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "a#0" + ] + }, + "146": { + "op": "b test_after_if_else@10" + }, + "149": { + "block": "test_else_body@6", + "op": "frame_dig 5", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "151": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0", + "b#0 (copy)" + ] + }, + "152": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "b#0 (copy)", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "154": { + "op": ">", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "tmp%3#0" + ], + "defined_out": [ + "tmp%3#0" + ] + }, + "155": { + "op": "swap", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%3#0", + "b#0" + ], + "defined_out": [ + "b#0" + ] + }, + "156": { + "op": "frame_bury 3", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%3#0" + ], + "defined_out": [ + "b#10", + "tmp%3#0" + ] + }, + "158": { + "op": "bz test_after_if_else@8", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ] + }, + "161": { + "op": "frame_dig 5", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "163": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0 (copy)", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "165": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0" + ], + "defined_out": [ + "b#0" + ] + }, + "166": { + "op": "frame_bury 3", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "b#10" + ] + }, + "168": { + "block": "test_after_if_else@8", + "op": "frame_dig 3", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#10 (copy)" + ], + "defined_out": [ + "b#10 (copy)" + ] + }, + "170": { + "op": "frame_bury 5", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "b#0" + ] + }, + "172": { + "block": "test_after_if_else@11", + "op": "frame_dig 4", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "174": { + "op": "frame_dig 5", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "176": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%4#0" + ], + "defined_out": [ + "tmp%4#0" + ] + }, + "177": { + "op": "frame_dig 6", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%4#0", + "c#0 (copy)" + ], + "defined_out": [ + "c#0 (copy)" + ] + }, + "179": { + "op": "<", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%5#0" + ], + "defined_out": [ + "tmp%5#0" + ] + }, + "180": { + "op": "bz test_else_body@13", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ] + }, + "183": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "185": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0", + "a#0 (copy)" + ] + }, + "186": { + "op": "frame_dig -2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "a#0 (copy)", + "y#0 (copy)" + ], + "defined_out": [ + "y#0 (copy)" + ] + }, + "188": { + "op": "callsub some_func", + "callsub": "examples.debug.contract.some_func", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%6#0" + ], + "defined_out": [ + "a#0", + "tmp%6#0" + ] + }, + "191": { + "op": "*", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "{*}" + ], + "defined_out": [ + "{*}" + ] + }, + "192": { + "op": "frame_bury 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "a#0" + ] + }, + "194": { + "op": "b test_after_if_else@14" + }, + "197": { + "block": "test_else_body@13", + "op": "frame_dig 5", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "199": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0", + "b#0 (copy)" + ] + }, + "200": { + "op": "frame_dig -1", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "b#0 (copy)", + "z#0 (copy)" + ], + "defined_out": [ + "z#0 (copy)" + ] + }, + "202": { + "op": "callsub some_func", + "callsub": "examples.debug.contract.some_func", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "tmp%7#0" + ], + "defined_out": [ + "b#0", + "tmp%7#0" + ] + }, + "205": { + "op": "*", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "{*}" + ], + "defined_out": [ + "{*}" + ] + }, + "206": { + "op": "frame_bury 5", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "b#0" + ] + }, + "208": { + "block": "test_after_if_else@14", + "op": "frame_dig 5", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "210": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0", + "b#0 (copy)" + ] + }, + "211": { + "op": "callsub itoa", + "callsub": "examples.debug.contract.itoa", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "{itoa}" + ], + "defined_out": [ + "{itoa}" + ] + }, + "214": { + "op": "frame_bury 0", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0" + ], + "defined_out": [ + "bee#0" + ] + }, + "216": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "b#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "218": { + "op": "dup" + }, + "219": { + "op": "uncover 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "a#0 (copy)", + "b#0" + ], + "defined_out": [ + "a#0", + "a#0 (copy)", + "b#0" + ] + }, + "221": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "{+}" + ], + "defined_out": [ + "{+}" + ] + }, + "222": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "c#0", + "c#0 (copy)" + ], + "defined_out": [ + "c#0", + "c#0 (copy)" + ] + }, + "223": { + "op": "frame_bury 6", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "c#0" + ], + "defined_out": [ + "c#0" + ] + }, + "225": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "c#0", + "c#0 (copy)" + ], + "defined_out": [ + "c#0 (copy)" + ] + }, + "226": { + "op": "callsub itoa", + "callsub": "examples.debug.contract.itoa", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "c#0", + "{itoa}" + ], + "defined_out": [ + "{itoa}" + ] + }, + "229": { + "op": "frame_bury 1", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "c#0" + ], + "defined_out": [ + "cea#0" + ] + }, + "231": { + "op": "dig 1", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "233": { + "op": ">", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%8#0" + ], + "defined_out": [ + "c#0", + "tmp%8#0" + ] + }, + "234": { + "op": "swap", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%8#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "235": { + "op": "frame_bury 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%8#0" + ], + "defined_out": [ + "a#30", + "tmp%8#0" + ] + }, + "237": { + "op": "bz test_after_if_else@16", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ] + }, + "240": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "242": { + "op": "frame_dig 6", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)", + "c#0 (copy)" + ], + "defined_out": [ + "c#0 (copy)" + ] + }, + "244": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "245": { + "op": "frame_bury 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "a#30" + ] + }, + "247": { + "block": "test_after_if_else@16", + "op": "frame_dig 2", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#30 (copy)" + ], + "defined_out": [ + "a#30 (copy)" + ] + }, + "249": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0", + "a#0 (copy)" + ] + }, + "250": { + "op": "frame_bury 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "252": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "253": { + "op": "frame_dig 5", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "a#0 (copy)", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "255": { + "op": "<", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%9#0" + ], + "defined_out": [ + "tmp%9#0" + ] + }, + "256": { + "op": "swap", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%9#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "257": { + "op": "frame_bury 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%9#0" + ], + "defined_out": [ + "a#30", + "tmp%9#0" + ] + }, + "259": { + "op": "bz test_after_if_else@18", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ] + }, + "262": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "264": { + "op": "frame_dig 5", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "266": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "267": { + "op": "frame_bury 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "a#30" + ] + }, + "269": { + "block": "test_after_if_else@18", + "op": "frame_dig 2", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#30 (copy)" + ], + "defined_out": [ + "a#30 (copy)" + ] + }, + "271": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0", + "a#0 (copy)" + ] + }, + "272": { + "op": "frame_bury 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "274": { + "op": "frame_dig 5", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "276": { + "op": "frame_dig 6", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "b#0 (copy)", + "c#0 (copy)" + ], + "defined_out": [ + "c#0 (copy)" + ] + }, + "278": { + "op": "+", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%10#0" + ], + "defined_out": [ + "tmp%10#0" + ] + }, + "279": { + "op": "dig 1", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%10#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "281": { + "op": ">", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%11#0" + ], + "defined_out": [ + "tmp%11#0" + ] + }, + "282": { + "op": "swap", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%11#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "283": { + "op": "frame_bury 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "tmp%11#0" + ], + "defined_out": [ + "a#30", + "tmp%11#0" + ] + }, + "285": { + "op": "bz test_after_if_else@20", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ] + }, + "288": { + "op": "frame_dig 4", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "290": { + "op": "frame_dig -1", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0 (copy)", + "z#0 (copy)" + ], + "defined_out": [ + "z#0 (copy)" + ] + }, + "292": { + "op": "*", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "293": { + "op": "frame_bury 2", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "defined_out": [ + "a#30" + ] + }, + "295": { + "block": "test_after_if_else@20", + "op": "frame_dig 2", + "stack_in": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0" + ], + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "297": { + "op": "dup", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "298": { + "op": "callsub itoa", + "callsub": "examples.debug.contract.itoa", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "aye#0" + ], + "defined_out": [ + "aye#0" + ] + }, + "301": { + "op": "bytec 0", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "aye#0", + "\" \"" + ], + "defined_out": [ + "\" \"" + ] + }, + "302": { + "op": "concat", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%12#0" + ], + "defined_out": [ + "tmp%12#0" + ] + }, + "303": { + "op": "frame_dig 0", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%12#0", + "bee#0 (copy)" + ], + "defined_out": [ + "bee#0 (copy)" + ] + }, + "305": { + "op": "concat", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%13#0" + ], + "defined_out": [ + "tmp%13#0" + ] + }, + "306": { + "op": "bytec 0", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%13#0", + "\" \"" + ], + "defined_out": [ + "\" \"" + ] + }, + "307": { + "op": "concat", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%14#0" + ], + "defined_out": [ + "tmp%14#0" + ] + }, + "308": { + "op": "frame_dig 1", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%14#0", + "cea#0 (copy)" + ], + "defined_out": [ + "cea#0 (copy)" + ] + }, + "310": { + "op": "concat", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0", + "tmp%15#0" + ], + "defined_out": [ + "tmp%15#0" + ] + }, + "311": { + "op": "log", + "stack_out": [ + "bee#0", + "cea#0", + "a#30", + "b#10", + "a#0", + "b#0", + "c#0", + "a#0" + ], + "defined_out": [ + "a#0" + ] + }, + "312": { + "op": "frame_bury 0" + }, + "314": { + "op": "retsub", + "retsub": true + }, + "315": { + "subroutine": "examples.debug.contract.some_func", + "block": "some_func", + "op": "proto 2 1", + "params": { + "a#0": "uint64", + "b#0": "uint64" + }, + "stack_in": [] + }, + "318": { + "op": "frame_dig -2", + "stack_out": [ + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "320": { + "op": "frame_dig -1", + "stack_out": [ + "a#0 (copy)", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "322": { + "op": "+", + "stack_out": [ + "{+}" + ], + "defined_out": [ + "{+}" + ] + }, + "323": { + "op": "frame_bury -2", + "stack_out": [] + }, + "325": { + "op": "frame_dig -1", + "stack_out": [ + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "327": { + "op": "frame_dig -2", + "stack_out": [ + "b#0 (copy)", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "329": { + "op": "*", + "stack_out": [ + "{*}" + ], + "defined_out": [ + "{*}" + ] + }, + "330": { + "op": "frame_bury -1", + "stack_out": [] + }, + "332": { + "op": "frame_dig -2", + "stack_out": [ + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "334": { + "op": "frame_dig -1", + "stack_out": [ + "a#0 (copy)", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "336": { + "op": "+", + "stack_out": [ + "{+}" + ], + "defined_out": [ + "{+}" + ] + }, + "337": { + "op": "dup" + }, + "338": { + "op": "frame_bury -2", + "stack_out": [ + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "340": { + "op": "pushint 2", + "stack_out": [ + "a#0 (copy)", + "2" + ], + "defined_out": [ + "2" + ] + }, + "342": { + "op": "*", + "stack_out": [ + "{*}" + ], + "defined_out": [ + "{*}" + ] + }, + "343": { + "op": "dup" + }, + "344": { + "op": "frame_bury -2", + "stack_out": [ + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "346": { + "op": "frame_dig -1", + "stack_out": [ + "a#0 (copy)", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "348": { + "op": "+", + "stack_out": [ + "x#0" + ], + "defined_out": [ + "x#0" + ] + }, + "349": { + "op": "frame_dig -2", + "stack_out": [ + "x#0", + "a#0 (copy)" + ], + "defined_out": [ + "a#0 (copy)" + ] + }, + "351": { + "op": "frame_dig -1", + "stack_out": [ + "x#0", + "a#0 (copy)", + "b#0 (copy)" + ], + "defined_out": [ + "b#0 (copy)" + ] + }, + "353": { + "op": "*", + "stack_out": [ + "x#0", + "y#0" + ], + "defined_out": [ + "y#0" + ] + }, + "354": { + "op": "dup2", + "stack_out": [ + "x#0", + "y#0", + "x#0 (copy)", + "y#0 (copy)" + ], + "defined_out": [ + "x#0 (copy)", + "y#0 (copy)" + ] + }, + "355": { + "op": "<", + "stack_out": [ + "x#0", + "y#0", + "{<}" + ], + "defined_out": [ + "{<}" + ] + }, + "356": { + "op": "swap", + "stack_out": [ + "x#0", + "tmp%0#0", + "y#0" + ], + "defined_out": [ + "tmp%0#0", + "y#0" + ] + }, + "357": { + "op": "cover 2", + "stack_out": [ + "y#0", + "x#0", + "tmp%0#0" + ], + "defined_out": [ + "tmp%0#0", + "x#0" + ] + }, + "359": { + "op": "select", + "stack_out": [ + "tmp%1#0" + ], + "defined_out": [ + "tmp%1#0" + ] + }, + "360": { + "op": "retsub", + "retsub": true + }, + "361": { + "subroutine": "examples.debug.contract.itoa", + "block": "itoa", + "op": "proto 1 1", + "params": { + "i#0": "uint64" + }, + "stack_in": [] + }, + "364": { + "op": "frame_dig -1", + "stack_out": [ + "i#0 (copy)" + ], + "defined_out": [ + "i#0 (copy)" + ] + }, + "366": { + "op": "intc 2", + "stack_out": [ + "i#0 (copy)", + "10" + ], + "defined_out": [ + "10" + ] + }, + "367": { + "op": "<", + "stack_out": [ + "tmp%0#0" + ], + "defined_out": [ + "tmp%0#0" + ] + }, + "368": { + "op": "bz itoa_after_if_else@2", + "stack_out": [] + }, + "371": { + "op": "frame_dig -1", + "stack_out": [ + "i#0 (copy)" + ], + "defined_out": [ + "i#0 (copy)" + ] + }, + "373": { + "op": "intc 0", + "stack_out": [ + "i#0 (copy)", + "1" + ], + "defined_out": [ + "1" + ] + }, + "374": { + "op": "+", + "stack_out": [ + "index_plus_1%0#0" + ], + "defined_out": [ + "index_plus_1%0#0" + ] + }, + "375": { + "op": "bytec 1", + "stack_out": [ + "index_plus_1%0#0", + "0x30313233343536373839" + ], + "defined_out": [ + "0x30313233343536373839" + ] + }, + "376": { + "op": "frame_dig -1", + "stack_out": [ + "index_plus_1%0#0", + "0x30313233343536373839", + "i#0 (copy)" + ], + "defined_out": [ + "i#0 (copy)" + ] + }, + "378": { + "op": "uncover 2", + "stack_out": [ + "0x30313233343536373839", + "i#0 (copy)", + "index_plus_1%0#0" + ], + "defined_out": [ + "index_plus_1%0#0" + ] + }, + "380": { + "op": "substring3", + "stack_out": [ + "tmp%1#0" + ], + "defined_out": [ + "tmp%1#0" + ] + }, + "381": { + "op": "retsub", + "retsub": true + }, + "382": { + "block": "itoa_after_if_else@2", + "op": "frame_dig -1", + "stack_in": [], + "stack_out": [ + "i#0 (copy)" + ], + "defined_out": [ + "i#0 (copy)" + ] + }, + "384": { + "op": "intc 2", + "stack_out": [ + "i#0 (copy)", + "10" + ], + "defined_out": [ + "10" + ] + }, + "385": { + "op": "/", + "stack_out": [ + "tmp%2#0" + ], + "defined_out": [ + "tmp%2#0" + ] + }, + "386": { + "op": "callsub itoa", + "callsub": "examples.debug.contract.itoa", + "stack_out": [ + "tmp%3#0" + ], + "defined_out": [ + "tmp%3#0" + ] + }, + "389": { + "op": "frame_dig -1", + "stack_out": [ + "tmp%3#0", + "i#0 (copy)" + ], + "defined_out": [ + "i#0 (copy)" + ] + }, + "391": { + "op": "intc 2", + "stack_out": [ + "tmp%3#0", + "i#0 (copy)", + "10" + ], + "defined_out": [ + "10" + ] + }, + "392": { + "op": "%", + "stack_out": [ + "tmp%3#0", + "tmp%4#0" + ], + "defined_out": [ + "tmp%4#0" + ] + }, + "393": { + "op": "dup", + "stack_out": [ + "tmp%3#0", + "tmp%4#0", + "tmp%4#0 (copy)" + ], + "defined_out": [ + "tmp%4#0 (copy)" + ] + }, + "394": { + "op": "intc 0", + "stack_out": [ + "tmp%3#0", + "tmp%4#0", + "tmp%4#0 (copy)", + "1" + ], + "defined_out": [ + "1" + ] + }, + "395": { + "op": "+", + "stack_out": [ + "tmp%3#0", + "tmp%4#0", + "index_plus_1%1#0" + ], + "defined_out": [ + "index_plus_1%1#0" + ] + }, + "396": { + "op": "bytec 1", + "stack_out": [ + "tmp%3#0", + "tmp%4#0", + "index_plus_1%1#0", + "0x30313233343536373839" + ], + "defined_out": [ + "0x30313233343536373839" + ] + }, + "397": { + "op": "cover 2", + "stack_out": [ + "tmp%3#0", + "0x30313233343536373839", + "tmp%4#0", + "index_plus_1%1#0" + ], + "defined_out": [ + "index_plus_1%1#0", + "tmp%4#0" + ] + }, + "399": { + "op": "substring3", + "stack_out": [ + "tmp%3#0", + "tmp%5#0" + ], + "defined_out": [ + "tmp%3#0", + "tmp%5#0" + ] + }, + "400": { + "op": "concat", + "stack_out": [ + "tmp%6#0" + ], + "defined_out": [ + "tmp%6#0" + ] + }, + "401": { + "op": "retsub", + "retsub": true + } + } +} \ No newline at end of file diff --git a/sampleWorkspace/puya/contract.py b/sampleWorkspace/puya/contract.py new file mode 100644 index 0000000..3bb6207 --- /dev/null +++ b/sampleWorkspace/puya/contract.py @@ -0,0 +1,59 @@ +from algopy import Bytes, TemplateVar, UInt64, arc4, log, subroutine + + +class DebugContract(arc4.ARC4Contract): + @arc4.abimethod + def test(self, x: UInt64, y: UInt64, z: UInt64) -> UInt64: + + a = x * TemplateVar[UInt64]("A_MULT") + b = x + y + c = b * z + if b < c: + a = a + y + elif a < c: + a = a + z + elif b < a: + a = a * 3 + elif b > a: + b = b + a + + if a + b < c: + a *= some_func(a, y) + else: + b *= some_func(b, z) + + bee = itoa(b) + c = a + b + cea = itoa(c) + + if a < c: + a += c + if a < b: + a += b + if a < b + c: + a = a * z + + aye = itoa(a) + log(aye, bee, cea, sep=" ") + + return a + + +@subroutine +def some_func(a: UInt64, b: UInt64) -> UInt64: + a += b + b *= a + a += b + a *= 2 + x = a + b + y = a * b + return x if x < y else y + + +@subroutine +def itoa(i: UInt64) -> Bytes: + digits = Bytes(b"0123456789") + radix = digits.length + if i < radix: + return digits[i] + return itoa(i // radix) + digits[i % radix] diff --git a/sampleWorkspace/puya/contract.simulate.json b/sampleWorkspace/puya/contract.simulate.json new file mode 100644 index 0000000..22933c6 --- /dev/null +++ b/sampleWorkspace/puya/contract.simulate.json @@ -0,0 +1,3473 @@ +{ + "eval-overrides": { + "allow-empty-signatures": true, + "max-log-calls": 2048, + "max-log-size": 65536 + }, + "exec-trace-config": { + "enable": true, + "scratch-change": true, + "stack-change": true, + "state-change": true + }, + "initial-states": {}, + "last-round": 3574, + "txn-groups": [ + { + "app-budget-added": 700, + "app-budget-consumed": 348, + "txn-results": [ + { + "app-budget-consumed": 348, + "exec-trace": { + "approval-program-hash": "e6kn9Vrk26npvLg4tFQtmi60V3cGZaVPw0UtLeEJVHU=", + "approval-program-trace": [ + { + "pc": 1 + }, + { + "pc": 8 + }, + { + "pc": 23 + }, + { + "pc": 27 + }, + { + "pc": 30, + "stack-additions": [ + { + "type": 2, + "uint": 4 + } + ] + }, + { + "pc": 32, + "stack-pop-count": 1 + }, + { + "pc": 35, + "stack-additions": [ + { + "bytes": "U1dL/w==", + "type": 1 + } + ] + }, + { + "pc": 41, + "stack-additions": [ + { + "bytes": "U1dL/w==", + "type": 1 + } + ] + }, + { + "pc": 44, + "stack-pop-count": 2 + }, + { + "pc": 50, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 52, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 53, + "stack-pop-count": 1 + }, + { + "pc": 54, + "stack-additions": [ + { + "type": 2, + "uint": 7460 + } + ] + }, + { + "pc": 56, + "stack-pop-count": 1 + }, + { + "pc": 57, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 60, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 61, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAI=", + "type": 1 + } + ] + }, + { + "pc": 64, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 65, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAM=", + "type": 1 + } + ] + }, + { + "pc": 68, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 69 + }, + { + "pc": 97 + }, + { + "pc": 100, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 101, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 102, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 104, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 105, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 107, + "stack-additions": [ + { + "type": 2, + "uint": 1000 + } + ] + }, + { + "pc": 108, + "stack-additions": [ + { + "type": 2, + "uint": 1000 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 109, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 111, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 113, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 114, + "stack-additions": [ + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 116, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 118, + "stack-additions": [ + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 119, + "stack-additions": [ + { + "type": 2, + "uint": 9 + }, + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 120, + "stack-additions": [ + { + "type": 2, + "uint": 9 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 122, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 123, + "stack-pop-count": 1 + }, + { + "pc": 126, + "stack-additions": [ + { + "type": 2, + "uint": 1000 + } + ] + }, + { + "pc": 128, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 130, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 131, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 133 + }, + { + "pc": 195, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + } + ] + }, + { + "pc": 197, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 199, + "stack-additions": [ + { + "type": 2, + "uint": 1005 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2, + "uint": 9 + } + ] + }, + { + "pc": 202, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 203, + "stack-pop-count": 1 + }, + { + "pc": 220, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 222, + "stack-additions": [ + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 225 + }, + { + "pc": 338 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 343, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 346, + "stack-additions": [ + { + "type": 2, + "uint": 6 + }, + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 350, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 352, + "stack-additions": [ + { + "type": 2, + "uint": 18 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 353, + "stack-additions": [ + { + "type": 2, + "uint": 18 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 357, + "stack-additions": [ + { + "type": 2, + "uint": 18 + } + ] + }, + { + "pc": 359, + "stack-additions": [ + { + "type": 2, + "uint": 24 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 24 + }, + { + "type": 2, + "uint": 24 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 361, + "stack-additions": [ + { + "type": 2, + "uint": 24 + }, + { + "type": 2, + "uint": 18 + }, + { + "type": 2, + "uint": 24 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 365, + "stack-additions": [ + { + "type": 2, + "uint": 48 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 366, + "stack-additions": [ + { + "type": 2, + "uint": 48 + }, + { + "type": 2, + "uint": 48 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 367, + "stack-additions": [ + { + "type": 2, + "uint": 48 + }, + { + "type": 2, + "uint": 18 + }, + { + "type": 2, + "uint": 48 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 369, + "stack-additions": [ + { + "type": 2, + "uint": 18 + } + ] + }, + { + "pc": 371, + "stack-additions": [ + { + "type": 2, + "uint": 66 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 372, + "stack-additions": [ + { + "type": 2, + "uint": 48 + } + ] + }, + { + "pc": 374, + "stack-additions": [ + { + "type": 2, + "uint": 18 + } + ] + }, + { + "pc": 376, + "stack-additions": [ + { + "type": 2, + "uint": 864 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 377, + "stack-additions": [ + { + "type": 2, + "uint": 66 + }, + { + "type": 2, + "uint": 864 + }, + { + "type": 2, + "uint": 66 + }, + { + "type": 2, + "uint": 864 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 378, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 379, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 864 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 380, + "stack-additions": [ + { + "type": 2, + "uint": 864 + }, + { + "type": 2, + "uint": 66 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 382, + "stack-additions": [ + { + "type": 2, + "uint": 66 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 383, + "stack-additions": [ + { + "type": 2, + "uint": 66 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 228, + "stack-additions": [ + { + "type": 2, + "uint": 198 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 229, + "stack-additions": [ + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "type": 2, + "uint": 198 + } + ] + }, + { + "pc": 233, + "stack-additions": [ + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 198 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 234 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 198 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 405, + "stack-additions": [ + { + "type": 2, + "uint": 198 + } + ] + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "type": 2, + "uint": 19 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 409 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 19 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 405, + "stack-additions": [ + { + "type": 2, + "uint": 19 + } + ] + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 409 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 394, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 396, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 397, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 398, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 399, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 401, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 403, + "stack-additions": [ + { + "bytes": "MQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 404, + "stack-additions": [ + { + "bytes": "MQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 412, + "stack-additions": [ + { + "type": 2, + "uint": 19 + } + ] + }, + { + "pc": 414, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 415, + "stack-additions": [ + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2, + "uint": 9 + }, + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2, + "uint": 9 + }, + { + "type": 2, + "uint": 10 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "OQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 423, + "stack-additions": [ + { + "bytes": "MTk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 424, + "stack-additions": [ + { + "bytes": "MTk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 412, + "stack-additions": [ + { + "type": 2, + "uint": 198 + } + ] + }, + { + "pc": 414, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 415, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 9 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "OA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 423, + "stack-additions": [ + { + "bytes": "MTk4", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 424, + "stack-additions": [ + { + "bytes": "MTk4", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 237, + "stack-additions": [ + { + "bytes": "MTk4", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 1 + }, + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 9 + }, + { + "type": 2, + "uint": 198 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 239, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + } + ] + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 1002 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 198 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 245, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + }, + { + "type": 2, + "uint": 1200 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + }, + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 1200 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + }, + { + "type": 2, + "uint": 1200 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 249 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 405, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + } + ] + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "type": 2, + "uint": 120 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 409 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 120 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 405, + "stack-additions": [ + { + "type": 2, + "uint": 120 + } + ] + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "type": 2, + "uint": 12 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 409 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 12 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 405, + "stack-additions": [ + { + "type": 2, + "uint": 12 + } + ] + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 409 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 394, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 396, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 397, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 398, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 399, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 401, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 403, + "stack-additions": [ + { + "bytes": "MQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 404, + "stack-additions": [ + { + "bytes": "MQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 412, + "stack-additions": [ + { + "type": 2, + "uint": 12 + } + ] + }, + { + "pc": 414, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 415, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 423, + "stack-additions": [ + { + "bytes": "MTI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 424, + "stack-additions": [ + { + "bytes": "MTI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 412, + "stack-additions": [ + { + "type": 2, + "uint": 120 + } + ] + }, + { + "pc": 414, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 415, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "MA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 423, + "stack-additions": [ + { + "bytes": "MTIw", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 424, + "stack-additions": [ + { + "bytes": "MTIw", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 412, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + } + ] + }, + { + "pc": 414, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 415, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "MA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 423, + "stack-additions": [ + { + "bytes": "MTIwMA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 424, + "stack-additions": [ + { + "bytes": "MTIwMA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 252, + "stack-additions": [ + { + "bytes": "MTIwMA==", + "type": 1 + }, + { + "type": 1 + }, + { + "type": 1 + }, + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 1200 + }, + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 1200 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 254, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + } + ] + }, + { + "pc": 256, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1002 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 258, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + }, + { + "type": 1 + }, + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 1200 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 260, + "stack-pop-count": 1 + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + } + ] + }, + { + "pc": 267, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 268, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 1 + }, + { + "type": 2, + "uint": 1002 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 1200 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 270, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ] + }, + { + "pc": 272, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 273, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 1200 + }, + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 276, + "stack-additions": [ + { + "type": 2, + "uint": 198 + } + ] + }, + { + "pc": 278, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 279, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 1 + }, + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 1200 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 282, + "stack-pop-count": 1 + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ] + }, + { + "pc": 294, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 295, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 1200 + }, + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2, + "uint": 198 + } + ] + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2, + "uint": 1200 + } + ] + }, + { + "pc": 301, + "stack-additions": [ + { + "type": 2, + "uint": 1398 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 302, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ] + }, + { + "pc": 304, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 305, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 306, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 1 + }, + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 1200 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 308, + "stack-pop-count": 1 + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 321 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 405, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ] + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "type": 2, + "uint": 220 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 409 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 220 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 405, + "stack-additions": [ + { + "type": 2, + "uint": 220 + } + ] + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "type": 2, + "uint": 22 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 409 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 22 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 405, + "stack-additions": [ + { + "type": 2, + "uint": 22 + } + ] + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 409 + }, + { + "pc": 384 + }, + { + "pc": 387, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 389, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 390, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 391, + "stack-pop-count": 1 + }, + { + "pc": 394, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 396, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 397, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 398, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 399, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 401, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 403, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 404, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 412, + "stack-additions": [ + { + "type": 2, + "uint": 22 + } + ] + }, + { + "pc": 414, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 415, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 423, + "stack-additions": [ + { + "bytes": "MjI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 424, + "stack-additions": [ + { + "bytes": "MjI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 412, + "stack-additions": [ + { + "type": 2, + "uint": 220 + } + ] + }, + { + "pc": 414, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 415, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "MA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 423, + "stack-additions": [ + { + "bytes": "MjIw", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 424, + "stack-additions": [ + { + "bytes": "MjIw", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 412, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ] + }, + { + "pc": 414, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 415, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + } + ] + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "MDEyMzQ1Njc4OQ==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 423, + "stack-additions": [ + { + "bytes": "MjIwMg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 424, + "stack-additions": [ + { + "bytes": "MjIwMg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 324, + "stack-additions": [ + { + "bytes": "IA==", + "type": 1 + } + ] + }, + { + "pc": 325, + "stack-additions": [ + { + "bytes": "MjIwMiA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 326, + "stack-additions": [ + { + "bytes": "MTk4", + "type": 1 + } + ] + }, + { + "pc": 328, + "stack-additions": [ + { + "bytes": "MjIwMiAxOTg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 329, + "stack-additions": [ + { + "bytes": "IA==", + "type": 1 + } + ] + }, + { + "pc": 330, + "stack-additions": [ + { + "bytes": "MjIwMiAxOTgg", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 331, + "stack-additions": [ + { + "bytes": "MTIwMA==", + "type": 1 + } + ] + }, + { + "pc": 333, + "stack-additions": [ + { + "bytes": "MjIwMiAxOTggMTIwMA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 334, + "stack-pop-count": 1 + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + }, + { + "bytes": "MTIwMA==", + "type": 1 + }, + { + "type": 2, + "uint": 2202 + }, + { + "type": 1 + }, + { + "type": 2, + "uint": 2202 + }, + { + "type": 2, + "uint": 198 + }, + { + "type": 2, + "uint": 1200 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2202 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 72, + "stack-additions": [ + { + "bytes": "AAAAAAAACJo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 73, + "stack-additions": [ + { + "bytes": "FR98dQ==", + "type": 1 + } + ] + }, + { + "pc": 79, + "stack-additions": [ + { + "bytes": "FR98dQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAACJo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 80, + "stack-additions": [ + { + "bytes": "FR98dQAAAAAAAAia", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 81, + "stack-pop-count": 1 + }, + { + "pc": 82, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 83, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 26, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + } + ] + }, + "txn-result": { + "logs": [ + "MjIwMiAxOTggMTIwMA==", + "FR98dQAAAAAAAAia" + ], + "pool-error": "", + "txn": { + "sig": "v22tQlWd3nvG42pNY8yFT2rNd/Rzpl+z2dS8rGVz54bLGmfgBPsPdw59ancNW3JknUqOjWwsh/M7PlPHBMHcAw==", + "txn": { + "apaa": [ + "U1dL/w==", + "AAAAAAAAAAE=", + "AAAAAAAAAAI=", + "AAAAAAAAAAM=" + ], + "apid": 7460, + "fee": 1000, + "fv": 3574, + "gen": "dockernet-v1", + "gh": "hqqP8CSm+18MWN31F72IIRdfgChcnIHGnpMzjdWPwE4=", + "lv": 4574, + "snd": "7DWST2CMNWSHVI3MREDHRJL2UAODKSGKGF36ZH5HHAWJXYLTXX5HMENH2M", + "type": "appl" + } + } + } + } + ] + } + ], + "version": 2 +} \ No newline at end of file diff --git a/sampleWorkspace/puya/sources.json b/sampleWorkspace/puya/sources.json new file mode 100644 index 0000000..38ee6ee --- /dev/null +++ b/sampleWorkspace/puya/sources.json @@ -0,0 +1,8 @@ +{ + "txn-group-sources": [ + { + "sourcemap-location": "DebugContract.approval.puya.map", + "hash": "e6kn9Vrk26npvLg4tFQtmi60V3cGZaVPw0UtLeEJVHU=" + } + ] +} \ No newline at end of file diff --git a/src/common/debugSession.ts b/src/common/debugSession.ts index 71e7093..a3d41d9 100644 --- a/src/common/debugSession.ts +++ b/src/common/debugSession.ts @@ -14,7 +14,6 @@ import { } from '@vscode/debugadapter'; import { DebugProtocol } from '@vscode/debugprotocol'; import { AvmRuntime, IRuntimeBreakpoint } from './runtime'; -import { ProgramStackFrame } from './traceReplayEngine'; import { Subject } from 'await-notify'; import * as algosdk from 'algosdk'; import { FileAccessor } from './fileAccessor'; @@ -64,6 +63,7 @@ export class AvmDebugSession extends DebugSession { | AppStateScope | AppSpecificStateScope | AvmValueReference + | PuyaScope >(); private _sourceHandles = new Handles<{ @@ -327,60 +327,54 @@ export class AvmDebugSession extends DebugSession { args: DebugProtocol.StackTraceArguments, ): void { try { - const startFrame = - typeof args.startFrame === 'number' ? args.startFrame : 0; - const maxLevels = typeof args.levels === 'number' ? args.levels : 1000; + const startFrame = args.startFrame || 0; + const maxLevels = args.levels || 1000; - // The runtime has a stack where the latest call is the last element. We need to return the - // reverse of that. - const adjustedEndFrame = this._runtime.stackLength() - startFrame; - const adjustedStartFrame = Math.max(0, adjustedEndFrame - maxLevels); - - const stk = this._runtime.stack(adjustedStartFrame, adjustedEndFrame); + const stk = this._runtime.stack(startFrame, startFrame + maxLevels); const stackFramesForResponse = stk.frames.map((frame, index) => { - const id = adjustedStartFrame + index; - - const sourceFile = frame.sourceFile(); - let source: Source | undefined = undefined; - if (typeof sourceFile.path !== 'undefined') { - source = this.createSource(sourceFile.path); - } else if (typeof sourceFile.content !== 'undefined') { - source = this.createSourceWithContent( - sourceFile.name, - sourceFile.content, - sourceFile.contentMimeType, + const id = startFrame + index; + + const protocolFrame = new StackFrame(id, frame.name); + const sourceFile = frame.source; + if (sourceFile !== undefined) { + let source: Source | undefined = undefined; + + if (typeof sourceFile.path !== 'undefined') { + source = this.createSource(sourceFile.path); + } else if (typeof sourceFile.content !== 'undefined') { + source = this.createSourceWithContent( + sourceFile.name, + sourceFile.content, + sourceFile.contentMimeType, + ); + } + protocolFrame.source = source; + protocolFrame.line = this.convertDebuggerLineToClient( + sourceFile.line, ); - } - const sourceLocation = frame.sourceLocation(); - const line = this.convertDebuggerLineToClient(sourceLocation.line); - const column = - typeof sourceLocation.column !== 'undefined' - ? this.convertDebuggerColumnToClient(sourceLocation.column) - : undefined; - - const protocolFrame = new StackFrame( - id, - frame.name(), - source, - line, - column, - ); - protocolFrame.endLine = - typeof sourceLocation.endLine !== 'undefined' - ? this.convertDebuggerLineToClient(sourceLocation.endLine) - : undefined; - protocolFrame.endColumn = - typeof sourceLocation.endColumn !== 'undefined' - ? this.convertDebuggerColumnToClient(sourceLocation.endColumn) - : undefined; + if (typeof sourceFile.column !== 'undefined') { + protocolFrame.column = this.convertDebuggerColumnToClient( + sourceFile.column, + ); + } + if (typeof sourceFile.endLine !== 'undefined') { + protocolFrame.endLine = this.convertDebuggerLineToClient( + sourceFile.endLine, + ); + } + if (typeof sourceFile.endColumn !== 'undefined') { + protocolFrame.endColumn = this.convertDebuggerColumnToClient( + sourceFile.endColumn, + ); + } + } return protocolFrame; }); - stackFramesForResponse.reverse(); response.body = { - totalFrames: stk.count, + totalFrames: stk.total, stackFrames: stackFramesForResponse, // 4 options for 'totalFrames': //omit totalFrames property: // VS Code has to probe/guess. Should result in a max. of two requests @@ -402,11 +396,19 @@ export class AvmDebugSession extends DebugSession { const frame = this._runtime.getStackFrame(args.frameId); const scopes: DebugProtocol.Scope[] = []; - if (typeof frame !== 'undefined') { - if (frame instanceof ProgramStackFrame) { + if (frame !== undefined) { + scopes.push( + new Scope( + 'Locals', + this._variableHandles.create(new PuyaScope(args.frameId)), + false, + ), + ); + const state = this.getProgramState(args.frameId); + if (state !== undefined) { const programScope = new ProgramStateScope(args.frameId); let scopeName = 'Program State'; - const appID = frame.currentAppID(); + const appID = state.appId; if (typeof appID !== 'undefined') { scopeName += `: App ${appID}`; } @@ -445,29 +447,31 @@ export class AvmDebugSession extends DebugSession { const v = this._variableHandles.get(args.variablesReference); if (v instanceof ProgramStateScope) { - const frame = this._runtime.getStackFrame(v.frameIndex); - if (!frame || !(frame instanceof ProgramStackFrame)) { - throw new Error(`Unexpected frame: ${typeof frame}`); - } - const programState = frame.state; - - if (typeof v.specificState === 'undefined') { + const state = this.getProgramState(v.frameIndex); + if (v.specificState === 'program') { variables = [ { name: 'pc', - value: programState.pc.toString(), + value: state.pc.toString(), type: 'uint64', variablesReference: 0, evaluateName: 'pc', }, + { + name: 'op', + value: state.op || 'unknown', + type: 'string', + variablesReference: 0, + evaluateName: 'op', + }, { name: 'stack', - value: programState.stack.length === 0 ? '[]' : '[...]', + value: state.stack.length === 0 ? '[]' : '[...]', type: 'array', variablesReference: this._variableHandles.create( new ProgramStateScope(v.frameIndex, 'stack'), ), - indexedVariables: programState.stack.length, + indexedVariables: state.stack.length, presentationHint: { kind: 'data', }, @@ -487,7 +491,7 @@ export class AvmDebugSession extends DebugSession { ]; } else if (v.specificState === 'stack') { if (args.filter !== 'named') { - variables = programState.stack.map((value, index) => + variables = state.stack.map((value, index) => this.convertAvmValue(v, value, index), ); } @@ -495,7 +499,7 @@ export class AvmDebugSession extends DebugSession { const expandedScratch: algosdk.modelsv2.AvmValue[] = []; for (let i = 0; i < 256; i++) { expandedScratch.push( - programState.scratch.get(i) || + state.scratch.get(i) || new algosdk.modelsv2.AvmValue({ type: 2 }), ); } @@ -505,6 +509,18 @@ export class AvmDebugSession extends DebugSession { ); } } + } else if (v instanceof PuyaScope) { + const state = this.getProgramState(v.frameIndex); + variables = state.variables.map((variable) => { + const name = variable[0]; + const avmValue = variable[1]; + return { + name: name, + value: variableToString(avmValue), + type: avmValue.type === 1 ? 'byte[]' : 'uint64', + variablesReference: 0, + }; + }); } else if (v === 'chain') { const appIDs = this._runtime.getAppStateReferences(); variables = [ @@ -592,16 +608,13 @@ export class AvmDebugSession extends DebugSession { } } else if (v instanceof AvmValueReference) { if (v.scope instanceof ProgramStateScope) { - const frame = this._runtime.getStackFrame(v.scope.frameIndex); - if (!frame || !(frame instanceof ProgramStackFrame)) { - throw new Error(`Unexpected frame: ${typeof frame}`); - } + const state = this.getProgramState(v.scope.frameIndex); let toExpand: algosdk.modelsv2.AvmValue; if (v.scope.specificState === 'stack') { - toExpand = frame.state.stack[v.key as number]; + toExpand = state.stack[v.key as number]; } else if (v.scope.specificState === 'scratch') { toExpand = - frame.state.scratch.get(v.key as number) || + state.scratch.get(v.key as number) || new algosdk.modelsv2.AvmValue({ type: 2 }); } else { throw new Error(`Unexpected AvmValueReference scope: ${v.scope}`); @@ -676,6 +689,15 @@ export class AvmDebugSession extends DebugSession { } } + private getProgramState(frameIndex: number) { + const frame = this._runtime.getStackFrame(frameIndex); + const state = frame?.programState; + if (state === undefined) { + throw new Error(`Unexpected frame: ${typeof frame}`); + } + return state; + } + protected async evaluateRequest( response: DebugProtocol.EvaluateResponse, args: DebugProtocol.EvaluateArguments, @@ -704,20 +726,29 @@ export class AvmDebugSession extends DebugSession { scope.specificState, ); const frame = this._runtime.getStackFrame(args.frameId); - if (!frame || !(frame instanceof ProgramStackFrame)) { + const state = frame?.programState; + if (state === undefined) { reply = `Unexpected frame: ${typeof frame}`; } else { if (scope.specificState === 'pc') { rv = { name: 'pc', - value: frame.state.pc.toString(), + value: state.pc.toString(), type: 'uint64', variablesReference: 0, evaluateName: 'pc', }; + } else if (scope.specificState === 'op') { + rv = { + name: 'op', + value: state.op || 'unknown', + type: 'string', + variablesReference: 0, + evaluateName: 'op', + }; } else if (scope.specificState === 'stack') { let index = key as number; - const stackValues = frame.state.stack; + const stackValues = state.stack; if (index < 0) { const adjustedIndex = index + stackValues.length; if (adjustedIndex < 0) { @@ -746,7 +777,7 @@ export class AvmDebugSession extends DebugSession { if (0 <= index && index < 256) { rv = this.convertAvmValue( scopeWithFrame, - frame.state.scratch.get(index) || + state.scratch.get(index) || new algosdk.modelsv2.AvmValue({ type: 2 }), index, ); @@ -1184,19 +1215,20 @@ export class AvmDebugSession extends DebugSession { return new Source(fileName, undefined, id); } } - +class PuyaScope { + constructor(public readonly frameIndex: number) {} +} class ProgramStateScope { constructor( public readonly frameIndex: number, - public readonly specificState?: 'pc' | 'stack' | 'scratch', + public readonly specificState: + | 'pc' + | 'op' + | 'stack' + | 'scratch' + | 'params' + | 'program' = 'program', ) {} - - public scopeString(): string { - if (typeof this.specificState === 'undefined') { - return `program`; - } - return this.specificState; - } } type OnChainStateScope = 'chain' | 'app'; @@ -1243,7 +1275,7 @@ function evaluateNameForScope( key: number | string, ): string { if (scope instanceof ProgramStateScope) { - return `${scope.scopeString()}[${key}]`; + return `${scope.specificState}[${key}]`; } if (scope.scope === 'local') { if (typeof scope.account === 'undefined') { @@ -1260,6 +1292,9 @@ function evaluateNameToScope(name: string): [AvmValueScope, number | string] { if (name === 'pc') { return [new ProgramStateScope(-1, 'pc'), 0]; } + if (name === 'op') { + return [new ProgramStateScope(-1, 'op'), '']; + } const stackMatches = /^stack\[(-?\d+)\]$/.exec(name); if (stackMatches) { return [new ProgramStateScope(-1, 'stack'), parseInt(stackMatches[1], 10)]; @@ -1336,3 +1371,17 @@ function evaluateNameToScope(name: string): [AvmValueScope, number | string] { } throw new Error(`Unexpected expression: ${name}`); } + +function variableToString(avmValue: algosdk.modelsv2.AvmValue): string { + if (avmValue.type === 1) { + // byte array + const bytes = avmValue.bytes || new Uint8Array(); + const utf8 = utf8Decode(bytes); + return utf8 === undefined + ? '0x' + algosdk.bytesToHex(bytes) + : "'" + utf8 + "'"; + } + // uint64 + const uint = avmValue.uint || 0; + return uint.toString(); +} diff --git a/src/common/programReplay.ts b/src/common/programReplay.ts new file mode 100644 index 0000000..ef0be91 --- /dev/null +++ b/src/common/programReplay.ts @@ -0,0 +1,325 @@ +import { + AvmValue, + SimulationOpcodeTraceUnit, +} from 'algosdk/dist/types/client/v2/algod/models/types'; +import { FrameSource, ProgramState } from './traceReplayEngine'; +import { PCEvent, ProgramSourceDescriptor } from './utils'; + +interface CallStack { + readonly name: string; + readonly source: FrameSource | undefined; + readonly programState: ProgramState | undefined; + stackOffset: number; +} +const HIDE_VERSION = true; +const DEFINED_ONLY = true; +const INCLUDE_STACK_SCOPE = false; +const HIDE_TEMP = true; + +class MutableCallStack implements CallStack { + public readonly name: string; + private definedVariables: Record; + private _paramVariables: string[]; + private stack: string[]; + + constructor( + public readonly callEvent: PCEvent, + public source: FrameSource | undefined, + public stackOffset: number, + private readonly parent: ProgramReplay, + ) { + if (callEvent.callsub === undefined) { + throw Error('Invalid enter to begin a frame'); + } + this.name = callEvent.callsub; + this.definedVariables = {}; + this._paramVariables = []; + this.stack = []; + } + + public get paramVariables() { + return this._paramVariables; + } + + public set paramVariables(value: string[]) { + this._paramVariables = value; + // params are always defined + this.setDefinedVariables(value); + } + + public get programState() { + const knownStack = this.parent.stack.slice( + this.stackOffset, + this.stackOffset + this.stackVariables.length, + ); + const variables: Record = {}; + knownStack.forEach((value, index) => { + const variableScope = this.stackVariables[index]; + let variable = variableScope[0]; + const scope = variableScope[1]; + if (HIDE_TEMP && variable.indexOf('%') >= 0) { + return; + } + if (!DEFINED_ONLY || this.definedVariables[variable]) { + if (HIDE_VERSION) { + variable = variable.split('#', 2)[0]; + } + if (INCLUDE_STACK_SCOPE) { + variable = variable + ` (${scope})`; + } + variables[variable] = value; + } + }); + + return { + stack: this.parent.stack, + scratch: this.parent.scratch, + pc: this.parent.nextPc, + op: this.parent.nextPcEvent?.op, + appId: this.parent.appId, + variables: Object.entries(variables).sort((a, b) => + a[0].localeCompare(b[0]), + ), + }; + } + get stackVariables(): string[][] { + return [ + ...this.paramVariables.map((v) => [v, 'p']), + ...this.stack.map((v) => [v, 's']), + ]; + } + + private setDefinedVariables(variables: string[]) { + for (const variable of variables) { + this.definedVariables[variable] = true; + } + } + + public applyIn(event: PCEvent) { + if (event.params !== undefined) { + const params = Object.keys(event.params); + this.stackOffset = this.parent.stack.length - params.length; + this.paramVariables = params; + } + if (event.stack_in !== undefined) { + this.stack = event.stack_in; + } + } + + public applyOut(event: PCEvent) { + if (event.stack_out !== undefined) { + this.stack = event.stack_out; + } + if (event.defined_out !== undefined) { + this.setDefinedVariables(event.defined_out); + } + } +} + +export class ProgramReplay { + public stack: AvmValue[] = []; + public scratch: Map = new Map(); + private traceIndex: number = 0; + private _callStack: MutableCallStack[] = []; + private readonly sourceInfo: ProgramSourceDescriptor; + + constructor( + private readonly programName: string, + private readonly programTrace: SimulationOpcodeTraceUnit[], + sourceInfo: ProgramSourceDescriptor | undefined, + public readonly appId: bigint | undefined, + traceIndex: number = 0, //index to the next opcode to execute + ) { + this.sourceInfo = checkTraceMatchesSourceInfo(programTrace, sourceInfo); + + this.reset(); + // advance internal state to match provided index + while (traceIndex-- > 0) { + this.forward(); + } + } + + private pushCallStack(event: PCEvent) { + this._callStack.push( + new MutableCallStack(event, this.pcSource, this.stack.length, this), + ); + } + + get nextOpTrace() { + return this.programTrace[this.traceIndex]; + } + + get nextPc() { + return this.nextOpTrace?.pc; + } + + get nextPcEvent(): PCEvent | undefined { + if ( + this.sourceInfo === undefined || + this.sourceInfo.json.pc_events === undefined + ) { + return undefined; + } + return this.sourceInfo.json.pc_events[this.nextPc.toString()]; + } + + get pcSource(): FrameSource | undefined { + if (this.sourceInfo === undefined) { + return undefined; + } + const location = this.sourceInfo.sourcemap.getLocationForPc(this.nextPc); + if (location == undefined) { + return undefined; + } + const line = location.line; + const column = location.column; + const sourceIndex = location.sourceIndex; + const source = this.sourceInfo.getFullSourcePath(sourceIndex); + return { + name: source, + path: source, + line: line, + column: column, + }; + } + + get callStack(): CallStack[] { + return this._callStack; + } + + get topCallStack(): MutableCallStack { + return this._callStack[this._callStack.length - 1]; + } + + get ended() { + return this.nextOpTrace === undefined; + } + + public forward(): void { + if (this.traceIndex === this.programTrace.length) { + return; + } + this.processOpExit(); + this.traceIndex++; + if (this.traceIndex < this.programTrace.length) { + this.processOpEnter(); + this.updateSource(); + } + } + + public reset() { + this.stack = []; + this.scratch = new Map(); + this.traceIndex = 0; + this._callStack = []; + this.pushCallStack({ callsub: this.programName }); + this.processOpEnter(); + } + + private updateSource() { + this._callStack[this._callStack.length - 1].source = this.pcSource; + } + + private processOpEnter() { + const event = this.nextPcEvent; + if (event !== undefined) { + this.topCallStack.applyIn(event); + } + } + + private processOpExit() { + const next = this.nextOpTrace; + + const stackPopCount = next.stackPopCount ? Number(next.stackPopCount) : 0; + if (stackPopCount > this.stack.length) { + throw new Error( + `Stack underflow at pc ${this.nextPc}: ${stackPopCount} > ${this.stack.length}`, + ); + } + this.stack = this.stack.slice(0, this.stack.length - stackPopCount); + if (next.stackAdditions) { + this.stack.push(...next.stackAdditions); + } + + for (const scratchWrite of next.scratchChanges || []) { + const slot = Number(scratchWrite.slot); + if (slot < 0 || slot >= 256) { + throw new Error(`Invalid scratch slot ${slot}`); + } + const newValue = scratchWrite.newValue; + if (newValue.type === 2 && !newValue.uint) { + // When setting to 0, delete the entry, since 0 is the default. + this.scratch.delete(slot); + } else { + this.scratch.set(slot, newValue); + } + } + + const event = this.nextPcEvent; + if (event !== undefined) { + if (event.params !== undefined) { + const params = Object.keys(event.params); + this.topCallStack.stackOffset = this.stack.length - params.length; + this.topCallStack.paramVariables = params; + } + if (event.callsub !== undefined) { + this.pushCallStack(event); + } else if (event.retsub !== undefined) { + const last = this._callStack.pop(); + if (last === undefined) { + throw Error('empty call stack'); + } + this.topCallStack.applyOut(last.callEvent); + } else { + this.topCallStack.applyOut(event); + } + } + } +} + +function checkTraceMatchesSourceInfo( + traces: SimulationOpcodeTraceUnit[], + sourceInfo: ProgramSourceDescriptor | undefined, +): ProgramSourceDescriptor { + if (sourceInfo === undefined) { + throw Error('missing program source information'); + } + const pcOffset = traces[sourceInfo.json.op_pc_offset || 0].pc; + let events = sourceInfo.json.pc_events; + if (events === undefined) { + throw Error('not a puya source map'); + } + + events = Object.fromEntries( + Object.entries(events).map((entry) => [ + (+entry[0] + pcOffset).toString(), + entry[1], + ]), + ); + for (const trace of traces) { + if (events[trace.pc] === undefined && trace.pc >= pcOffset) { + throw Error('source map is not valid for program trace'); + } + } + + const json = { + ...sourceInfo.json, + pc_events: events, + }; + const sourcemap = { + sources: sourceInfo.sourcemap.sources, + getLocationForPc: (pc) => { + if (pc < pcOffset) { + return undefined; + } + return sourceInfo?.sourcemap.getLocationForPc(pc - pcOffset); + }, + }; + return new ProgramSourceDescriptor( + sourceInfo.fileAccessor, + sourceInfo.sourcemapFileLocation, + json, + sourcemap, + sourceInfo.hash, + ); +} diff --git a/src/common/runtime.ts b/src/common/runtime.ts index 42a227d..debb6b3 100644 --- a/src/common/runtime.ts +++ b/src/common/runtime.ts @@ -2,10 +2,10 @@ import { EventEmitter } from 'events'; import { RuntimeEvents } from './debugSession'; import { AppState } from './appState'; import { - FrameSourceLocation, + FrameSource, SteppingResultType, TraceReplayEngine, - TraceReplayStackFrame, + TraceStackFrame, } from './traceReplayEngine'; import { FileAccessor } from './fileAccessor'; import { @@ -26,14 +26,13 @@ export interface IRuntimeBreakpointLocation { } interface IRuntimeStack { - count: number; - frames: TraceReplayStackFrame[]; + total: number; + frames: TraceStackFrame[]; } export class AvmRuntime extends EventEmitter { // maps from sourceFile to array of IRuntimeBreakpoint private readonly breakPoints = new Map(); - private readonly engine: TraceReplayEngine = new TraceReplayEngine(); // since we want to send breakpoint events, we will assign an id to every event @@ -160,12 +159,12 @@ export class AvmRuntime extends EventEmitter { * "Step out" */ public stepOut() { - const targetStackDepth = this.engine.stack.length - 1; + const targetStackDepth = this.stackLength - 1; if (targetStackDepth <= 0) { this.continue(false); } this.nextTickWithErrorReporting(() => { - while (targetStackDepth < this.engine.stack.length) { + while (targetStackDepth < this.stackLength) { if (!this.updateCurrentLine(false)) { return; } @@ -181,7 +180,7 @@ export class AvmRuntime extends EventEmitter { * "Step over" */ public step(reverse: boolean) { - const targetStackDepth = this.engine.stack.length; + const targetStackDepth = this.stackLength; this.nextTickWithErrorReporting(() => { do { if (!this.updateCurrentLine(reverse)) { @@ -190,37 +189,43 @@ export class AvmRuntime extends EventEmitter { if (this.hitBreakpoint()) { return; } - } while (targetStackDepth < this.engine.stack.length); + } while (targetStackDepth < this.stackLength); this.sendEvent(RuntimeEvents.stopOnStep); }); } - public stackLength(): number { - return this.engine.stack.length; + public get stackLength(): number { + return this.getStack().length; } /** * Returns a 'stacktrace' where every frame is a TraceReplayStackFrame. */ public stack(startFrame: number, endFrame: number): IRuntimeStack { - if (this.engine.stack.length < endFrame) { - endFrame = this.engine.stack.length; - } - const frames: TraceReplayStackFrame[] = []; - for (let i = startFrame; i < endFrame; i++) { - frames.push(this.engine.stack[i]); + const stack = this.getStack(); + if (stack.length < endFrame) { + endFrame = stack.length; } return { - frames: frames, - count: this.engine.stack.length, + frames: stack.slice(startFrame, endFrame), + total: stack.length, }; } - public getStackFrame(index: number): TraceReplayStackFrame | undefined { - if (index < 0 || index >= this.engine.stack.length) { - return undefined; + private getStack(): TraceStackFrame[] { + const result: TraceStackFrame[] = []; + for (const frame of this.engine.stack) { + for (const f of frame.callStack) { + result.push(f); + } } - return this.engine.stack[index]; + result.reverse(); + return result; + } + + public getStackFrame(index: number): TraceStackFrame | undefined { + const stack = this.getStack(); + return stack[index]; } /* @@ -295,13 +300,13 @@ export class AvmRuntime extends EventEmitter { } private hitBreakpoint(): boolean { - const frame = this.engine.currentFrame(); - const sourceInfo = frame.sourceFile(); - const sourceLocation = frame.sourceLocation(); - if (sourceInfo.path) { - const breakpoints = this.breakPoints.get(sourceInfo.path) || []; + const stack = this.getStack(); + const frame = stack[0]; + const source = frame.source; + if (source && source.path) { + const breakpoints = this.breakPoints.get(source.path) || []; const bps = breakpoints.filter((bp) => - this.isFrameLocationOnBreakpoint(sourceLocation, bp.location), + this.isFrameLocationOnBreakpoint(source, bp.location), ); if (bps.length !== 0) { // send 'stopped' event @@ -340,7 +345,7 @@ export class AvmRuntime extends EventEmitter { location.line, ); if (typeof location.column === 'undefined' && pcs.length !== 0) { - const sortedPcs = pcs.slice().sort((a, b) => a.column - b.column); + const sortedPcs = pcs.slice().sort((a, b) => a.pc - b.pc); location.column = sortedPcs[0].column; } @@ -364,7 +369,7 @@ export class AvmRuntime extends EventEmitter { } private isFrameLocationOnBreakpoint( - location: FrameSourceLocation, + location: FrameSource, bp: IRuntimeBreakpointLocation, ): boolean { if (location.line !== bp.line) { diff --git a/src/common/traceReplayEngine.ts b/src/common/traceReplayEngine.ts index ed53886..707d077 100644 --- a/src/common/traceReplayEngine.ts +++ b/src/common/traceReplayEngine.ts @@ -6,6 +6,8 @@ import { ProgramSourceDescriptor, ProgramSourceDescriptorRegistry, } from './utils'; +import { ProgramReplay } from './programReplay'; +import { AvmValue } from 'algosdk/dist/types/client/v2/algod/models/types'; export enum SteppingResultType { /* eslint-disable @typescript-eslint/naming-convention */ @@ -48,7 +50,7 @@ export class TraceReplayEngine { public initialAppState = new Map(); public currentAppState = new Map(); - public stack: TraceReplayStackFrame[] = []; + public stack: TraceReplayFrame[] = []; public reset() { this.simulateResponse = undefined; @@ -182,7 +184,7 @@ export class TraceReplayEngine { this.programHashToSource.set(programHash, sourceDescriptor); } - public currentFrame(): TraceReplayStackFrame { + public currentFrame(): TraceReplayFrame { return this.stack[this.stack.length - 1]; } @@ -260,44 +262,55 @@ export interface FrameSource { path?: string; content?: string; contentMimeType?: string; -} - -export interface FrameSourceLocation { line: number; endLine?: number; column?: number; endColumn?: number; } -export abstract class TraceReplayStackFrame { - constructor(protected readonly engine: TraceReplayEngine) {} +export interface TraceStackFrame { + readonly name: string; + readonly source: FrameSource | undefined; + readonly programState: ProgramState | undefined; +} - public abstract name(): string; - public abstract sourceFile(): FrameSource; - public abstract sourceLocation(): FrameSourceLocation; +export interface ProgramState { + readonly stack: AvmValue[]; + readonly scratch: Map; + readonly pc: number; + readonly op: string | undefined; + readonly appId: bigint | undefined; + readonly variables: [string, AvmValue][]; +} - public abstract forward(stack: TraceReplayStackFrame[]): ExceptionInfo | void; - public abstract backward( - stack: TraceReplayStackFrame[], - ): ExceptionInfo | void; +export interface TraceReplayFrame { + get callStack(): TraceStackFrame[]; + forward(stack: TraceReplayFrame[]): ExceptionInfo | void; + backward(stack: TraceReplayFrame[]): ExceptionInfo | void; } -export class TopLevelTransactionGroupsFrame extends TraceReplayStackFrame { +export class TopLevelTransactionGroupsFrame implements TraceReplayFrame { private index: number = 0; private txnGroupDone: boolean = false; constructor( - engine: TraceReplayEngine, + private readonly engine: TraceReplayEngine, private readonly response: algosdk.modelsv2.SimulateResponse, - ) { - super(engine); + ) {} + + public get callStack(): TraceStackFrame[] { + return [this]; } - public name(): string { + public get programState() { + return undefined; + } + + public get name(): string { return `group ${this.index}`; } - public sourceFile(): FrameSource { + public get source(): FrameSource { const individualGroups = this.response.txnGroups.map((group) => group.txnResults.map((txnResult) => algosdk.parseJSON(algosdk.encodeJSON(txnResult.txnResult.txn), { @@ -305,14 +318,6 @@ export class TopLevelTransactionGroupsFrame extends TraceReplayStackFrame { }), ), ); - return { - name: `transaction-groups.json`, - content: algosdk.stringifyJSON(individualGroups, undefined, 2), - contentMimeType: 'application/json', - }; - } - - public sourceLocation(): FrameSourceLocation { let lineOffset = 1; // For opening bracket for (let i = 0; i < this.index; i++) { for (const txnResult of this.response.txnGroups[i].txnResults) { @@ -331,12 +336,15 @@ export class TopLevelTransactionGroupsFrame extends TraceReplayStackFrame { .split('\n').length; } return { + name: `transaction-groups.json`, + content: algosdk.stringifyJSON(individualGroups, undefined, 2), + contentMimeType: 'application/json', line: lineOffset, endLine: lineOffset + lineCount, }; } - public forward(stack: TraceReplayStackFrame[]): ExceptionInfo | void { + public forward(stack: TraceReplayFrame[]): ExceptionInfo | void { if (!this.txnGroupDone) { stack.push(this.frameForIndex(this.index)); this.txnGroupDone = true; @@ -377,7 +385,7 @@ export class TopLevelTransactionGroupsFrame extends TraceReplayStackFrame { return txnGroupFrame; } - public backward(stack: TraceReplayStackFrame[]): ExceptionInfo | void { + public backward(stack: TraceReplayFrame[]): ExceptionInfo | void { if (this.txnGroupDone) { this.txnGroupDone = false; return; @@ -417,7 +425,7 @@ interface TransactionFailureInfo { path: number[]; } -export class TransactionGroupStackFrame extends TraceReplayStackFrame { +export class TransactionGroupStackFrame implements TraceReplayFrame { private txnIndex: number = 0; private logicSigStatus: ProgramStatus = ProgramStatus.DONE; private appStatus: ProgramStatus = ProgramStatus.DONE; @@ -427,7 +435,7 @@ export class TransactionGroupStackFrame extends TraceReplayStackFrame { private sourceLocations: TransactionSourceLocation[] = []; constructor( - engine: TraceReplayEngine, + private engine: TraceReplayEngine, private txnPath: number[], private readonly txnInfos: algosdk.modelsv2.PendingTransactionResponse[], private readonly txnTraces: Array< @@ -435,8 +443,6 @@ export class TransactionGroupStackFrame extends TraceReplayStackFrame { >, private readonly failureInfo: TransactionFailureInfo | undefined, ) { - super(engine); - const firstTrace = txnTraces[0]; if (firstTrace) { if (firstTrace.logicSigTrace) { @@ -514,47 +520,47 @@ export class TransactionGroupStackFrame extends TraceReplayStackFrame { } } - public name(): string { + public get callStack(): TraceStackFrame[] { + return [this]; + } + + public get programState() { + return undefined; + } + + public get name(): string { return `${this.txnPath.length > 2 ? 'inner ' : ''}transaction ${ this.txnIndex }`; } - public sourceFile(): FrameSource { - return { - name: `${ - this.txnPath.length > 2 ? 'inner-' : '' - }transaction-group-${this.txnPath.slice(0, -1).join('-')}.json`, - content: this.sourceContent, - contentMimeType: 'application/json', - }; - } - - public sourceLocation(): FrameSourceLocation { + public get source(): FrameSource { const sourceLocation = this.sourceLocations[this.txnIndex]; - let frameSourceLocation: FrameSourceLocation = { - line: sourceLocation.line, - endLine: sourceLocation.lineEnd, - }; + let line = sourceLocation.line; + let endLine = sourceLocation.lineEnd; if (this.logicSigStatus === ProgramStatus.STARTING) { if (sourceLocation.lsigLocation) { - frameSourceLocation = { - line: sourceLocation.lsigLocation.line, - endLine: sourceLocation.lsigLocation.lineEnd, - }; + line = sourceLocation.lsigLocation.line; + endLine = sourceLocation.lsigLocation.lineEnd; } } else if (this.appStatus === ProgramStatus.STARTING) { if (sourceLocation.appLocation) { - frameSourceLocation = { - line: sourceLocation.appLocation.line, - endLine: sourceLocation.appLocation.lineEnd, - }; + line = sourceLocation.appLocation.line; + endLine = sourceLocation.appLocation.lineEnd; } } - return frameSourceLocation; + return { + name: `${ + this.txnPath.length > 2 ? 'inner-' : '' + }transaction-group-${this.txnPath.slice(0, -1).join('-')}.json`, + content: this.sourceContent, + contentMimeType: 'application/json', + line: line, + endLine: endLine, + }; } - public forward(stack: TraceReplayStackFrame[]): ExceptionInfo | void { + public forward(stack: TraceReplayFrame[]): ExceptionInfo | void { const currentTxnTrace = this.txnTraces[this.txnIndex]; const currentTxnInfo = this.txnInfos[this.txnIndex]; @@ -659,7 +665,7 @@ export class TransactionGroupStackFrame extends TraceReplayStackFrame { stack.pop(); } - public backward(stack: TraceReplayStackFrame[]): ExceptionInfo | void { + public backward(stack: TraceReplayFrame[]): ExceptionInfo | void { if (this.onException) { this.onException = false; return; @@ -712,34 +718,24 @@ export class TransactionGroupStackFrame extends TraceReplayStackFrame { } } -export interface ProgramState { - pc: number; - stack: algosdk.modelsv2.AvmValue[]; - scratch: Map; -} - -export class ProgramStackFrame extends TraceReplayStackFrame { +export class ProgramStackFrame implements TraceReplayFrame { private index: number = 0; private handledInnerTxns: boolean = false; private initialAppState: AppState | undefined; private logicSigAddress: string | undefined; private blockingException: ExceptionInfo | undefined; - - public state: ProgramState = { pc: 0, stack: [], scratch: new Map() }; + private programReplay: ProgramReplay; constructor( - engine: TraceReplayEngine, + private readonly engine: TraceReplayEngine, private readonly txnPath: number[], private readonly programType: 'logic sig' | 'approval' | 'clear state', - private readonly programHash: Uint8Array, + programHash: Uint8Array, private readonly programTrace: algosdk.modelsv2.SimulationOpcodeTraceUnit[], private readonly trace: algosdk.modelsv2.SimulationTransactionExecTrace, private readonly txnInfo: algosdk.modelsv2.PendingTransactionResponse, private readonly failureInfo: TransactionFailureInfo | undefined, ) { - super(engine); - this.state.pc = Number(programTrace[0].pc); - const appID = this.currentAppID(); if (typeof appID !== 'undefined') { this.initialAppState = engine.currentAppState.get(appID)!.clone(); @@ -753,6 +749,12 @@ export class ProgramStackFrame extends TraceReplayStackFrame { const lsigAccount = new algosdk.LogicSigAccount(lsigBytes); this.logicSigAddress = lsigAccount.address().toString(); } + this.programReplay = new ProgramReplay( + this.name, + programTrace, + this.engine.programHashToSource.get(programHash), + this.currentAppID(), + ); } public currentAppID(): bigint | undefined { @@ -770,7 +772,11 @@ export class ProgramStackFrame extends TraceReplayStackFrame { return undefined; } - public name(): string { + public get callStack(): TraceStackFrame[] { + return this.programReplay.callStack; + } + + public get name(): string { const appID = this.currentAppID(); if (typeof appID !== 'undefined') { return `app ${appID} ${this.programType} program`; @@ -781,160 +787,108 @@ export class ProgramStackFrame extends TraceReplayStackFrame { return `${this.programType} program`; } - public sourceFile(): FrameSource { - const sourceInfo = this.engine.programHashToSource.get(this.programHash); - if (!sourceInfo) { - let name: string; - const appID = this.currentAppID(); - if (typeof appID !== 'undefined') { - name = `app ${appID} ${this.programType}.teal`; - } else if (typeof this.logicSigAddress !== 'undefined') { - name = `logic sig ${this.logicSigAddress}.teal`; - } else { - name = `program ${algosdk.bytesToHex(this.programHash)}.teal`; + public forward(stack: TraceReplayFrame[]): ExceptionInfo | void { + const lastLocation = this.programReplay.pcSource; + let again = true; + while (again) { + if (this.blockingException) { + return this.blockingException; } - return { - name, - content: '// source not available', - }; - } - const location = sourceInfo.sourcemap.getLocationForPc(this.state.pc); - // If we can't find a location for this PC, just return the first source. - const sourceIndex = location ? location.sourceIndex : 0; - const source = sourceInfo.getFullSourcePath(sourceIndex); - return { - name: source, - path: source, - }; - } - public sourceLocation(): FrameSourceLocation { - const sourceInfo = this.engine.programHashToSource.get(this.programHash); - if (!sourceInfo) { - return { line: 0 }; - } - const location = sourceInfo.sourcemap.getLocationForPc(this.state.pc); - if (!location) { - return { line: 0 }; - } - return { - line: location.line, - column: location.column, - }; - } + if (this.index === this.programTrace.length) { + stack.pop(); + return; + } - public forward(stack: TraceReplayStackFrame[]): ExceptionInfo | void { - if (this.blockingException) { - return this.blockingException; - } + this.programReplay.forward(); + // loop until location has advanced + again = !locationHasAdvanced(lastLocation, this.programReplay.pcSource); - if (this.index === this.programTrace.length) { - stack.pop(); - return; - } + const currentUnit = this.programTrace[this.index]; + this.processUnit(currentUnit); - const currentUnit = this.programTrace[this.index]; - this.processUnit(currentUnit); - - const spawnedInners = currentUnit.spawnedInners; - if (!this.handledInnerTxns && spawnedInners && spawnedInners.length !== 0) { - const spawnedInnerIndexes = spawnedInners.map((i) => Number(i)); - const innerGroupInfo: algosdk.modelsv2.PendingTransactionResponse[] = []; - const innerTraces: algosdk.modelsv2.SimulationTransactionExecTrace[] = []; - for (const innerIndex of spawnedInnerIndexes) { - const innerTxnInfo = this.txnInfo.innerTxns![innerIndex]; - const innerTrace = this.trace.innerTrace![innerIndex]; - innerGroupInfo.push(innerTxnInfo); - innerTraces.push(innerTrace); - } - const expandedPath = this.txnPath.slice(); - expandedPath.push(spawnedInnerIndexes[0]); - let innerFailureInfo: TransactionFailureInfo | undefined = undefined; + const spawnedInners = currentUnit.spawnedInners; if ( - this.failureInfo && - this.failureInfo.path.length > this.txnPath.length - 1 && - pathStartWith(this.failureInfo.path, this.txnPath.slice(1)) + !this.handledInnerTxns && + spawnedInners && + spawnedInners.length !== 0 ) { - innerFailureInfo = this.failureInfo; + const spawnedInnerIndexes = spawnedInners.map((i) => Number(i)); + const innerGroupInfo: algosdk.modelsv2.PendingTransactionResponse[] = + []; + const innerTraces: algosdk.modelsv2.SimulationTransactionExecTrace[] = + []; + for (const innerIndex of spawnedInnerIndexes) { + const innerTxnInfo = this.txnInfo.innerTxns![innerIndex]; + const innerTrace = this.trace.innerTrace![innerIndex]; + innerGroupInfo.push(innerTxnInfo); + innerTraces.push(innerTrace); + } + const expandedPath = this.txnPath.slice(); + expandedPath.push(spawnedInnerIndexes[0]); + let innerFailureInfo: TransactionFailureInfo | undefined = undefined; + if ( + this.failureInfo && + this.failureInfo.path.length > this.txnPath.length - 1 && + pathStartWith(this.failureInfo.path, this.txnPath.slice(1)) + ) { + innerFailureInfo = this.failureInfo; + } + const innerGroupFrame = new TransactionGroupStackFrame( + this.engine, + expandedPath, + innerGroupInfo, + innerTraces, + innerFailureInfo, + ); + stack.push(innerGroupFrame); + this.handledInnerTxns = true; + return; } - const innerGroupFrame = new TransactionGroupStackFrame( - this.engine, - expandedPath, - innerGroupInfo, - innerTraces, - innerFailureInfo, - ); - stack.push(innerGroupFrame); - this.handledInnerTxns = true; - return; - } - this.index++; + this.index++; - if (this.index < this.programTrace.length) { - this.state.pc = Number(this.programTrace[this.index].pc); - this.handledInnerTxns = false; - } else { - if (this.programType === 'clear state' && this.trace.clearStateRollback) { - // If there's a rollback, reset the app state to the initial state - this.engine.currentAppState.set( - this.currentAppID()!, - this.initialAppState!.clone(), - ); - // Don't return the clear state error here, failureInfo takes precedence - } + if (this.index < this.programTrace.length) { + this.handledInnerTxns = false; + } else { + if ( + this.programType === 'clear state' && + this.trace.clearStateRollback + ) { + // If there's a rollback, reset the app state to the initial state + this.engine.currentAppState.set( + this.currentAppID()!, + this.initialAppState!.clone(), + ); + // Don't return the clear state error here, failureInfo takes precedence + } - if ( - this.failureInfo && - pathsEqual(this.txnPath.slice(1), this.failureInfo.path) - ) { - // If there's an error, show it at the end of execution - this.blockingException = new ExceptionInfo(this.failureInfo.message); - return this.blockingException; - } + if ( + this.failureInfo && + pathsEqual(this.txnPath.slice(1), this.failureInfo.path) + ) { + // If there's an error, show it at the end of execution + this.blockingException = new ExceptionInfo(this.failureInfo.message); + return this.blockingException; + } - if (this.programType === 'clear state' && this.trace.clearStateRollback) { - // Show error message for clear state rollback. This is NOT a blocking error. - if (typeof this.trace.clearStateRollbackError !== 'undefined') { - return new ExceptionInfo(this.trace.clearStateRollbackError); + if ( + this.programType === 'clear state' && + this.trace.clearStateRollback + ) { + // Show error message for clear state rollback. This is NOT a blocking error. + if (typeof this.trace.clearStateRollbackError !== 'undefined') { + return new ExceptionInfo(this.trace.clearStateRollbackError); + } + // If no specific error message, show a generic one (this is what happens during rejection) + return new ExceptionInfo('Clear state program did not succeed'); } - // If no specific error message, show a generic one (this is what happens during rejection) - return new ExceptionInfo('Clear state program did not succeed'); } } } private processUnit(unit: algosdk.modelsv2.SimulationOpcodeTraceUnit) { - this.state.pc = Number(unit.pc); - - const stackPopCount = unit.stackPopCount ? Number(unit.stackPopCount) : 0; - if (stackPopCount > this.state.stack.length) { - throw new Error( - `Stack underflow at pc ${unit.pc}: ${stackPopCount} > ${this.state.stack.length}`, - ); - } - this.state.stack = this.state.stack.slice( - 0, - this.state.stack.length - stackPopCount, - ); - if (unit.stackAdditions) { - this.state.stack.push(...unit.stackAdditions); - } - - for (const scratchWrite of unit.scratchChanges || []) { - const slot = Number(scratchWrite.slot); - if (slot < 0 || slot >= 256) { - throw new Error(`Invalid scratch slot ${slot}`); - } - const newValue = scratchWrite.newValue; - if (newValue.type === 2 && !newValue.uint) { - // When setting to 0, delete the entry, since 0 is the default. - this.state.scratch.delete(slot); - } else { - this.state.scratch.set(slot, newValue); - } - } - + // TODO: move to ProgramReplay if (unit.stateChanges && unit.stateChanges.length !== 0) { const appID = this.currentAppID(); if (typeof appID === 'undefined') { @@ -987,7 +941,7 @@ export class ProgramStackFrame extends TraceReplayStackFrame { } } - public backward(stack: TraceReplayStackFrame[]): ExceptionInfo | void { + public backward(stack: TraceReplayFrame[]): ExceptionInfo | void { if (this.blockingException) { this.blockingException = undefined; } @@ -1010,9 +964,7 @@ export class ProgramStackFrame extends TraceReplayStackFrame { private reset() { this.index = 0; this.handledInnerTxns = false; - this.state.pc = Number(this.programTrace[0].pc); - this.state.stack = []; - this.state.scratch.clear(); + this.programReplay.reset(); if (typeof this.initialAppState !== 'undefined') { this.engine.currentAppState.set( this.currentAppID()!, @@ -1048,3 +1000,31 @@ function pathStartWith(path: number[], prefix: number[]): boolean { } return true; } + +function locationHasAdvanced( + from: FrameSource | undefined, + to: FrameSource | undefined, +): boolean { + // two unknown locations have not advanced + if (from === undefined && to === undefined) { + return false; + } + // unknown -> known has advanced + if (from === undefined && to !== undefined) { + return true; + } + // known -> unknown has not advanced + if (from !== undefined && to === undefined) { + return false; + } + if (from?.path !== to?.path) { + return true; + } + if (from?.line !== to?.line) { + return true; + } + if (from?.column !== to?.column) { + return true; + } + return false; +} diff --git a/src/common/utils.ts b/src/common/utils.ts index bb65bc5..9c0c901 100644 --- a/src/common/utils.ts +++ b/src/common/utils.ts @@ -134,28 +134,40 @@ interface ProgramSourceEntry { 'sourcemap-location': string; } -export class ProgramSourceDescriptor { - public readonly fileAccessor: FileAccessor; - public readonly sourcemapFileLocation: string; - public readonly sourcemap: algosdk.ProgramSourceMap; - public readonly hash: Uint8Array; +export interface PCEvent { + subroutine?: string; + block?: string; + op?: string; + callsub?: string; + retsub?: boolean; + params?: Record; + stack_in?: string[]; + stack_out?: string[]; + defined_out?: string[]; +} - constructor({ - fileAccessor, - sourcemapFileLocation, - sourcemap, - hash, - }: { - fileAccessor: FileAccessor; - sourcemapFileLocation: string; - sourcemap: algosdk.ProgramSourceMap; - hash: Uint8Array; - }) { - this.fileAccessor = fileAccessor; - this.sourcemapFileLocation = sourcemapFileLocation; - this.sourcemap = sourcemap; - this.hash = hash; - } +interface ISourceMap { + version: number; + sources: string[]; + names: string[]; + mappings: string; + op_pc_offset?: number; + pc_events?: Record; +} + +interface IPcLocationMap { + sources: string[]; + getLocationForPc(pc: number): algosdk.SourceLocation | undefined; +} + +export class ProgramSourceDescriptor { + constructor( + public readonly fileAccessor: FileAccessor, + public readonly sourcemapFileLocation: string, + public readonly json: ISourceMap, + public readonly sourcemap: IPcLocationMap, + public readonly hash: Uint8Array, + ) {} public sourcePaths(): string[] { return this.sourcemap.sources.map((_, index) => @@ -186,16 +198,16 @@ export class ProgramSourceDescriptor { fileAccessor.readFile(sourcemapFileLocation), 'Could not read source map file', ); - const sourcemap = new algosdk.ProgramSourceMap( - JSON.parse(new TextDecoder().decode(rawSourcemap)), - ); + const json = JSON.parse(new TextDecoder().decode(rawSourcemap)); + const sourcemap = new algosdk.ProgramSourceMap(json); - return new ProgramSourceDescriptor({ + return new ProgramSourceDescriptor( fileAccessor, sourcemapFileLocation, + json, sourcemap, - hash: algosdk.base64ToBytes(data.hash), - }); + algosdk.base64ToBytes(data.hash), + ); } } From 067bae8f30668356efeaa56f6780f0d99a8cb514 Mon Sep 17 00:00:00 2001 From: Al Date: Wed, 9 Oct 2024 18:38:45 +0200 Subject: [PATCH 5/5] chore: support for passing file contents for sourcemaps; puya/teal edge cases (#1) * chore: hiding locals on non puya sourcemaps; adding puya and teal example * chore: no tmpl vars offset edge case fix * chore: rel path for example on puya + teal * chore: workaround on skipping syntentic refs that does not require async file exists * feat: support direct file or encoded content for sourcemaps * refactor: make programSourcesDescription an object instead of JSON * chore: adding more edge cases * chore(src/common): Add program source entry file and type Added 'ProgramSourceEntryFile' and 'ProgramSourceEntry' to the common module. These types are used for parsing program source files. * chore: add support for 'null' sourcemap paths when user prefers ignores * chore: add mocharc file for global timeouts Also fixing a few tests * fix: move program forward call after inner transaction processing * chore: further refine puya example with third parties * feat: integrating Locals with existing expand avm methods * chore: adding puya unit test; moving process unit into program replay --------- Co-authored-by: Daniel McGregor --- .mocharc.js | 4 + .vscode/launch.json | 3 +- extension/package.json | 3 + extension/src/configuration.ts | 19 +- package.json | 3 +- sampleWorkspace/.vscode/launch.json | 80 +- sampleWorkspace/README.md | 13 + .../puya/DebugContract.approval.puya.map | 3035 - .../puya/ProofOfAttendance.approval.puya.map | 5955 + sampleWorkspace/puya/contract.py | 271 +- sampleWorkspace/puya/contract.simulate.json | 3473 - sampleWorkspace/puya/simulate-response.json | 909 + sampleWorkspace/puya/sources.json | 6 +- .../delegated_lsig/lsig.puya.map | 108 + .../puya_and_teal/delegated_lsig/lsig.py | 9 + .../puya_and_teal/first_app/approval.teal | 87 + .../first_app/approval.teal.tok.map | 1 + .../puya_and_teal/first_app/clear.teal | 5 + .../first_app/clear.teal.tok.map | 1 + .../puya_and_teal/second_app/contract.py | 9 + .../second_app/contract_approval.puya.map | 358 + .../puya_and_teal/simulate-response.json | 956 + sampleWorkspace/puya_and_teal/sources.json | 16 + .../.algokit/sources/opup/approval.teal.map | 8 + .../.algokit/sources/opup/opup.teal | 2 + .../site-packages/puya_bignumber/__init__.py | 1 + .../site-packages/puya_bignumber/bignumber.py | 427 + .../site-packages/puya_bignumber/common.py | 42 + .../site-packages/puya_bignumber/py.typed | 0 .../site-packages/puya_rsa/__init__.py | 1 + .../site-packages/puya_rsa/py.typed | 0 .../python3.12/site-packages/puya_rsa/rsa.py | 70 + .../RSATester.approval.puya.map | 8718 + .../puya_third_parties/contract.py | 16 + .../puya_third_parties/simulate-response.json | 161432 +++++++++++++++ .../puya_third_parties/sources.json | 12 + src/common/debugSession.ts | 285 +- src/common/index.ts | 1 + src/common/programReplay.ts | 131 +- src/common/runtime.ts | 17 + src/common/traceReplayEngine.ts | 83 +- src/common/utils.ts | 55 +- tests/adapter.test.ts | 127 + 43 files changed, 179927 insertions(+), 6825 deletions(-) create mode 100644 .mocharc.js create mode 100644 sampleWorkspace/README.md delete mode 100644 sampleWorkspace/puya/DebugContract.approval.puya.map create mode 100644 sampleWorkspace/puya/ProofOfAttendance.approval.puya.map delete mode 100644 sampleWorkspace/puya/contract.simulate.json create mode 100644 sampleWorkspace/puya/simulate-response.json create mode 100644 sampleWorkspace/puya_and_teal/delegated_lsig/lsig.puya.map create mode 100644 sampleWorkspace/puya_and_teal/delegated_lsig/lsig.py create mode 100644 sampleWorkspace/puya_and_teal/first_app/approval.teal create mode 100644 sampleWorkspace/puya_and_teal/first_app/approval.teal.tok.map create mode 100644 sampleWorkspace/puya_and_teal/first_app/clear.teal create mode 100644 sampleWorkspace/puya_and_teal/first_app/clear.teal.tok.map create mode 100644 sampleWorkspace/puya_and_teal/second_app/contract.py create mode 100644 sampleWorkspace/puya_and_teal/second_app/contract_approval.puya.map create mode 100644 sampleWorkspace/puya_and_teal/simulate-response.json create mode 100644 sampleWorkspace/puya_and_teal/sources.json create mode 100644 sampleWorkspace/puya_third_parties/.algokit/sources/opup/approval.teal.map create mode 100644 sampleWorkspace/puya_third_parties/.algokit/sources/opup/opup.teal create mode 100644 sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/__init__.py create mode 100644 sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/bignumber.py create mode 100644 sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/common.py create mode 100644 sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/py.typed create mode 100644 sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/__init__.py create mode 100644 sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/py.typed create mode 100644 sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/rsa.py create mode 100644 sampleWorkspace/puya_third_parties/RSATester.approval.puya.map create mode 100644 sampleWorkspace/puya_third_parties/contract.py create mode 100644 sampleWorkspace/puya_third_parties/simulate-response.json create mode 100644 sampleWorkspace/puya_third_parties/sources.json diff --git a/.mocharc.js b/.mocharc.js new file mode 100644 index 0000000..143fb88 --- /dev/null +++ b/.mocharc.js @@ -0,0 +1,4 @@ +// .mocharc.js +module.exports = { + timeout: 30000, // 30 seconds +}; diff --git a/.vscode/launch.json b/.vscode/launch.json index 7b9898e..5898c60 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,11 +6,12 @@ "type": "extensionHost", "request": "launch", "args": [ + "--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}/extension", "${workspaceFolder}/sampleWorkspace" ], "outFiles": ["${workspaceFolder}/extension/dist/**/*.js"], - "preLaunchTask": "npm: extension watch" + "preLaunchTask": "npm: extension:build" }, { "name": "Server", diff --git a/extension/package.json b/extension/package.json index 18d31cf..37b567f 100644 --- a/extension/package.json +++ b/extension/package.json @@ -56,6 +56,9 @@ "breakpoints": [ { "language": "teal" + }, + { + "language": "python" } ], "debuggers": [ diff --git a/extension/src/configuration.ts b/extension/src/configuration.ts index 89319f1..d3f04f5 100644 --- a/extension/src/configuration.ts +++ b/extension/src/configuration.ts @@ -10,7 +10,7 @@ export class AvmDebugConfigProvider implements vscode.DebugConfigurationProvider { /** - * Massage a debug configuration just before a debug session is being launched, + * Message a debug configuration just before a debug session is being launched, * e.g. add all missing attributes to the debug configuration. */ resolveDebugConfiguration( @@ -26,9 +26,22 @@ export class AvmDebugConfigProvider return null; } - if (!config.programSourcesDescriptionFile) { + if ( + config.programSourcesDescription && + !config.programSourcesDescriptionFolder + ) { vscode.window.showErrorMessage( - 'Missing property "programSourcesDescriptionFile" in debug config', + 'Missing property "programSourcesDescriptionFolder" in debug config', + ); + return null; + } + + if ( + !config.programSourcesDescriptionFile && + !config.programSourcesDescription + ) { + vscode.window.showErrorMessage( + 'Either "programSourcesDescriptionFile" or "programSourcesDescription" + "programSourcesDescriptionFolder" must be provided in debug config', ); return null; } diff --git a/package.json b/package.json index d16f609..e5778f5 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,8 @@ "extension:publish": "vsce publish", "extension:publish-pre-release": "vsce publish --pre-release", "test": "ts-mocha -p tsconfig.json 'tests/**/*test.ts' --timeout 30s --diff false", - "test:coverage": "nyc npm run test" + "test:coverage": "nyc npm run test", + "pre-commit": "npm run lint && npm run typecheck && npm run format" }, "dependencies": { "@vscode/debugadapter": "^1.64.0", diff --git a/sampleWorkspace/.vscode/launch.json b/sampleWorkspace/.vscode/launch.json index 8196311..8480bb9 100644 --- a/sampleWorkspace/.vscode/launch.json +++ b/sampleWorkspace/.vscode/launch.json @@ -8,171 +8,181 @@ "type": "avm", "request": "launch", "name": "Debug App Box State Changes", - "simulateTraceFile": "${workspaceFolder}/app-state-changes/box-simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/app-state-changes/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug App Global State Changes", - "simulateTraceFile": "${workspaceFolder}/app-state-changes/global-simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/app-state-changes/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug App Local State Changes", - "simulateTraceFile": "${workspaceFolder}/app-state-changes/local-simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/app-state-changes/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Recursive App", - "simulateTraceFile": "${workspaceFolder}/recursive-app/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/recursive-app/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Slot Machine", - "simulateTraceFile": "${workspaceFolder}/slot-machine/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/slot-machine/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Sourcemap Test", - "simulateTraceFile": "${workspaceFolder}/sourcemap-test/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/sourcemap-test/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Stack Scratch", - "simulateTraceFile": "${workspaceFolder}/stack-scratch/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/stack-scratch/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Stepping Test", - "simulateTraceFile": "${workspaceFolder}/stepping-test/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/stepping-test/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug App Error", - "simulateTraceFile": "${workspaceFolder}/errors/app/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/errors/app/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug App from LogicSig Error", - "simulateTraceFile": "${workspaceFolder}/errors/app-from-logicsig/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/errors/app-from-logicsig/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Inner App Error (App Reject)", - "simulateTraceFile": "${workspaceFolder}/errors/inner-app/app-reject-simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/errors/inner-app/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Inner App Error (Overspend)", - "simulateTraceFile": "${workspaceFolder}/errors/inner-app/overspend-simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/errors/inner-app/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug LogicSig Error", - "simulateTraceFile": "${workspaceFolder}/errors/logicsig/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/errors/logicsig/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Error Before LogicSig", - "simulateTraceFile": "${workspaceFolder}/errors/logicsig-after-error/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/errors/logicsig-after-error/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Clear State Rejection", - "simulateTraceFile": "${workspaceFolder}/errors/clear-state/rejection-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/errors/clear-state/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Clear State Error", - "simulateTraceFile": "${workspaceFolder}/errors/clear-state/error-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/errors/clear-state/sources.json", - "stopOnEntry": true }, { "type": "avm", "request": "launch", "name": "Debug Puya", - - "simulateTraceFile": "${workspaceFolder}/puya/contract.simulate.json", + "simulateTraceFile": "${workspaceFolder}/puya/simulate-response.json", "programSourcesDescriptionFile": "${workspaceFolder}/puya/sources.json", - "stopOnEntry": true }, + { + "type": "avm", + "request": "launch", + "name": "Debug Puya & Teal", + "simulateTraceFile": "${workspaceFolder}/puya_and_teal/simulate-response.json", + "programSourcesDescription": { + "txn-group-sources": [ + { + "sourcemap-location": "first_app/approval.teal.tok.map", + "hash": "+M4WXURFSOFzatfICt2miBHDfm5qylmm279/3bZtKjI=" + }, + { + "sourcemap-location": "second_app/contract_approval.puya.map", + "hash": "Vg0dtzIh0CIFZN/+hJG/L+6gSSPPyjuzE0wDqGt0zyU=" + }, + { + "sourcemap-location": "delegated_lsig/lsig.puya.map", + "hash": "8Y7ddIVDDdijOZcTKzMOxqa3RpJOjUGswRdND/Hdddg=" + } + ] + }, + "programSourcesDescriptionFolder": "${workspaceFolder}/puya_and_teal/", + "stopOnEntry": true + }, + { + "type": "avm", + "request": "launch", + "name": "Debug Puya with Third Party export", + "simulateTraceFile": "${workspaceFolder}/puya_third_parties/simulate-response.json", + "programSourcesDescription": { + "txn-group-sources": [ + { + "sourcemap-location": "RSATester.approval.puya.map", + "hash": "sHHTmOJCdECH2FtRp7ukCKBX/bhw3MhiwEVLw5lakig=" + }, + { + "sourcemap-location": ".algokit/sources/opup/approval.teal.map", + "hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=" + } + ] + }, + "programSourcesDescriptionFolder": "${workspaceFolder}/puya_third_parties/", + "stopOnEntry": true + } ] } diff --git a/sampleWorkspace/README.md b/sampleWorkspace/README.md new file mode 100644 index 0000000..424cf79 --- /dev/null +++ b/sampleWorkspace/README.md @@ -0,0 +1,13 @@ +## How to navigate examples? + +This folder contains sample workspaces representing various debugger use cases: + +- Simulate traces, TEAL sources and sourcemaps (e.g. `stack-scratch`, `stepping-test`, `app-state-changes`, `errors`). Various examples of using the debugger with TEAL sourcemaps and sources. +- Simulate traces, [Puya](https://github.com/algorandfoundation/puya) sources and sourcemaps (e.g. `puya`, `puya_third_parties`). Showcasing various ways to simulate traces with puya sourcemaps and sources. +- Simulate traces, TEAL sources & sourcemaps and Puya sources & sourcemaps (e.g. `puya_and_teal`). Showcasing the ability to mix and match TEAL and Puya frontend languages within the same debug session. + +> **Note:** The frontend language for Puya compiler scenarios is [Algorand Python](https://pypi.org/project/algorand-python/). + +### Launching sample workspaces + +Refer to the [launch.json](.vscode/launch.json) file to launch sample workspaces from VSCode. Keep the marketplace-based AlgoKit AVM Debugger extension disabled (if installed). diff --git a/sampleWorkspace/puya/DebugContract.approval.puya.map b/sampleWorkspace/puya/DebugContract.approval.puya.map deleted file mode 100644 index 9f08653..0000000 --- a/sampleWorkspace/puya/DebugContract.approval.puya.map +++ /dev/null @@ -1,3035 +0,0 @@ -{ - "version": 3, - "sources": [ - "/Users/danielm/repos/algorand/puya/examples/debug/contract.py", - "/algopy/arc4.py" - ], - "mappings": "ACAA;;;AAAA;ADGA;;;AAAA;;AAAA;;;AAAA;;;;;;AAAA;;;AAAA;;;;AAAA;AAAA;AACK;;AAAA;AAAA;AAAA;;AAAA;AADL;;;AAAA;AAAA;;;AAAA;AAAA;;;AAAA;AACK;;;AAAA;AAAA;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AADL;;AAAA;;;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;;;;;;;;AAGQ;;AAAQ;AAAJ;AACJ;;AAAA;;AAAI;AAAJ;;AACA;;AAAI;AAAJ;AAAA;;AACG;AAAX;;;AACY;;AAAA;;AAAI;AAAJ;;;;;AACC;;AAAA;;AAAA;AAAb;;;AACY;;AAAA;;AAAI;AAAJ;;;;;AACC;;AAAA;;AAAA;AAAb;;;AACY;;AAAQ;;AAAJ;AAAJ;;;;;AACC;;AAAA;AAAA;;AAAA;;;;AAAb;;;AACY;;AAAA;;AAAI;;;;;;;AAEL;;AAAA;;AAAA;AAAA;;AAAA;AAAX;;;AACiB;;AAAA;AAAA;;AAAA;;;AAAL;AAAA;;;;;AAEK;;AAAA;AAAA;;AAAA;;;AAAL;AAAA;;AAEJ;;AAAA;AAAM;;;AAAN;;AACA;;AAAA;AAAA;;AAAI;AAAJ;AAAA;;AACA;AAAM;;;AAAN;;AAEG;;AAAA;;;;AAAX;;;AACY;;AAAA;;AAAA;;;;;;;;AACD;AAAA;;AAAA;;;;AAAX;;;AACY;;AAAA;;AAAA;;;;;;;;AACG;;AAAA;;AAAA;AAAJ;;AAAA;;;;AAAX;;;AACY;;AAAA;;AAAI;;;;;AAER;AAAM;;;AACiB;AAAd;AAAA;;AAAA;AAAc;AAAT;AAAA;;AAAA;AAAd;AAEA;;AAAA;AAGR;;;AAEI;;AAAA;;AAAA;AAAA;;AACA;;AAAA;;AAAA;AAAA;;AACA;;AAAA;;AAAA;;AAAA;;AACK;;AAAL;;AAAA;;AACA;;AAAI;AACJ;;AAAA;;AAAI;AACQ;AAAA;AAAA;AAAL;;AAAA;AAAP;AAGJ;;;AAIO;;AADK;AACL;AAAP;;;AACe;;AAAA;AAAA;AAHF;AAGE;;AAAA;;AAAA;AAAP;AACQ;;AAHJ;AAGI;AAAL;;;AAA0B;;AAHzB;AAGyB;AAAP;AAAA;AAAA;AAJjB;AAIiB;;AAAA;AAAnB;AAAP", - "op_pc_offset": 2, - "pc_events": { - "0": { - "op": "callsub __puya_arc4_router__", - "callsub": "examples.debug.contract.DebugContract.__puya_arc4_router__", - "stack_out": [ - "tmp%0#0" - ], - "defined_out": [ - "tmp%0#0" - ] - }, - "3": { - "op": "return", - "stack_out": [] - }, - "4": { - "subroutine": "examples.debug.contract.DebugContract.__puya_arc4_router__", - "block": "__puya_arc4_router__", - "op": "proto 0 1", - "params": {}, - "stack_in": [] - }, - "7": { - "op": "txn NumAppArgs", - "stack_out": [ - "tmp%0#0" - ], - "defined_out": [ - "tmp%0#0" - ] - }, - "9": { - "op": "bz __puya_arc4_router___bare_routing@5", - "stack_out": [] - }, - "12": { - "op": "pushbytes 53574bff" - }, - "18": { - "op": "txna ApplicationArgs 0", - "stack_out": [ - "method<\"test(uint64,uint64,uint64)uint64\">", - "tmp%2#0" - ], - "defined_out": [ - "method<\"test(uint64,uint64,uint64)uint64\">", - "tmp%2#0" - ] - }, - "21": { - "op": "match __puya_arc4_router___test_route@2", - "stack_out": [] - }, - "25": { - "op": "intc 1", - "stack_out": [ - "0" - ], - "defined_out": [ - "0" - ] - }, - "26": { - "op": "retsub", - "retsub": true - }, - "27": { - "block": "__puya_arc4_router___test_route@2", - "op": "txn OnCompletion", - "stack_in": [], - "stack_out": [ - "tmp%3#0" - ], - "defined_out": [ - "tmp%3#0" - ] - }, - "29": { - "op": "!", - "stack_out": [ - "tmp%4#0" - ], - "defined_out": [ - "tmp%4#0" - ] - }, - "30": { - "op": "assert", - "stack_out": [] - }, - "31": { - "op": "txn ApplicationID", - "stack_out": [ - "tmp%5#0" - ], - "defined_out": [ - "tmp%5#0" - ] - }, - "33": { - "op": "assert", - "stack_out": [] - }, - "34": { - "op": "txna ApplicationArgs 1", - "stack_out": [ - "tmp%7#0" - ], - "defined_out": [ - "tmp%7#0" - ] - }, - "37": { - "op": "btoi", - "stack_out": [ - "tmp%8#0" - ], - "defined_out": [ - "tmp%8#0" - ] - }, - "38": { - "op": "txna ApplicationArgs 2", - "stack_out": [ - "tmp%8#0", - "tmp%9#0" - ], - "defined_out": [ - "tmp%9#0" - ] - }, - "41": { - "op": "btoi", - "stack_out": [ - "tmp%8#0", - "tmp%10#0" - ], - "defined_out": [ - "tmp%10#0" - ] - }, - "42": { - "op": "txna ApplicationArgs 3", - "stack_out": [ - "tmp%8#0", - "tmp%10#0", - "tmp%11#0" - ], - "defined_out": [ - "tmp%11#0" - ] - }, - "45": { - "op": "btoi", - "stack_out": [ - "tmp%8#0", - "tmp%10#0", - "tmp%12#0" - ], - "defined_out": [ - "tmp%10#0", - "tmp%12#0", - "tmp%8#0" - ] - }, - "46": { - "op": "callsub test", - "callsub": "examples.debug.contract.DebugContract.test", - "stack_out": [ - "tmp%13#0" - ], - "defined_out": [ - "tmp%13#0" - ] - }, - "49": { - "op": "itob", - "stack_out": [ - "val_as_bytes%0#0" - ], - "defined_out": [ - "val_as_bytes%0#0" - ] - }, - "50": { - "op": "pushbytes 151f7c75", - "stack_out": [ - "val_as_bytes%0#0", - "0x151f7c75" - ], - "defined_out": [ - "0x151f7c75" - ] - }, - "56": { - "op": "swap", - "stack_out": [ - "0x151f7c75", - "val_as_bytes%0#0" - ], - "defined_out": [ - "val_as_bytes%0#0" - ] - }, - "57": { - "op": "concat", - "stack_out": [ - "tmp%14#0" - ], - "defined_out": [ - "tmp%14#0" - ] - }, - "58": { - "op": "log", - "stack_out": [] - }, - "59": { - "op": "intc 0", - "stack_out": [ - "1" - ], - "defined_out": [ - "1" - ] - }, - "60": { - "op": "retsub", - "retsub": true - }, - "61": { - "block": "__puya_arc4_router___bare_routing@5", - "op": "txn OnCompletion", - "stack_in": [], - "stack_out": [ - "tmp%15#0" - ], - "defined_out": [ - "tmp%15#0" - ] - }, - "63": { - "op": "bnz __puya_arc4_router___after_if_else@9", - "stack_out": [] - }, - "66": { - "op": "txn ApplicationID", - "stack_out": [ - "tmp%16#0" - ], - "defined_out": [ - "tmp%16#0" - ] - }, - "68": { - "op": "!", - "stack_out": [ - "tmp%17#0" - ], - "defined_out": [ - "tmp%17#0" - ] - }, - "69": { - "op": "assert", - "stack_out": [] - }, - "70": { - "op": "intc 0", - "stack_out": [ - "1" - ], - "defined_out": [ - "1" - ] - }, - "71": { - "op": "retsub", - "retsub": true - }, - "72": { - "block": "__puya_arc4_router___after_if_else@9", - "op": "intc 1", - "stack_in": [], - "stack_out": [ - "0" - ], - "defined_out": [ - "0" - ] - }, - "73": { - "op": "retsub", - "retsub": true - }, - "74": { - "subroutine": "examples.debug.contract.DebugContract.test", - "block": "test", - "op": "proto 3 1", - "params": { - "x#0": "uint64", - "y#0": "uint64", - "z#0": "uint64" - }, - "stack_in": [] - }, - "77": { - "op": "intc 1", - "stack_out": [ - "bee#0" - ] - }, - "78": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0" - ] - }, - "79": { - "op": "pushbytes ", - "stack_out": [ - "bee#0", - "cea#0", - "a#30" - ] - }, - "81": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10" - ] - }, - "82": { - "op": "frame_dig -3", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "x#0 (copy)" - ], - "defined_out": [ - "x#0 (copy)" - ] - }, - "84": { - "op": "intc 3", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "x#0 (copy)", - "TMPL_A_MULT" - ], - "defined_out": [ - "TMPL_A_MULT" - ] - }, - "85": { - "op": "*", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "86": { - "op": "frame_dig -3", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "x#0 (copy)" - ], - "defined_out": [ - "x#0 (copy)" - ] - }, - "88": { - "op": "frame_dig -2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "x#0 (copy)", - "y#0 (copy)" - ], - "defined_out": [ - "y#0 (copy)" - ] - }, - "90": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "{+}" - ], - "defined_out": [ - "{+}" - ] - }, - "91": { - "op": "dupn 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "b#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0", - "b#0 (copy)" - ] - }, - "93": { - "op": "frame_dig -1", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "b#0", - "b#0 (copy)", - "z#0 (copy)" - ], - "defined_out": [ - "z#0 (copy)" - ] - }, - "95": { - "op": "*", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "b#0", - "{*}" - ], - "defined_out": [ - "{*}" - ] - }, - "96": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "b#0", - "c#0", - "c#0 (copy)" - ], - "defined_out": [ - "c#0", - "c#0 (copy)" - ] - }, - "97": { - "op": "cover 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "c#0" - ], - "defined_out": [ - "b#0", - "c#0" - ] - }, - "99": { - "op": "<", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%0#0" - ], - "defined_out": [ - "tmp%0#0" - ] - }, - "100": { - "op": "bz test_else_body@2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ] - }, - "103": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "105": { - "op": "frame_dig -2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)", - "y#0 (copy)" - ], - "defined_out": [ - "y#0 (copy)" - ] - }, - "107": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "{+}" - ], - "defined_out": [ - "{+}" - ] - }, - "108": { - "op": "frame_bury 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "a#0" - ] - }, - "110": { - "op": "b test_after_if_else@11" - }, - "113": { - "block": "test_else_body@2", - "op": "frame_dig 4", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "115": { - "op": "frame_dig 6", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)", - "c#0 (copy)" - ], - "defined_out": [ - "c#0 (copy)" - ] - }, - "117": { - "op": "<", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%1#0" - ], - "defined_out": [ - "tmp%1#0" - ] - }, - "118": { - "op": "bz test_else_body@4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ] - }, - "121": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "123": { - "op": "frame_dig -1", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)", - "z#0 (copy)" - ], - "defined_out": [ - "z#0 (copy)" - ] - }, - "125": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "{+}" - ], - "defined_out": [ - "{+}" - ] - }, - "126": { - "op": "frame_bury 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "a#0" - ] - }, - "128": { - "op": "b test_after_if_else@10" - }, - "131": { - "block": "test_else_body@4", - "op": "frame_dig 5", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "133": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0 (copy)", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "135": { - "op": "<", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%2#0" - ], - "defined_out": [ - "tmp%2#0" - ] - }, - "136": { - "op": "bz test_else_body@6", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ] - }, - "139": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "141": { - "op": "pushint 3", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)", - "3" - ], - "defined_out": [ - "3" - ] - }, - "143": { - "op": "*", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "{*}" - ], - "defined_out": [ - "{*}" - ] - }, - "144": { - "op": "frame_bury 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "a#0" - ] - }, - "146": { - "op": "b test_after_if_else@10" - }, - "149": { - "block": "test_else_body@6", - "op": "frame_dig 5", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "151": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0", - "b#0 (copy)" - ] - }, - "152": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "b#0 (copy)", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "154": { - "op": ">", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "tmp%3#0" - ], - "defined_out": [ - "tmp%3#0" - ] - }, - "155": { - "op": "swap", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%3#0", - "b#0" - ], - "defined_out": [ - "b#0" - ] - }, - "156": { - "op": "frame_bury 3", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%3#0" - ], - "defined_out": [ - "b#10", - "tmp%3#0" - ] - }, - "158": { - "op": "bz test_after_if_else@8", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ] - }, - "161": { - "op": "frame_dig 5", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "163": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0 (copy)", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "165": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0" - ], - "defined_out": [ - "b#0" - ] - }, - "166": { - "op": "frame_bury 3", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "b#10" - ] - }, - "168": { - "block": "test_after_if_else@8", - "op": "frame_dig 3", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#10 (copy)" - ], - "defined_out": [ - "b#10 (copy)" - ] - }, - "170": { - "op": "frame_bury 5", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "b#0" - ] - }, - "172": { - "block": "test_after_if_else@11", - "op": "frame_dig 4", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "174": { - "op": "frame_dig 5", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "176": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%4#0" - ], - "defined_out": [ - "tmp%4#0" - ] - }, - "177": { - "op": "frame_dig 6", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%4#0", - "c#0 (copy)" - ], - "defined_out": [ - "c#0 (copy)" - ] - }, - "179": { - "op": "<", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%5#0" - ], - "defined_out": [ - "tmp%5#0" - ] - }, - "180": { - "op": "bz test_else_body@13", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ] - }, - "183": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "185": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0", - "a#0 (copy)" - ] - }, - "186": { - "op": "frame_dig -2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "a#0 (copy)", - "y#0 (copy)" - ], - "defined_out": [ - "y#0 (copy)" - ] - }, - "188": { - "op": "callsub some_func", - "callsub": "examples.debug.contract.some_func", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%6#0" - ], - "defined_out": [ - "a#0", - "tmp%6#0" - ] - }, - "191": { - "op": "*", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "{*}" - ], - "defined_out": [ - "{*}" - ] - }, - "192": { - "op": "frame_bury 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "a#0" - ] - }, - "194": { - "op": "b test_after_if_else@14" - }, - "197": { - "block": "test_else_body@13", - "op": "frame_dig 5", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "199": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0", - "b#0 (copy)" - ] - }, - "200": { - "op": "frame_dig -1", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "b#0 (copy)", - "z#0 (copy)" - ], - "defined_out": [ - "z#0 (copy)" - ] - }, - "202": { - "op": "callsub some_func", - "callsub": "examples.debug.contract.some_func", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "tmp%7#0" - ], - "defined_out": [ - "b#0", - "tmp%7#0" - ] - }, - "205": { - "op": "*", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "{*}" - ], - "defined_out": [ - "{*}" - ] - }, - "206": { - "op": "frame_bury 5", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "b#0" - ] - }, - "208": { - "block": "test_after_if_else@14", - "op": "frame_dig 5", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "210": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0", - "b#0 (copy)" - ] - }, - "211": { - "op": "callsub itoa", - "callsub": "examples.debug.contract.itoa", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "{itoa}" - ], - "defined_out": [ - "{itoa}" - ] - }, - "214": { - "op": "frame_bury 0", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0" - ], - "defined_out": [ - "bee#0" - ] - }, - "216": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "b#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "218": { - "op": "dup" - }, - "219": { - "op": "uncover 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "a#0 (copy)", - "b#0" - ], - "defined_out": [ - "a#0", - "a#0 (copy)", - "b#0" - ] - }, - "221": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "{+}" - ], - "defined_out": [ - "{+}" - ] - }, - "222": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "c#0", - "c#0 (copy)" - ], - "defined_out": [ - "c#0", - "c#0 (copy)" - ] - }, - "223": { - "op": "frame_bury 6", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "c#0" - ], - "defined_out": [ - "c#0" - ] - }, - "225": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "c#0", - "c#0 (copy)" - ], - "defined_out": [ - "c#0 (copy)" - ] - }, - "226": { - "op": "callsub itoa", - "callsub": "examples.debug.contract.itoa", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "c#0", - "{itoa}" - ], - "defined_out": [ - "{itoa}" - ] - }, - "229": { - "op": "frame_bury 1", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "c#0" - ], - "defined_out": [ - "cea#0" - ] - }, - "231": { - "op": "dig 1", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "233": { - "op": ">", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%8#0" - ], - "defined_out": [ - "c#0", - "tmp%8#0" - ] - }, - "234": { - "op": "swap", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%8#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "235": { - "op": "frame_bury 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%8#0" - ], - "defined_out": [ - "a#30", - "tmp%8#0" - ] - }, - "237": { - "op": "bz test_after_if_else@16", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ] - }, - "240": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "242": { - "op": "frame_dig 6", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)", - "c#0 (copy)" - ], - "defined_out": [ - "c#0 (copy)" - ] - }, - "244": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "245": { - "op": "frame_bury 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "a#30" - ] - }, - "247": { - "block": "test_after_if_else@16", - "op": "frame_dig 2", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#30 (copy)" - ], - "defined_out": [ - "a#30 (copy)" - ] - }, - "249": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0", - "a#0 (copy)" - ] - }, - "250": { - "op": "frame_bury 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "252": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "253": { - "op": "frame_dig 5", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "a#0 (copy)", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "255": { - "op": "<", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%9#0" - ], - "defined_out": [ - "tmp%9#0" - ] - }, - "256": { - "op": "swap", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%9#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "257": { - "op": "frame_bury 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%9#0" - ], - "defined_out": [ - "a#30", - "tmp%9#0" - ] - }, - "259": { - "op": "bz test_after_if_else@18", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ] - }, - "262": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "264": { - "op": "frame_dig 5", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "266": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "267": { - "op": "frame_bury 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "a#30" - ] - }, - "269": { - "block": "test_after_if_else@18", - "op": "frame_dig 2", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#30 (copy)" - ], - "defined_out": [ - "a#30 (copy)" - ] - }, - "271": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0", - "a#0 (copy)" - ] - }, - "272": { - "op": "frame_bury 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "274": { - "op": "frame_dig 5", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "276": { - "op": "frame_dig 6", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "b#0 (copy)", - "c#0 (copy)" - ], - "defined_out": [ - "c#0 (copy)" - ] - }, - "278": { - "op": "+", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%10#0" - ], - "defined_out": [ - "tmp%10#0" - ] - }, - "279": { - "op": "dig 1", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%10#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "281": { - "op": ">", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%11#0" - ], - "defined_out": [ - "tmp%11#0" - ] - }, - "282": { - "op": "swap", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%11#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "283": { - "op": "frame_bury 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "tmp%11#0" - ], - "defined_out": [ - "a#30", - "tmp%11#0" - ] - }, - "285": { - "op": "bz test_after_if_else@20", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ] - }, - "288": { - "op": "frame_dig 4", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "290": { - "op": "frame_dig -1", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0 (copy)", - "z#0 (copy)" - ], - "defined_out": [ - "z#0 (copy)" - ] - }, - "292": { - "op": "*", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "293": { - "op": "frame_bury 2", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "defined_out": [ - "a#30" - ] - }, - "295": { - "block": "test_after_if_else@20", - "op": "frame_dig 2", - "stack_in": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0" - ], - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "297": { - "op": "dup", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "298": { - "op": "callsub itoa", - "callsub": "examples.debug.contract.itoa", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "aye#0" - ], - "defined_out": [ - "aye#0" - ] - }, - "301": { - "op": "bytec 0", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "aye#0", - "\" \"" - ], - "defined_out": [ - "\" \"" - ] - }, - "302": { - "op": "concat", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%12#0" - ], - "defined_out": [ - "tmp%12#0" - ] - }, - "303": { - "op": "frame_dig 0", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%12#0", - "bee#0 (copy)" - ], - "defined_out": [ - "bee#0 (copy)" - ] - }, - "305": { - "op": "concat", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%13#0" - ], - "defined_out": [ - "tmp%13#0" - ] - }, - "306": { - "op": "bytec 0", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%13#0", - "\" \"" - ], - "defined_out": [ - "\" \"" - ] - }, - "307": { - "op": "concat", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%14#0" - ], - "defined_out": [ - "tmp%14#0" - ] - }, - "308": { - "op": "frame_dig 1", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%14#0", - "cea#0 (copy)" - ], - "defined_out": [ - "cea#0 (copy)" - ] - }, - "310": { - "op": "concat", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0", - "tmp%15#0" - ], - "defined_out": [ - "tmp%15#0" - ] - }, - "311": { - "op": "log", - "stack_out": [ - "bee#0", - "cea#0", - "a#30", - "b#10", - "a#0", - "b#0", - "c#0", - "a#0" - ], - "defined_out": [ - "a#0" - ] - }, - "312": { - "op": "frame_bury 0" - }, - "314": { - "op": "retsub", - "retsub": true - }, - "315": { - "subroutine": "examples.debug.contract.some_func", - "block": "some_func", - "op": "proto 2 1", - "params": { - "a#0": "uint64", - "b#0": "uint64" - }, - "stack_in": [] - }, - "318": { - "op": "frame_dig -2", - "stack_out": [ - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "320": { - "op": "frame_dig -1", - "stack_out": [ - "a#0 (copy)", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "322": { - "op": "+", - "stack_out": [ - "{+}" - ], - "defined_out": [ - "{+}" - ] - }, - "323": { - "op": "frame_bury -2", - "stack_out": [] - }, - "325": { - "op": "frame_dig -1", - "stack_out": [ - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "327": { - "op": "frame_dig -2", - "stack_out": [ - "b#0 (copy)", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "329": { - "op": "*", - "stack_out": [ - "{*}" - ], - "defined_out": [ - "{*}" - ] - }, - "330": { - "op": "frame_bury -1", - "stack_out": [] - }, - "332": { - "op": "frame_dig -2", - "stack_out": [ - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "334": { - "op": "frame_dig -1", - "stack_out": [ - "a#0 (copy)", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "336": { - "op": "+", - "stack_out": [ - "{+}" - ], - "defined_out": [ - "{+}" - ] - }, - "337": { - "op": "dup" - }, - "338": { - "op": "frame_bury -2", - "stack_out": [ - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "340": { - "op": "pushint 2", - "stack_out": [ - "a#0 (copy)", - "2" - ], - "defined_out": [ - "2" - ] - }, - "342": { - "op": "*", - "stack_out": [ - "{*}" - ], - "defined_out": [ - "{*}" - ] - }, - "343": { - "op": "dup" - }, - "344": { - "op": "frame_bury -2", - "stack_out": [ - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "346": { - "op": "frame_dig -1", - "stack_out": [ - "a#0 (copy)", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "348": { - "op": "+", - "stack_out": [ - "x#0" - ], - "defined_out": [ - "x#0" - ] - }, - "349": { - "op": "frame_dig -2", - "stack_out": [ - "x#0", - "a#0 (copy)" - ], - "defined_out": [ - "a#0 (copy)" - ] - }, - "351": { - "op": "frame_dig -1", - "stack_out": [ - "x#0", - "a#0 (copy)", - "b#0 (copy)" - ], - "defined_out": [ - "b#0 (copy)" - ] - }, - "353": { - "op": "*", - "stack_out": [ - "x#0", - "y#0" - ], - "defined_out": [ - "y#0" - ] - }, - "354": { - "op": "dup2", - "stack_out": [ - "x#0", - "y#0", - "x#0 (copy)", - "y#0 (copy)" - ], - "defined_out": [ - "x#0 (copy)", - "y#0 (copy)" - ] - }, - "355": { - "op": "<", - "stack_out": [ - "x#0", - "y#0", - "{<}" - ], - "defined_out": [ - "{<}" - ] - }, - "356": { - "op": "swap", - "stack_out": [ - "x#0", - "tmp%0#0", - "y#0" - ], - "defined_out": [ - "tmp%0#0", - "y#0" - ] - }, - "357": { - "op": "cover 2", - "stack_out": [ - "y#0", - "x#0", - "tmp%0#0" - ], - "defined_out": [ - "tmp%0#0", - "x#0" - ] - }, - "359": { - "op": "select", - "stack_out": [ - "tmp%1#0" - ], - "defined_out": [ - "tmp%1#0" - ] - }, - "360": { - "op": "retsub", - "retsub": true - }, - "361": { - "subroutine": "examples.debug.contract.itoa", - "block": "itoa", - "op": "proto 1 1", - "params": { - "i#0": "uint64" - }, - "stack_in": [] - }, - "364": { - "op": "frame_dig -1", - "stack_out": [ - "i#0 (copy)" - ], - "defined_out": [ - "i#0 (copy)" - ] - }, - "366": { - "op": "intc 2", - "stack_out": [ - "i#0 (copy)", - "10" - ], - "defined_out": [ - "10" - ] - }, - "367": { - "op": "<", - "stack_out": [ - "tmp%0#0" - ], - "defined_out": [ - "tmp%0#0" - ] - }, - "368": { - "op": "bz itoa_after_if_else@2", - "stack_out": [] - }, - "371": { - "op": "frame_dig -1", - "stack_out": [ - "i#0 (copy)" - ], - "defined_out": [ - "i#0 (copy)" - ] - }, - "373": { - "op": "intc 0", - "stack_out": [ - "i#0 (copy)", - "1" - ], - "defined_out": [ - "1" - ] - }, - "374": { - "op": "+", - "stack_out": [ - "index_plus_1%0#0" - ], - "defined_out": [ - "index_plus_1%0#0" - ] - }, - "375": { - "op": "bytec 1", - "stack_out": [ - "index_plus_1%0#0", - "0x30313233343536373839" - ], - "defined_out": [ - "0x30313233343536373839" - ] - }, - "376": { - "op": "frame_dig -1", - "stack_out": [ - "index_plus_1%0#0", - "0x30313233343536373839", - "i#0 (copy)" - ], - "defined_out": [ - "i#0 (copy)" - ] - }, - "378": { - "op": "uncover 2", - "stack_out": [ - "0x30313233343536373839", - "i#0 (copy)", - "index_plus_1%0#0" - ], - "defined_out": [ - "index_plus_1%0#0" - ] - }, - "380": { - "op": "substring3", - "stack_out": [ - "tmp%1#0" - ], - "defined_out": [ - "tmp%1#0" - ] - }, - "381": { - "op": "retsub", - "retsub": true - }, - "382": { - "block": "itoa_after_if_else@2", - "op": "frame_dig -1", - "stack_in": [], - "stack_out": [ - "i#0 (copy)" - ], - "defined_out": [ - "i#0 (copy)" - ] - }, - "384": { - "op": "intc 2", - "stack_out": [ - "i#0 (copy)", - "10" - ], - "defined_out": [ - "10" - ] - }, - "385": { - "op": "/", - "stack_out": [ - "tmp%2#0" - ], - "defined_out": [ - "tmp%2#0" - ] - }, - "386": { - "op": "callsub itoa", - "callsub": "examples.debug.contract.itoa", - "stack_out": [ - "tmp%3#0" - ], - "defined_out": [ - "tmp%3#0" - ] - }, - "389": { - "op": "frame_dig -1", - "stack_out": [ - "tmp%3#0", - "i#0 (copy)" - ], - "defined_out": [ - "i#0 (copy)" - ] - }, - "391": { - "op": "intc 2", - "stack_out": [ - "tmp%3#0", - "i#0 (copy)", - "10" - ], - "defined_out": [ - "10" - ] - }, - "392": { - "op": "%", - "stack_out": [ - "tmp%3#0", - "tmp%4#0" - ], - "defined_out": [ - "tmp%4#0" - ] - }, - "393": { - "op": "dup", - "stack_out": [ - "tmp%3#0", - "tmp%4#0", - "tmp%4#0 (copy)" - ], - "defined_out": [ - "tmp%4#0 (copy)" - ] - }, - "394": { - "op": "intc 0", - "stack_out": [ - "tmp%3#0", - "tmp%4#0", - "tmp%4#0 (copy)", - "1" - ], - "defined_out": [ - "1" - ] - }, - "395": { - "op": "+", - "stack_out": [ - "tmp%3#0", - "tmp%4#0", - "index_plus_1%1#0" - ], - "defined_out": [ - "index_plus_1%1#0" - ] - }, - "396": { - "op": "bytec 1", - "stack_out": [ - "tmp%3#0", - "tmp%4#0", - "index_plus_1%1#0", - "0x30313233343536373839" - ], - "defined_out": [ - "0x30313233343536373839" - ] - }, - "397": { - "op": "cover 2", - "stack_out": [ - "tmp%3#0", - "0x30313233343536373839", - "tmp%4#0", - "index_plus_1%1#0" - ], - "defined_out": [ - "index_plus_1%1#0", - "tmp%4#0" - ] - }, - "399": { - "op": "substring3", - "stack_out": [ - "tmp%3#0", - "tmp%5#0" - ], - "defined_out": [ - "tmp%3#0", - "tmp%5#0" - ] - }, - "400": { - "op": "concat", - "stack_out": [ - "tmp%6#0" - ], - "defined_out": [ - "tmp%6#0" - ] - }, - "401": { - "op": "retsub", - "retsub": true - } - } -} \ No newline at end of file diff --git a/sampleWorkspace/puya/ProofOfAttendance.approval.puya.map b/sampleWorkspace/puya/ProofOfAttendance.approval.puya.map new file mode 100644 index 0000000..9ebe79b --- /dev/null +++ b/sampleWorkspace/puya/ProofOfAttendance.approval.puya.map @@ -0,0 +1,5955 @@ +{ + "version": 3, + "sources": [ + "contract.py" + ], + "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA;;;AAAA;;AAAA;;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AASK;;AAAA;AAAA;AAAA;;AAAA;AAAA;AATL;;;AAAA;AASK;;;AAAA;AAAA;AAOA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;AAAA;AAAA;AAYA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;AAAA;AAAA;AAaA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;AAAA;AAAA;AAaA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;AAAA;AAAA;AAYA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;;AAAA;AAAA;AAAA;;AAAA;AA5FL;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AA4FK;;;AAAA;AAAA;AAqBA;;AAAA;AAAA;AAAA;;AAAA;AAjHL;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAiHK;;;AAAA;AAAA;AAwBA;;AAAA;AAAA;AAAA;;AAAA;AAzIL;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAyIK;;;AAAA;AAAA;AAwBA;;AAAA;AAAA;AAAA;;AAAA;AAjKL;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAiKK;;;AAAA;AAAA;AAjKL;AAAA;AASA;;;AAGY;;AAAqB;;AAArB;AADJ;AAGA;AAAA;;AAAA;;AAER;;;AAEe;AAAA;AAAA;AAAA;AAAuB;AAAA;AAAA;AAAA;AAAvB;AAAP;AAE8B;;AAAf;;;AACf;AAAA;AAAA;AAAA;AAAwB;AAAxB;AAAA;AAAA;AAAA;AAEqC;;AAAlB;AAAA;;AACZ;AAAP;AAEkB;;AAAyB;AAAA;AAA3C;;AA8JR;;;AAE6B;;;AAAsB;AAA3C;;;AAC+C;AAAA;AAAA;AAAA;AAAf;AAAnB;;;;;;;;;;;;;;;AAAb;AAAa;AAET;AAKQ;AAAA;;AAAA;AAAA;;;;;;;AADK;;;AADH;;;AADI;;;;;;;;;AAFd;;;;AAAA;;;AAAA;AAAA;;AADJ;AAhKR;;;AAEe;AAAA;AAAA;AAAA;AAAuB;AAAA;AAAA;AAAA;AAAvB;AAAP;AAE8B;;AAAf;;;AACf;AAAA;AAAA;AAAA;AAAwB;AAAxB;AAAA;AAAA;AAAA;AAEoC;;AACtB;AAAA;AAAA;;AACP;AAAP;AAEA;AAAA;AAAA;;AAER;;;AAEe;AAAA;AAAA;AAAA;AAAuB;AAAA;AAAA;AAAA;AAAvB;AAAP;AAE8B;;AAAf;;;AACf;AAAA;AAAA;AAAA;AAAwB;AAAxB;AAAA;AAAA;AAAA;AAE4B;;AACd;AAAA;AAAA;;AACP;AAAP;AAEY;AAAA;AAAZ;;AAER;;;AAEe;AAAA;AAAA;AAAA;AAAuB;AAAA;AAAA;AAAA;AAAvB;AAAP;AAE8B;;AAAf;;;AACf;AAAA;AAAA;AAAA;AAAwB;AAAxB;AAAA;AAAA;AAAA;AAEyC;AAA3B;;AAAA;AAAA;AAAA;;AACP;AAAP;AAEA;AAAa;;AAAb;AAAA;AAAA;AAAA;;AAER;;;AAE2C;;AAAlB;AACjB;AACO;AAAP;AAER;;;AAE4C;;AACnB;AAAA;AAAA;AACjB;AAAA;AACA;AAER;;;AAEoC;;AACX;AACjB;AACO;AAAP;AAER;;;AAEyB;AAAmB;;AAAnB;AAAA;AAAA;AAAA;AACjB;AAAA;AACA;AAER;;;;AAE2C;;AAAlB;AACjB;AACO;;AAAA;;AAA4B;AAAA;AAAA;AAAA;;AAA5B;AAAP;AACO;;AAAA;;AAAA;AAAP;AACO;;AAAA;;AAAA;AAAP;AAEI;;AAAA;;AAAqB;;AAAA;;AAAA;AAAA;;AAArB;AAAA;;;AAAqB;;AAA6B;;AAA7B;AAArB;;;;;;;;AADJ;AAII;;AAAA;;AACG;;AAAA;;AAAA;AAAA;;AADH;AAAA;;;AACG;;AACA;;AADA;AADH;;;;;;;;AADJ;AAOI;;AADJ;;AAAA;;;;AA6FR;;;AAEQ;AAEW;;AAEM;;;;;;;;;;;;;AAJjB;;;AAAA;;;AAAA;;AA1FR;;;;AAI4C;;AACnB;AAAA;AAAA;AAAA;AAAA;;AACjB;AACO;;AAAA;;AAAA;AAAP;AACO;;AAAA;;AAAA;AAAP;AACO;;AAAA;;AAAA;AAAP;AAEI;;AAAA;;AAAqB;;AAAA;;AAAA;AAAA;;AAArB;AAAA;;;AAAqB;;AAA6B;;AAA7B;AAArB;;;;;;;;AADJ;AAII;;AAAA;;AACG;;AAAA;;AAAA;AAAA;;AADH;AAAA;;;AACG;;AACA;;AADA;AADH;;;;;;;;AADJ;AAOI;;AADJ;;AAAA;;;;AAKR;;;;AAIoC;;AACX;AACjB;AACO;;AAAA;;AAA4B;AAAA;AAAA;AAAA;;AAA5B;AAAP;AACO;;AAAA;;AAAA;AAAP;AACO;;AAAA;;AAAA;AAAP;AAEI;;AAAA;;AAAqB;;AAAA;;AAAA;AAAA;;AAArB;AAAA;;;AAAqB;;AAA6B;;AAA7B;AAArB;;;;;;;;AADJ;AAII;;AAAA;;AACG;;AAAA;;AAAA;AAAA;;AADH;AAAA;;;AACG;;AACA;;AADA;AADH;;;;;;;;AADJ;AAOI;;AADJ;;AAAA;;;;AAKR;;;;AAIyB;AAAmB;;AAAnB;AAAA;AAAA;AAAA;AAAA;AAAA;;AACjB;AACO;;AAAA;;AAAA;AAAP;AACO;;AAAA;;AAAA;AAAP;AACO;;AAAA;;AAAA;AAAP;AAEI;;AAAA;;AAAqB;;AAAA;;AAAA;AAAA;;AAArB;AAAA;;;AAAqB;;AAA6B;;AAA7B;AAArB;;;;;;;;AADJ;AAII;;AAAA;;AACG;;AAAA;;AAAA;AAAA;;AADH;AAAA;;;AACG;;AACA;;AADA;AADH;;;;;;;;AADJ;AAOI;;AADJ;;AAAA;;;;AAlLR;;;AACQ;AAAqB;;AAArB;AACA;;AAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAjB;AAGA;AAAuB;AAAvB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;", + "op_pc_offset": 0, + "pc_events": { + "1": { + "subroutine": "contract.ProofOfAttendance.approval_program", + "params": {}, + "block": "contract.ProofOfAttendance.approval_program", + "stack_in": [], + "op": "intcblock 0 1 4" + }, + "6": { + "op": "bytecblock \"total_attendees\" \"max_attendees\" 0x151f7c75 \"box_map\" \"asset_url\" 0x068101" + }, + "65": { + "op": "txn ApplicationID", + "defined_out": [ + "app_id%0#0" + ], + "stack_out": [ + "app_id%0#0" + ] + }, + "67": { + "op": "bnz main_entrypoint@2", + "stack_out": [] + }, + "70": { + "callsub": "contract.ProofOfAttendance.__init__", + "op": "callsub __init__" + }, + "73": { + "block": "main_entrypoint@2", + "stack_in": [], + "callsub": "contract.ProofOfAttendance.__puya_arc4_router__", + "op": "callsub __puya_arc4_router__", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "76": { + "op": "return", + "stack_out": [] + }, + "77": { + "subroutine": "contract.ProofOfAttendance.__puya_arc4_router__", + "params": {}, + "block": "__puya_arc4_router__", + "stack_in": [], + "op": "proto 0 1" + }, + "80": { + "op": "txn NumAppArgs", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "82": { + "op": "bz __puya_arc4_router___after_if_else@18", + "stack_out": [] + }, + "85": { + "op": "pushbytess 0x1bcde52d 0xb8962962 0xfe9b38ed 0x9f5df126 0xbb36b1d7 0x77a24669 0xd2709766 0x7f323833 0x03d246c7 0xe946d06b 0x90a65932 0x9b7186d3 0xeb2af226 // method \"init(uint64)void\", method \"confirm_attendance()void\", method \"confirm_attendance_with_box()void\", method \"confirm_attendance_with_box_ref()void\", method \"confirm_attendance_with_box_map()void\", method \"get_poa_id()uint64\", method \"get_poa_id_with_box()uint64\", method \"get_poa_id_with_box_ref()uint64\", method \"get_poa_id_with_box_map()uint64\", method \"claim_poa(axfer)void\", method \"claim_poa_with_box(axfer)void\", method \"claim_poa_with_box_ref(axfer)void\", method \"claim_poa_with_box_map(axfer)void\"" + }, + "152": { + "op": "txna ApplicationArgs 0", + "defined_out": [ + "Method(claim_poa(axfer)void)", + "Method(claim_poa_with_box(axfer)void)", + "Method(claim_poa_with_box_map(axfer)void)", + "Method(claim_poa_with_box_ref(axfer)void)", + "Method(confirm_attendance()void)", + "Method(confirm_attendance_with_box()void)", + "Method(confirm_attendance_with_box_map()void)", + "Method(confirm_attendance_with_box_ref()void)", + "Method(get_poa_id()uint64)", + "Method(get_poa_id_with_box()uint64)", + "Method(get_poa_id_with_box_map()uint64)", + "Method(get_poa_id_with_box_ref()uint64)", + "Method(init(uint64)void)", + "tmp%2#0" + ], + "stack_out": [ + "Method(init(uint64)void)", + "Method(confirm_attendance()void)", + "Method(confirm_attendance_with_box()void)", + "Method(confirm_attendance_with_box_ref()void)", + "Method(confirm_attendance_with_box_map()void)", + "Method(get_poa_id()uint64)", + "Method(get_poa_id_with_box()uint64)", + "Method(get_poa_id_with_box_ref()uint64)", + "Method(get_poa_id_with_box_map()uint64)", + "Method(claim_poa(axfer)void)", + "Method(claim_poa_with_box(axfer)void)", + "Method(claim_poa_with_box_ref(axfer)void)", + "Method(claim_poa_with_box_map(axfer)void)", + "tmp%2#0" + ] + }, + "155": { + "op": "match __puya_arc4_router___init_route@2 __puya_arc4_router___confirm_attendance_route@3 __puya_arc4_router___confirm_attendance_with_box_route@4 __puya_arc4_router___confirm_attendance_with_box_ref_route@5 __puya_arc4_router___confirm_attendance_with_box_map_route@6 __puya_arc4_router___get_poa_id_route@7 __puya_arc4_router___get_poa_id_with_box_route@8 __puya_arc4_router___get_poa_id_with_box_ref_route@9 __puya_arc4_router___get_poa_id_with_box_map_route@10 __puya_arc4_router___claim_poa_route@11 __puya_arc4_router___claim_poa_with_box_route@12 __puya_arc4_router___claim_poa_with_box_ref_route@13 __puya_arc4_router___claim_poa_with_box_map_route@14", + "stack_out": [] + }, + "183": { + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "184": { + "retsub": true, + "op": "retsub" + }, + "185": { + "block": "__puya_arc4_router___init_route@2", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%3#0" + ], + "stack_out": [ + "tmp%3#0" + ] + }, + "187": { + "op": "!", + "defined_out": [ + "tmp%4#0" + ], + "stack_out": [ + "tmp%4#0" + ] + }, + "188": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "189": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%5#0" + ], + "stack_out": [ + "tmp%5#0" + ] + }, + "191": { + "op": "!", + "defined_out": [ + "tmp%6#0" + ], + "stack_out": [ + "tmp%6#0" + ] + }, + "192": { + "op": "assert // is creating", + "stack_out": [] + }, + "193": { + "op": "txna ApplicationArgs 1", + "defined_out": [ + "tmp%7#0" + ], + "stack_out": [ + "tmp%7#0" + ] + }, + "196": { + "op": "btoi", + "defined_out": [ + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0" + ] + }, + "197": { + "callsub": "contract.ProofOfAttendance.init", + "op": "callsub init", + "stack_out": [] + }, + "200": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "201": { + "retsub": true, + "op": "retsub" + }, + "202": { + "block": "__puya_arc4_router___confirm_attendance_route@3", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%9#0" + ], + "stack_out": [ + "tmp%9#0" + ] + }, + "204": { + "op": "!", + "defined_out": [ + "tmp%10#0" + ], + "stack_out": [ + "tmp%10#0" + ] + }, + "205": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "206": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%11#0" + ], + "stack_out": [ + "tmp%11#0" + ] + }, + "208": { + "op": "assert // is not creating", + "stack_out": [] + }, + "209": { + "callsub": "contract.ProofOfAttendance.confirm_attendance", + "op": "callsub confirm_attendance" + }, + "212": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "213": { + "retsub": true, + "op": "retsub" + }, + "214": { + "block": "__puya_arc4_router___confirm_attendance_with_box_route@4", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%13#0" + ], + "stack_out": [ + "tmp%13#0" + ] + }, + "216": { + "op": "!", + "defined_out": [ + "tmp%14#0" + ], + "stack_out": [ + "tmp%14#0" + ] + }, + "217": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "218": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%15#0" + ], + "stack_out": [ + "tmp%15#0" + ] + }, + "220": { + "op": "assert // is not creating", + "stack_out": [] + }, + "221": { + "callsub": "contract.ProofOfAttendance.confirm_attendance_with_box", + "op": "callsub confirm_attendance_with_box" + }, + "224": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "225": { + "retsub": true, + "op": "retsub" + }, + "226": { + "block": "__puya_arc4_router___confirm_attendance_with_box_ref_route@5", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%17#0" + ], + "stack_out": [ + "tmp%17#0" + ] + }, + "228": { + "op": "!", + "defined_out": [ + "tmp%18#0" + ], + "stack_out": [ + "tmp%18#0" + ] + }, + "229": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "230": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%19#0" + ], + "stack_out": [ + "tmp%19#0" + ] + }, + "232": { + "op": "assert // is not creating", + "stack_out": [] + }, + "233": { + "callsub": "contract.ProofOfAttendance.confirm_attendance_with_box_ref", + "op": "callsub confirm_attendance_with_box_ref" + }, + "236": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "237": { + "retsub": true, + "op": "retsub" + }, + "238": { + "block": "__puya_arc4_router___confirm_attendance_with_box_map_route@6", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%21#0" + ], + "stack_out": [ + "tmp%21#0" + ] + }, + "240": { + "op": "!", + "defined_out": [ + "tmp%22#0" + ], + "stack_out": [ + "tmp%22#0" + ] + }, + "241": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "242": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%23#0" + ], + "stack_out": [ + "tmp%23#0" + ] + }, + "244": { + "op": "assert // is not creating", + "stack_out": [] + }, + "245": { + "callsub": "contract.ProofOfAttendance.confirm_attendance_with_box_map", + "op": "callsub confirm_attendance_with_box_map" + }, + "248": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "249": { + "retsub": true, + "op": "retsub" + }, + "250": { + "block": "__puya_arc4_router___get_poa_id_route@7", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%25#0" + ], + "stack_out": [ + "tmp%25#0" + ] + }, + "252": { + "op": "!", + "defined_out": [ + "tmp%26#0" + ], + "stack_out": [ + "tmp%26#0" + ] + }, + "253": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "254": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%27#0" + ], + "stack_out": [ + "tmp%27#0" + ] + }, + "256": { + "op": "assert // is not creating", + "stack_out": [] + }, + "257": { + "callsub": "contract.ProofOfAttendance.get_poa_id", + "op": "callsub get_poa_id", + "defined_out": [ + "tmp%29#0" + ], + "stack_out": [ + "tmp%29#0" + ] + }, + "260": { + "op": "itob", + "defined_out": [ + "val_as_bytes%0#0" + ], + "stack_out": [ + "val_as_bytes%0#0" + ] + }, + "261": { + "op": "bytec_2 // 0x151f7c75", + "defined_out": [ + "0x151f7c75", + "val_as_bytes%0#0" + ], + "stack_out": [ + "val_as_bytes%0#0", + "0x151f7c75" + ] + }, + "262": { + "op": "swap", + "stack_out": [ + "0x151f7c75", + "val_as_bytes%0#0" + ] + }, + "263": { + "op": "concat", + "defined_out": [ + "tmp%30#0" + ], + "stack_out": [ + "tmp%30#0" + ] + }, + "264": { + "op": "log", + "stack_out": [] + }, + "265": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "266": { + "retsub": true, + "op": "retsub" + }, + "267": { + "block": "__puya_arc4_router___get_poa_id_with_box_route@8", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%31#0" + ], + "stack_out": [ + "tmp%31#0" + ] + }, + "269": { + "op": "!", + "defined_out": [ + "tmp%32#0" + ], + "stack_out": [ + "tmp%32#0" + ] + }, + "270": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "271": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%33#0" + ], + "stack_out": [ + "tmp%33#0" + ] + }, + "273": { + "op": "assert // is not creating", + "stack_out": [] + }, + "274": { + "callsub": "contract.ProofOfAttendance.get_poa_id_with_box", + "op": "callsub get_poa_id_with_box", + "defined_out": [ + "tmp%35#0" + ], + "stack_out": [ + "tmp%35#0" + ] + }, + "277": { + "op": "itob", + "defined_out": [ + "val_as_bytes%1#0" + ], + "stack_out": [ + "val_as_bytes%1#0" + ] + }, + "278": { + "op": "bytec_2 // 0x151f7c75", + "defined_out": [ + "0x151f7c75", + "val_as_bytes%1#0" + ], + "stack_out": [ + "val_as_bytes%1#0", + "0x151f7c75" + ] + }, + "279": { + "op": "swap", + "stack_out": [ + "0x151f7c75", + "val_as_bytes%1#0" + ] + }, + "280": { + "op": "concat", + "defined_out": [ + "tmp%36#0" + ], + "stack_out": [ + "tmp%36#0" + ] + }, + "281": { + "op": "log", + "stack_out": [] + }, + "282": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "283": { + "retsub": true, + "op": "retsub" + }, + "284": { + "block": "__puya_arc4_router___get_poa_id_with_box_ref_route@9", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%37#0" + ], + "stack_out": [ + "tmp%37#0" + ] + }, + "286": { + "op": "!", + "defined_out": [ + "tmp%38#0" + ], + "stack_out": [ + "tmp%38#0" + ] + }, + "287": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "288": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%39#0" + ], + "stack_out": [ + "tmp%39#0" + ] + }, + "290": { + "op": "assert // is not creating", + "stack_out": [] + }, + "291": { + "callsub": "contract.ProofOfAttendance.get_poa_id_with_box_ref", + "op": "callsub get_poa_id_with_box_ref", + "defined_out": [ + "tmp%41#0" + ], + "stack_out": [ + "tmp%41#0" + ] + }, + "294": { + "op": "itob", + "defined_out": [ + "val_as_bytes%2#0" + ], + "stack_out": [ + "val_as_bytes%2#0" + ] + }, + "295": { + "op": "bytec_2 // 0x151f7c75", + "defined_out": [ + "0x151f7c75", + "val_as_bytes%2#0" + ], + "stack_out": [ + "val_as_bytes%2#0", + "0x151f7c75" + ] + }, + "296": { + "op": "swap", + "stack_out": [ + "0x151f7c75", + "val_as_bytes%2#0" + ] + }, + "297": { + "op": "concat", + "defined_out": [ + "tmp%42#0" + ], + "stack_out": [ + "tmp%42#0" + ] + }, + "298": { + "op": "log", + "stack_out": [] + }, + "299": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "300": { + "retsub": true, + "op": "retsub" + }, + "301": { + "block": "__puya_arc4_router___get_poa_id_with_box_map_route@10", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%43#0" + ], + "stack_out": [ + "tmp%43#0" + ] + }, + "303": { + "op": "!", + "defined_out": [ + "tmp%44#0" + ], + "stack_out": [ + "tmp%44#0" + ] + }, + "304": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "305": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%45#0" + ], + "stack_out": [ + "tmp%45#0" + ] + }, + "307": { + "op": "assert // is not creating", + "stack_out": [] + }, + "308": { + "callsub": "contract.ProofOfAttendance.get_poa_id_with_box_map", + "op": "callsub get_poa_id_with_box_map", + "defined_out": [ + "tmp%47#0" + ], + "stack_out": [ + "tmp%47#0" + ] + }, + "311": { + "op": "itob", + "defined_out": [ + "val_as_bytes%3#0" + ], + "stack_out": [ + "val_as_bytes%3#0" + ] + }, + "312": { + "op": "bytec_2 // 0x151f7c75", + "defined_out": [ + "0x151f7c75", + "val_as_bytes%3#0" + ], + "stack_out": [ + "val_as_bytes%3#0", + "0x151f7c75" + ] + }, + "313": { + "op": "swap", + "stack_out": [ + "0x151f7c75", + "val_as_bytes%3#0" + ] + }, + "314": { + "op": "concat", + "defined_out": [ + "tmp%48#0" + ], + "stack_out": [ + "tmp%48#0" + ] + }, + "315": { + "op": "log", + "stack_out": [] + }, + "316": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "317": { + "retsub": true, + "op": "retsub" + }, + "318": { + "block": "__puya_arc4_router___claim_poa_route@11", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%49#0" + ], + "stack_out": [ + "tmp%49#0" + ] + }, + "320": { + "op": "!", + "defined_out": [ + "tmp%50#0" + ], + "stack_out": [ + "tmp%50#0" + ] + }, + "321": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "322": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%51#0" + ], + "stack_out": [ + "tmp%51#0" + ] + }, + "324": { + "op": "assert // is not creating", + "stack_out": [] + }, + "325": { + "op": "txn GroupIndex", + "defined_out": [ + "tmp%53#0" + ], + "stack_out": [ + "tmp%53#0" + ] + }, + "327": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "tmp%53#0" + ], + "stack_out": [ + "tmp%53#0", + "1" + ] + }, + "328": { + "op": "-", + "defined_out": [ + "gtxn_idx%0#0" + ], + "stack_out": [ + "gtxn_idx%0#0" + ] + }, + "329": { + "op": "dup", + "defined_out": [ + "gtxn_idx%0#0", + "gtxn_idx%0#0 (copy)" + ], + "stack_out": [ + "gtxn_idx%0#0", + "gtxn_idx%0#0 (copy)" + ] + }, + "330": { + "op": "gtxns TypeEnum", + "defined_out": [ + "gtxn_idx%0#0", + "gtxn_type%0#0" + ], + "stack_out": [ + "gtxn_idx%0#0", + "gtxn_type%0#0" + ] + }, + "332": { + "op": "intc_2 // axfer", + "defined_out": [ + "axfer", + "gtxn_idx%0#0", + "gtxn_type%0#0" + ], + "stack_out": [ + "gtxn_idx%0#0", + "gtxn_type%0#0", + "axfer" + ] + }, + "333": { + "op": "==", + "defined_out": [ + "gtxn_idx%0#0", + "gtxn_type_matches%0#0" + ], + "stack_out": [ + "gtxn_idx%0#0", + "gtxn_type_matches%0#0" + ] + }, + "334": { + "op": "assert // transaction type is axfer", + "stack_out": [ + "gtxn_idx%0#0" + ] + }, + "335": { + "callsub": "contract.ProofOfAttendance.claim_poa", + "op": "callsub claim_poa", + "stack_out": [] + }, + "338": { + "op": "intc_1 // 1", + "stack_out": [ + "1" + ] + }, + "339": { + "retsub": true, + "op": "retsub" + }, + "340": { + "block": "__puya_arc4_router___claim_poa_with_box_route@12", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%54#0" + ], + "stack_out": [ + "tmp%54#0" + ] + }, + "342": { + "op": "!", + "defined_out": [ + "tmp%55#0" + ], + "stack_out": [ + "tmp%55#0" + ] + }, + "343": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "344": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%56#0" + ], + "stack_out": [ + "tmp%56#0" + ] + }, + "346": { + "op": "assert // is not creating", + "stack_out": [] + }, + "347": { + "op": "txn GroupIndex", + "defined_out": [ + "tmp%58#0" + ], + "stack_out": [ + "tmp%58#0" + ] + }, + "349": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "tmp%58#0" + ], + "stack_out": [ + "tmp%58#0", + "1" + ] + }, + "350": { + "op": "-", + "defined_out": [ + "gtxn_idx%1#0" + ], + "stack_out": [ + "gtxn_idx%1#0" + ] + }, + "351": { + "op": "dup", + "defined_out": [ + "gtxn_idx%1#0", + "gtxn_idx%1#0 (copy)" + ], + "stack_out": [ + "gtxn_idx%1#0", + "gtxn_idx%1#0 (copy)" + ] + }, + "352": { + "op": "gtxns TypeEnum", + "defined_out": [ + "gtxn_idx%1#0", + "gtxn_type%1#0" + ], + "stack_out": [ + "gtxn_idx%1#0", + "gtxn_type%1#0" + ] + }, + "354": { + "op": "intc_2 // axfer", + "defined_out": [ + "axfer", + "gtxn_idx%1#0", + "gtxn_type%1#0" + ], + "stack_out": [ + "gtxn_idx%1#0", + "gtxn_type%1#0", + "axfer" + ] + }, + "355": { + "op": "==", + "defined_out": [ + "gtxn_idx%1#0", + "gtxn_type_matches%1#0" + ], + "stack_out": [ + "gtxn_idx%1#0", + "gtxn_type_matches%1#0" + ] + }, + "356": { + "op": "assert // transaction type is axfer", + "stack_out": [ + "gtxn_idx%1#0" + ] + }, + "357": { + "callsub": "contract.ProofOfAttendance.claim_poa_with_box", + "op": "callsub claim_poa_with_box", + "stack_out": [] + }, + "360": { + "op": "intc_1 // 1", + "stack_out": [ + "1" + ] + }, + "361": { + "retsub": true, + "op": "retsub" + }, + "362": { + "block": "__puya_arc4_router___claim_poa_with_box_ref_route@13", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%59#0" + ], + "stack_out": [ + "tmp%59#0" + ] + }, + "364": { + "op": "!", + "defined_out": [ + "tmp%60#0" + ], + "stack_out": [ + "tmp%60#0" + ] + }, + "365": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "366": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%61#0" + ], + "stack_out": [ + "tmp%61#0" + ] + }, + "368": { + "op": "assert // is not creating", + "stack_out": [] + }, + "369": { + "op": "txn GroupIndex", + "defined_out": [ + "tmp%63#0" + ], + "stack_out": [ + "tmp%63#0" + ] + }, + "371": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "tmp%63#0" + ], + "stack_out": [ + "tmp%63#0", + "1" + ] + }, + "372": { + "op": "-", + "defined_out": [ + "gtxn_idx%2#0" + ], + "stack_out": [ + "gtxn_idx%2#0" + ] + }, + "373": { + "op": "dup", + "defined_out": [ + "gtxn_idx%2#0", + "gtxn_idx%2#0 (copy)" + ], + "stack_out": [ + "gtxn_idx%2#0", + "gtxn_idx%2#0 (copy)" + ] + }, + "374": { + "op": "gtxns TypeEnum", + "defined_out": [ + "gtxn_idx%2#0", + "gtxn_type%2#0" + ], + "stack_out": [ + "gtxn_idx%2#0", + "gtxn_type%2#0" + ] + }, + "376": { + "op": "intc_2 // axfer", + "defined_out": [ + "axfer", + "gtxn_idx%2#0", + "gtxn_type%2#0" + ], + "stack_out": [ + "gtxn_idx%2#0", + "gtxn_type%2#0", + "axfer" + ] + }, + "377": { + "op": "==", + "defined_out": [ + "gtxn_idx%2#0", + "gtxn_type_matches%2#0" + ], + "stack_out": [ + "gtxn_idx%2#0", + "gtxn_type_matches%2#0" + ] + }, + "378": { + "op": "assert // transaction type is axfer", + "stack_out": [ + "gtxn_idx%2#0" + ] + }, + "379": { + "callsub": "contract.ProofOfAttendance.claim_poa_with_box_ref", + "op": "callsub claim_poa_with_box_ref", + "stack_out": [] + }, + "382": { + "op": "intc_1 // 1", + "stack_out": [ + "1" + ] + }, + "383": { + "retsub": true, + "op": "retsub" + }, + "384": { + "block": "__puya_arc4_router___claim_poa_with_box_map_route@14", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%64#0" + ], + "stack_out": [ + "tmp%64#0" + ] + }, + "386": { + "op": "!", + "defined_out": [ + "tmp%65#0" + ], + "stack_out": [ + "tmp%65#0" + ] + }, + "387": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "388": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%66#0" + ], + "stack_out": [ + "tmp%66#0" + ] + }, + "390": { + "op": "assert // is not creating", + "stack_out": [] + }, + "391": { + "op": "txn GroupIndex", + "defined_out": [ + "tmp%68#0" + ], + "stack_out": [ + "tmp%68#0" + ] + }, + "393": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "tmp%68#0" + ], + "stack_out": [ + "tmp%68#0", + "1" + ] + }, + "394": { + "op": "-", + "defined_out": [ + "gtxn_idx%3#0" + ], + "stack_out": [ + "gtxn_idx%3#0" + ] + }, + "395": { + "op": "dup", + "defined_out": [ + "gtxn_idx%3#0", + "gtxn_idx%3#0 (copy)" + ], + "stack_out": [ + "gtxn_idx%3#0", + "gtxn_idx%3#0 (copy)" + ] + }, + "396": { + "op": "gtxns TypeEnum", + "defined_out": [ + "gtxn_idx%3#0", + "gtxn_type%3#0" + ], + "stack_out": [ + "gtxn_idx%3#0", + "gtxn_type%3#0" + ] + }, + "398": { + "op": "intc_2 // axfer", + "defined_out": [ + "axfer", + "gtxn_idx%3#0", + "gtxn_type%3#0" + ], + "stack_out": [ + "gtxn_idx%3#0", + "gtxn_type%3#0", + "axfer" + ] + }, + "399": { + "op": "==", + "defined_out": [ + "gtxn_idx%3#0", + "gtxn_type_matches%3#0" + ], + "stack_out": [ + "gtxn_idx%3#0", + "gtxn_type_matches%3#0" + ] + }, + "400": { + "op": "assert // transaction type is axfer", + "stack_out": [ + "gtxn_idx%3#0" + ] + }, + "401": { + "callsub": "contract.ProofOfAttendance.claim_poa_with_box_map", + "op": "callsub claim_poa_with_box_map", + "stack_out": [] + }, + "404": { + "op": "intc_1 // 1", + "stack_out": [ + "1" + ] + }, + "405": { + "retsub": true, + "op": "retsub" + }, + "406": { + "block": "__puya_arc4_router___after_if_else@18", + "stack_in": [], + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "407": { + "retsub": true, + "op": "retsub" + }, + "408": { + "subroutine": "contract.ProofOfAttendance.init", + "params": { + "max_attendees#0": "uint64" + }, + "block": "init", + "stack_in": [], + "op": "proto 1 0" + }, + "411": { + "op": "txn Sender" + }, + "413": { + "op": "global CreatorAddress", + "defined_out": [ + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "tmp%0#0", + "tmp%1#0" + ] + }, + "415": { + "op": "==", + "defined_out": [ + "tmp%2#0" + ], + "stack_out": [ + "tmp%2#0" + ] + }, + "416": { + "op": "assert // Only creator can initialize", + "stack_out": [] + }, + "417": { + "op": "bytec_1 // \"max_attendees\"", + "defined_out": [ + "\"max_attendees\"" + ], + "stack_out": [ + "\"max_attendees\"" + ] + }, + "418": { + "op": "frame_dig -1", + "defined_out": [ + "\"max_attendees\"", + "max_attendees#0 (copy)" + ], + "stack_out": [ + "\"max_attendees\"", + "max_attendees#0 (copy)" + ] + }, + "420": { + "op": "app_global_put", + "stack_out": [] + }, + "421": { + "retsub": true, + "op": "retsub" + }, + "422": { + "subroutine": "contract.ProofOfAttendance.confirm_attendance", + "params": {}, + "block": "confirm_attendance", + "stack_in": [], + "op": "proto 0 0" + }, + "425": { + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "426": { + "op": "bytec_0 // \"total_attendees\"", + "defined_out": [ + "\"total_attendees\"", + "0" + ], + "stack_out": [ + "0", + "\"total_attendees\"" + ] + }, + "427": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%0#0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_exists%0#0" + ] + }, + "428": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "maybe_value%0#0" + ] + }, + "429": { + "op": "intc_0 // 0", + "stack_out": [ + "maybe_value%0#0", + "0" + ] + }, + "430": { + "op": "bytec_1 // \"max_attendees\"", + "defined_out": [ + "\"max_attendees\"", + "0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "0", + "\"max_attendees\"" + ] + }, + "431": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%1#0", + "maybe_value%0#0", + "maybe_value%1#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_value%1#0", + "maybe_exists%1#0" + ] + }, + "432": { + "op": "assert // check self.max_attendees exists", + "stack_out": [ + "maybe_value%0#0", + "maybe_value%1#0" + ] + }, + "433": { + "op": "<", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "434": { + "op": "assert // Max attendees reached", + "stack_out": [] + }, + "435": { + "op": "txn Sender", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "437": { + "callsub": "contract.ProofOfAttendance._mint_poa", + "op": "callsub _mint_poa", + "defined_out": [ + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0" + ] + }, + "440": { + "op": "intc_0 // 0", + "stack_out": [ + "minted_asset#0", + "0" + ] + }, + "441": { + "op": "bytec_0 // \"total_attendees\"", + "stack_out": [ + "minted_asset#0", + "0", + "\"total_attendees\"" + ] + }, + "442": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%2#0", + "maybe_value%2#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0", + "maybe_exists%2#0" + ] + }, + "443": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0" + ] + }, + "444": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "maybe_value%2#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0", + "1" + ] + }, + "445": { + "op": "+", + "defined_out": [ + "minted_asset#0", + "new_state_value%0#0" + ], + "stack_out": [ + "minted_asset#0", + "new_state_value%0#0" + ] + }, + "446": { + "op": "bytec_0 // \"total_attendees\"", + "stack_out": [ + "minted_asset#0", + "new_state_value%0#0", + "\"total_attendees\"" + ] + }, + "447": { + "op": "swap", + "stack_out": [ + "minted_asset#0", + "\"total_attendees\"", + "new_state_value%0#0" + ] + }, + "448": { + "op": "app_global_put", + "stack_out": [ + "minted_asset#0" + ] + }, + "449": { + "op": "txn Sender", + "defined_out": [ + "minted_asset#0", + "tmp%2#0" + ], + "stack_out": [ + "minted_asset#0", + "tmp%2#0" + ] + }, + "451": { + "op": "box_get", + "defined_out": [ + "_id#0", + "has_claimed#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "_id#0", + "has_claimed#0" + ] + }, + "452": { + "op": "bury 1", + "stack_out": [ + "minted_asset#0", + "has_claimed#0" + ] + }, + "454": { + "op": "!", + "defined_out": [ + "minted_asset#0", + "tmp%3#0" + ], + "stack_out": [ + "minted_asset#0", + "tmp%3#0" + ] + }, + "455": { + "op": "assert // Already claimed POA", + "stack_out": [ + "minted_asset#0" + ] + }, + "456": { + "op": "txn Sender", + "defined_out": [ + "minted_asset#0", + "tmp%4#0" + ], + "stack_out": [ + "minted_asset#0", + "tmp%4#0" + ] + }, + "458": { + "op": "swap", + "stack_out": [ + "tmp%4#0", + "minted_asset#0" + ] + }, + "459": { + "op": "itob", + "defined_out": [ + "tmp%4#0", + "tmp%5#0" + ], + "stack_out": [ + "tmp%4#0", + "tmp%5#0" + ] + }, + "460": { + "op": "box_put", + "stack_out": [] + }, + "461": { + "retsub": true, + "op": "retsub" + }, + "462": { + "subroutine": "contract.ProofOfAttendance._mint_poa", + "params": { + "claimer#0": "bytes" + }, + "block": "_mint_poa", + "stack_in": [], + "op": "proto 1 1" + }, + "465": { + "op": "pushint 10000 // 10000", + "defined_out": [ + "10000" + ], + "stack_out": [ + "10000" + ] + }, + "468": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "10000" + ], + "stack_out": [ + "10000", + "1" + ] + }, + "469": { + "callsub": "_puya_lib.util.ensure_budget", + "op": "callsub ensure_budget", + "stack_out": [] + }, + "472": { + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "473": { + "op": "bytec_0 // \"total_attendees\"", + "defined_out": [ + "\"total_attendees\"", + "0" + ], + "stack_out": [ + "0", + "\"total_attendees\"" + ] + }, + "474": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%0#0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_exists%0#0" + ] + }, + "475": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "maybe_value%0#0" + ] + }, + "476": { + "op": "itob", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "477": { + "op": "pushbytes 0x416c676f4b697420504f412023", + "defined_out": [ + "0x416c676f4b697420504f412023", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "0x416c676f4b697420504f412023" + ] + }, + "492": { + "op": "swap", + "stack_out": [ + "0x416c676f4b697420504f412023", + "tmp%0#0" + ] + }, + "493": { + "op": "concat", + "defined_out": [ + "asset_name#0" + ], + "stack_out": [ + "asset_name#0" + ] + }, + "494": { + "op": "itxn_begin" + }, + "495": { + "op": "intc_0 // 0", + "stack_out": [ + "asset_name#0", + "0" + ] + }, + "496": { + "op": "bytec 4 // \"asset_url\"", + "defined_out": [ + "\"asset_url\"", + "0", + "asset_name#0" + ], + "stack_out": [ + "asset_name#0", + "0", + "\"asset_url\"" + ] + }, + "498": { + "op": "app_global_get_ex", + "defined_out": [ + "asset_name#0", + "maybe_exists%1#0", + "maybe_value%1#0" + ], + "stack_out": [ + "asset_name#0", + "maybe_value%1#0", + "maybe_exists%1#0" + ] + }, + "499": { + "op": "assert // check self.asset_url exists", + "stack_out": [ + "asset_name#0", + "maybe_value%1#0" + ] + }, + "500": { + "op": "frame_dig -1", + "defined_out": [ + "asset_name#0", + "claimer#0 (copy)", + "maybe_value%1#0" + ], + "stack_out": [ + "asset_name#0", + "maybe_value%1#0", + "claimer#0 (copy)" + ] + }, + "502": { + "op": "itxn_field ConfigAssetManager", + "stack_out": [ + "asset_name#0", + "maybe_value%1#0" + ] + }, + "504": { + "op": "itxn_field ConfigAssetURL", + "stack_out": [ + "asset_name#0" + ] + }, + "506": { + "op": "intc_0 // 0", + "stack_out": [ + "asset_name#0", + "0" + ] + }, + "507": { + "op": "itxn_field ConfigAssetDecimals", + "stack_out": [ + "asset_name#0" + ] + }, + "509": { + "op": "intc_1 // 1", + "stack_out": [ + "asset_name#0", + "1" + ] + }, + "510": { + "op": "itxn_field ConfigAssetTotal", + "stack_out": [ + "asset_name#0" + ] + }, + "512": { + "op": "pushbytes \"POA\"", + "defined_out": [ + "\"POA\"", + "asset_name#0" + ], + "stack_out": [ + "asset_name#0", + "\"POA\"" + ] + }, + "517": { + "op": "itxn_field ConfigAssetUnitName", + "stack_out": [ + "asset_name#0" + ] + }, + "519": { + "op": "itxn_field ConfigAssetName", + "stack_out": [] + }, + "521": { + "op": "pushint 3 // acfg", + "defined_out": [ + "acfg" + ], + "stack_out": [ + "acfg" + ] + }, + "523": { + "op": "itxn_field TypeEnum", + "stack_out": [] + }, + "525": { + "op": "intc_0 // 0", + "stack_out": [ + "0" + ] + }, + "526": { + "op": "itxn_field Fee", + "stack_out": [] + }, + "528": { + "op": "itxn_submit" + }, + "529": { + "op": "itxn CreatedAssetID", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "531": { + "retsub": true, + "op": "retsub" + }, + "532": { + "subroutine": "contract.ProofOfAttendance.confirm_attendance_with_box", + "params": {}, + "block": "confirm_attendance_with_box", + "stack_in": [], + "op": "proto 0 0" + }, + "535": { + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "536": { + "op": "bytec_0 // \"total_attendees\"", + "defined_out": [ + "\"total_attendees\"", + "0" + ], + "stack_out": [ + "0", + "\"total_attendees\"" + ] + }, + "537": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%0#0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_exists%0#0" + ] + }, + "538": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "maybe_value%0#0" + ] + }, + "539": { + "op": "intc_0 // 0", + "stack_out": [ + "maybe_value%0#0", + "0" + ] + }, + "540": { + "op": "bytec_1 // \"max_attendees\"", + "defined_out": [ + "\"max_attendees\"", + "0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "0", + "\"max_attendees\"" + ] + }, + "541": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%1#0", + "maybe_value%0#0", + "maybe_value%1#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_value%1#0", + "maybe_exists%1#0" + ] + }, + "542": { + "op": "assert // check self.max_attendees exists", + "stack_out": [ + "maybe_value%0#0", + "maybe_value%1#0" + ] + }, + "543": { + "op": "<", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "544": { + "op": "assert // Max attendees reached", + "stack_out": [] + }, + "545": { + "op": "txn Sender", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "547": { + "callsub": "contract.ProofOfAttendance._mint_poa", + "op": "callsub _mint_poa", + "defined_out": [ + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0" + ] + }, + "550": { + "op": "intc_0 // 0", + "stack_out": [ + "minted_asset#0", + "0" + ] + }, + "551": { + "op": "bytec_0 // \"total_attendees\"", + "stack_out": [ + "minted_asset#0", + "0", + "\"total_attendees\"" + ] + }, + "552": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%2#0", + "maybe_value%2#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0", + "maybe_exists%2#0" + ] + }, + "553": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0" + ] + }, + "554": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "maybe_value%2#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0", + "1" + ] + }, + "555": { + "op": "+", + "defined_out": [ + "minted_asset#0", + "new_state_value%0#0" + ], + "stack_out": [ + "minted_asset#0", + "new_state_value%0#0" + ] + }, + "556": { + "op": "bytec_0 // \"total_attendees\"", + "stack_out": [ + "minted_asset#0", + "new_state_value%0#0", + "\"total_attendees\"" + ] + }, + "557": { + "op": "swap", + "stack_out": [ + "minted_asset#0", + "\"total_attendees\"", + "new_state_value%0#0" + ] + }, + "558": { + "op": "app_global_put", + "stack_out": [ + "minted_asset#0" + ] + }, + "559": { + "op": "txn Sender" + }, + "561": { + "op": "dup", + "defined_out": [ + "box#0", + "box#0 (copy)", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "box#0", + "box#0 (copy)" + ] + }, + "562": { + "op": "box_len", + "defined_out": [ + "box#0", + "has_claimed#0", + "maybe_value%3#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "box#0", + "maybe_value%3#0", + "has_claimed#0" + ] + }, + "563": { + "op": "bury 1", + "stack_out": [ + "minted_asset#0", + "box#0", + "has_claimed#0" + ] + }, + "565": { + "op": "!", + "defined_out": [ + "box#0", + "minted_asset#0", + "tmp%2#0" + ], + "stack_out": [ + "minted_asset#0", + "box#0", + "tmp%2#0" + ] + }, + "566": { + "op": "assert // Already claimed POA", + "stack_out": [ + "minted_asset#0", + "box#0" + ] + }, + "567": { + "op": "swap", + "stack_out": [ + "box#0", + "minted_asset#0" + ] + }, + "568": { + "op": "itob", + "defined_out": [ + "box#0", + "new_box_value%0#0" + ], + "stack_out": [ + "box#0", + "new_box_value%0#0" + ] + }, + "569": { + "op": "box_put", + "stack_out": [] + }, + "570": { + "retsub": true, + "op": "retsub" + }, + "571": { + "subroutine": "contract.ProofOfAttendance.confirm_attendance_with_box_ref", + "params": {}, + "block": "confirm_attendance_with_box_ref", + "stack_in": [], + "op": "proto 0 0" + }, + "574": { + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "575": { + "op": "bytec_0 // \"total_attendees\"", + "defined_out": [ + "\"total_attendees\"", + "0" + ], + "stack_out": [ + "0", + "\"total_attendees\"" + ] + }, + "576": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%0#0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_exists%0#0" + ] + }, + "577": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "maybe_value%0#0" + ] + }, + "578": { + "op": "intc_0 // 0", + "stack_out": [ + "maybe_value%0#0", + "0" + ] + }, + "579": { + "op": "bytec_1 // \"max_attendees\"", + "defined_out": [ + "\"max_attendees\"", + "0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "0", + "\"max_attendees\"" + ] + }, + "580": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%1#0", + "maybe_value%0#0", + "maybe_value%1#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_value%1#0", + "maybe_exists%1#0" + ] + }, + "581": { + "op": "assert // check self.max_attendees exists", + "stack_out": [ + "maybe_value%0#0", + "maybe_value%1#0" + ] + }, + "582": { + "op": "<", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "583": { + "op": "assert // Max attendees reached", + "stack_out": [] + }, + "584": { + "op": "txn Sender", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "586": { + "callsub": "contract.ProofOfAttendance._mint_poa", + "op": "callsub _mint_poa", + "defined_out": [ + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0" + ] + }, + "589": { + "op": "intc_0 // 0", + "stack_out": [ + "minted_asset#0", + "0" + ] + }, + "590": { + "op": "bytec_0 // \"total_attendees\"", + "stack_out": [ + "minted_asset#0", + "0", + "\"total_attendees\"" + ] + }, + "591": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%2#0", + "maybe_value%2#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0", + "maybe_exists%2#0" + ] + }, + "592": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0" + ] + }, + "593": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "maybe_value%2#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0", + "1" + ] + }, + "594": { + "op": "+", + "defined_out": [ + "minted_asset#0", + "new_state_value%0#0" + ], + "stack_out": [ + "minted_asset#0", + "new_state_value%0#0" + ] + }, + "595": { + "op": "bytec_0 // \"total_attendees\"", + "stack_out": [ + "minted_asset#0", + "new_state_value%0#0", + "\"total_attendees\"" + ] + }, + "596": { + "op": "swap", + "stack_out": [ + "minted_asset#0", + "\"total_attendees\"", + "new_state_value%0#0" + ] + }, + "597": { + "op": "app_global_put", + "stack_out": [ + "minted_asset#0" + ] + }, + "598": { + "op": "txn Sender" + }, + "600": { + "op": "dup", + "defined_out": [ + "box_ref#0", + "box_ref#0 (copy)", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "box_ref#0", + "box_ref#0 (copy)" + ] + }, + "601": { + "op": "box_len", + "defined_out": [ + "box_ref#0", + "has_claimed#0", + "maybe_value%3#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "box_ref#0", + "maybe_value%3#0", + "has_claimed#0" + ] + }, + "602": { + "op": "bury 1", + "stack_out": [ + "minted_asset#0", + "box_ref#0", + "has_claimed#0" + ] + }, + "604": { + "op": "!", + "defined_out": [ + "box_ref#0", + "minted_asset#0", + "tmp%2#0" + ], + "stack_out": [ + "minted_asset#0", + "box_ref#0", + "tmp%2#0" + ] + }, + "605": { + "op": "assert // Already claimed POA", + "stack_out": [ + "minted_asset#0", + "box_ref#0" + ] + }, + "606": { + "op": "swap", + "stack_out": [ + "box_ref#0", + "minted_asset#0" + ] + }, + "607": { + "op": "itob", + "defined_out": [ + "box_ref#0", + "tmp%3#0" + ], + "stack_out": [ + "box_ref#0", + "tmp%3#0" + ] + }, + "608": { + "op": "box_put", + "stack_out": [] + }, + "609": { + "retsub": true, + "op": "retsub" + }, + "610": { + "subroutine": "contract.ProofOfAttendance.confirm_attendance_with_box_map", + "params": {}, + "block": "confirm_attendance_with_box_map", + "stack_in": [], + "op": "proto 0 0" + }, + "613": { + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "614": { + "op": "bytec_0 // \"total_attendees\"", + "defined_out": [ + "\"total_attendees\"", + "0" + ], + "stack_out": [ + "0", + "\"total_attendees\"" + ] + }, + "615": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%0#0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_exists%0#0" + ] + }, + "616": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "maybe_value%0#0" + ] + }, + "617": { + "op": "intc_0 // 0", + "stack_out": [ + "maybe_value%0#0", + "0" + ] + }, + "618": { + "op": "bytec_1 // \"max_attendees\"", + "defined_out": [ + "\"max_attendees\"", + "0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "0", + "\"max_attendees\"" + ] + }, + "619": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%1#0", + "maybe_value%0#0", + "maybe_value%1#0" + ], + "stack_out": [ + "maybe_value%0#0", + "maybe_value%1#0", + "maybe_exists%1#0" + ] + }, + "620": { + "op": "assert // check self.max_attendees exists", + "stack_out": [ + "maybe_value%0#0", + "maybe_value%1#0" + ] + }, + "621": { + "op": "<", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "622": { + "op": "assert // Max attendees reached", + "stack_out": [] + }, + "623": { + "op": "txn Sender", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "625": { + "callsub": "contract.ProofOfAttendance._mint_poa", + "op": "callsub _mint_poa", + "defined_out": [ + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0" + ] + }, + "628": { + "op": "intc_0 // 0", + "stack_out": [ + "minted_asset#0", + "0" + ] + }, + "629": { + "op": "bytec_0 // \"total_attendees\"", + "stack_out": [ + "minted_asset#0", + "0", + "\"total_attendees\"" + ] + }, + "630": { + "op": "app_global_get_ex", + "defined_out": [ + "maybe_exists%2#0", + "maybe_value%2#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0", + "maybe_exists%2#0" + ] + }, + "631": { + "op": "assert // check self.total_attendees exists", + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0" + ] + }, + "632": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "maybe_value%2#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%2#0", + "1" + ] + }, + "633": { + "op": "+", + "defined_out": [ + "minted_asset#0", + "new_state_value%0#0" + ], + "stack_out": [ + "minted_asset#0", + "new_state_value%0#0" + ] + }, + "634": { + "op": "bytec_0 // \"total_attendees\"", + "stack_out": [ + "minted_asset#0", + "new_state_value%0#0", + "\"total_attendees\"" + ] + }, + "635": { + "op": "swap", + "stack_out": [ + "minted_asset#0", + "\"total_attendees\"", + "new_state_value%0#0" + ] + }, + "636": { + "op": "app_global_put", + "stack_out": [ + "minted_asset#0" + ] + }, + "637": { + "op": "bytec_3 // \"box_map\"" + }, + "638": { + "op": "txn Sender", + "defined_out": [ + "\"box_map\"", + "minted_asset#0", + "tmp%2#0" + ], + "stack_out": [ + "minted_asset#0", + "\"box_map\"", + "tmp%2#0" + ] + }, + "640": { + "op": "concat", + "defined_out": [ + "minted_asset#0", + "tmp%3#0" + ], + "stack_out": [ + "minted_asset#0", + "tmp%3#0" + ] + }, + "641": { + "op": "box_len", + "defined_out": [ + "has_claimed#0", + "maybe_value%3#0", + "minted_asset#0" + ], + "stack_out": [ + "minted_asset#0", + "maybe_value%3#0", + "has_claimed#0" + ] + }, + "642": { + "op": "bury 1", + "stack_out": [ + "minted_asset#0", + "has_claimed#0" + ] + }, + "644": { + "op": "!", + "defined_out": [ + "minted_asset#0", + "tmp%4#0" + ], + "stack_out": [ + "minted_asset#0", + "tmp%4#0" + ] + }, + "645": { + "op": "assert // Already claimed POA", + "stack_out": [ + "minted_asset#0" + ] + }, + "646": { + "op": "bytec_3 // \"box_map\"" + }, + "647": { + "op": "txn Sender", + "defined_out": [ + "\"box_map\"", + "minted_asset#0", + "tmp%5#0" + ], + "stack_out": [ + "minted_asset#0", + "\"box_map\"", + "tmp%5#0" + ] + }, + "649": { + "op": "concat", + "defined_out": [ + "minted_asset#0", + "tmp%6#0" + ], + "stack_out": [ + "minted_asset#0", + "tmp%6#0" + ] + }, + "650": { + "op": "swap", + "stack_out": [ + "tmp%6#0", + "minted_asset#0" + ] + }, + "651": { + "op": "itob", + "defined_out": [ + "new_box_value%0#0", + "tmp%6#0" + ], + "stack_out": [ + "tmp%6#0", + "new_box_value%0#0" + ] + }, + "652": { + "op": "box_put", + "stack_out": [] + }, + "653": { + "retsub": true, + "op": "retsub" + }, + "654": { + "subroutine": "contract.ProofOfAttendance.get_poa_id", + "params": {}, + "block": "get_poa_id", + "stack_in": [], + "op": "proto 0 1" + }, + "657": { + "op": "txn Sender", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "659": { + "op": "box_get", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "poa_id#0", + "exists#0" + ] + }, + "660": { + "op": "assert // POA not found", + "stack_out": [ + "poa_id#0" + ] + }, + "661": { + "op": "btoi", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "662": { + "retsub": true, + "op": "retsub" + }, + "663": { + "subroutine": "contract.ProofOfAttendance.get_poa_id_with_box", + "params": {}, + "block": "get_poa_id_with_box", + "stack_in": [], + "op": "proto 0 1" + }, + "666": { + "op": "txn Sender", + "defined_out": [ + "box#0" + ], + "stack_out": [ + "box#0" + ] + }, + "668": { + "op": "box_get", + "defined_out": [ + "exists#0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "exists#0" + ] + }, + "669": { + "op": "swap", + "stack_out": [ + "exists#0", + "maybe_value%0#0" + ] + }, + "670": { + "op": "btoi", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "exists#0", + "poa_id#0" + ] + }, + "671": { + "op": "swap", + "stack_out": [ + "poa_id#0", + "exists#0" + ] + }, + "672": { + "op": "assert // POA not found", + "stack_out": [ + "poa_id#0" + ] + }, + "673": { + "retsub": true, + "op": "retsub" + }, + "674": { + "subroutine": "contract.ProofOfAttendance.get_poa_id_with_box_ref", + "params": {}, + "block": "get_poa_id_with_box_ref", + "stack_in": [], + "op": "proto 0 1" + }, + "677": { + "op": "txn Sender", + "defined_out": [ + "box_ref#0" + ], + "stack_out": [ + "box_ref#0" + ] + }, + "679": { + "op": "box_get", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "poa_id#0", + "exists#0" + ] + }, + "680": { + "op": "assert // POA not found", + "stack_out": [ + "poa_id#0" + ] + }, + "681": { + "op": "btoi", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "682": { + "retsub": true, + "op": "retsub" + }, + "683": { + "subroutine": "contract.ProofOfAttendance.get_poa_id_with_box_map", + "params": {}, + "block": "get_poa_id_with_box_map", + "stack_in": [], + "op": "proto 0 1" + }, + "686": { + "op": "bytec_3 // \"box_map\"" + }, + "687": { + "op": "txn Sender", + "defined_out": [ + "\"box_map\"", + "tmp%0#0" + ], + "stack_out": [ + "\"box_map\"", + "tmp%0#0" + ] + }, + "689": { + "op": "concat", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "690": { + "op": "box_get", + "defined_out": [ + "exists#0", + "maybe_value%0#0" + ], + "stack_out": [ + "maybe_value%0#0", + "exists#0" + ] + }, + "691": { + "op": "swap", + "stack_out": [ + "exists#0", + "maybe_value%0#0" + ] + }, + "692": { + "op": "btoi", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "exists#0", + "poa_id#0" + ] + }, + "693": { + "op": "swap", + "stack_out": [ + "poa_id#0", + "exists#0" + ] + }, + "694": { + "op": "assert // POA not found", + "stack_out": [ + "poa_id#0" + ] + }, + "695": { + "retsub": true, + "op": "retsub" + }, + "696": { + "subroutine": "contract.ProofOfAttendance.claim_poa", + "params": { + "opt_in_txn#0": "uint64" + }, + "block": "claim_poa", + "stack_in": [], + "op": "proto 1 0" + }, + "699": { + "op": "intc_0 // 0", + "stack_out": [ + "awst_tmp%1#0" + ] + }, + "700": { + "op": "txn Sender", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%0#0" + ] + }, + "702": { + "op": "box_get", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "exists#0" + ] + }, + "703": { + "op": "assert // POA not found, attendance validation failed!", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0" + ] + }, + "704": { + "op": "frame_dig -1", + "defined_out": [ + "opt_in_txn#0 (copy)", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "706": { + "op": "gtxns XferAsset", + "defined_out": [ + "poa_id#0", + "tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%1#0" + ] + }, + "708": { + "op": "swap", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "poa_id#0" + ] + }, + "709": { + "op": "btoi", + "defined_out": [ + "tmp%1#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%2#0" + ] + }, + "710": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%2#0", + "tmp%2#0" + ] + }, + "711": { + "op": "cover 2", + "defined_out": [ + "tmp%1#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%1#0", + "tmp%2#0" + ] + }, + "713": { + "op": "==", + "defined_out": [ + "tmp%2#0", + "tmp%3#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%3#0" + ] + }, + "714": { + "op": "assert // POA ID mismatch", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0" + ] + }, + "715": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "opt_in_txn#0 (copy)" + ] + }, + "717": { + "op": "gtxns Fee", + "defined_out": [ + "tmp%2#0", + "tmp%4#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%4#0" + ] + }, + "719": { + "op": "!", + "defined_out": [ + "tmp%2#0", + "tmp%5#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%5#0" + ] + }, + "720": { + "op": "assert // We got you covered for free!", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0" + ] + }, + "721": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "opt_in_txn#0 (copy)" + ] + }, + "723": { + "op": "gtxns AssetAmount", + "defined_out": [ + "tmp%2#0", + "tmp%6#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%6#0" + ] + }, + "725": { + "op": "!", + "defined_out": [ + "tmp%2#0", + "tmp%7#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%7#0" + ] + }, + "726": { + "op": "assert", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0" + ] + }, + "727": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "opt_in_txn#0 (copy)" + ] + }, + "729": { + "op": "gtxns Sender", + "defined_out": [ + "tmp%2#0", + "tmp%8#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%8#0" + ] + }, + "731": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%8#0", + "opt_in_txn#0 (copy)" + ] + }, + "733": { + "op": "gtxns AssetReceiver", + "defined_out": [ + "awst_tmp%0#0", + "tmp%2#0", + "tmp%8#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%8#0", + "awst_tmp%0#0" + ] + }, + "735": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "tmp%8#0", + "awst_tmp%0#0", + "awst_tmp%0#0" + ] + }, + "736": { + "op": "cover 2", + "defined_out": [ + "awst_tmp%0#0", + "tmp%2#0", + "tmp%8#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%8#0", + "awst_tmp%0#0" + ] + }, + "738": { + "op": "==", + "defined_out": [ + "awst_tmp%0#0", + "tmp%2#0", + "tmp%9#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%9#0" + ] + }, + "739": { + "op": "bz claim_poa_bool_false@3", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ] + }, + "742": { + "op": "frame_dig 2" + }, + "744": { + "op": "txn Sender", + "defined_out": [ + "awst_tmp%0#0", + "tmp%10#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "awst_tmp%0#0", + "tmp%10#0" + ] + }, + "746": { + "op": "==", + "defined_out": [ + "awst_tmp%0#0", + "tmp%11#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%11#0" + ] + }, + "747": { + "op": "bz claim_poa_bool_false@3", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ] + }, + "750": { + "op": "intc_1 // 1", + "defined_out": [ + "and_result%0#0", + "awst_tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "and_result%0#0" + ] + }, + "751": { + "op": "b claim_poa_bool_merge@4" + }, + "754": { + "block": "claim_poa_bool_false@3", + "stack_in": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "and_result%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "and_result%0#0" + ] + }, + "755": { + "block": "claim_poa_bool_merge@4", + "stack_in": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "and_result%0#0" + ], + "op": "assert // Opt-in transaction sender and receiver must be the same", + "defined_out": [], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ] + }, + "756": { + "op": "frame_dig -1", + "defined_out": [ + "opt_in_txn#0 (copy)" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "opt_in_txn#0 (copy)" + ] + }, + "758": { + "op": "gtxns AssetCloseTo", + "defined_out": [ + "tmp%12#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%12#0" + ] + }, + "760": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%12#0", + "opt_in_txn#0 (copy)" + ] + }, + "762": { + "op": "gtxns RekeyTo", + "defined_out": [ + "awst_tmp%1#0", + "tmp%12#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%12#0", + "awst_tmp%1#0" + ] + }, + "764": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%12#0", + "awst_tmp%1#0", + "awst_tmp%1#0" + ] + }, + "765": { + "op": "frame_bury 0", + "defined_out": [ + "awst_tmp%1#0", + "tmp%12#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%12#0", + "awst_tmp%1#0" + ] + }, + "767": { + "op": "==", + "defined_out": [ + "awst_tmp%1#0", + "tmp%13#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%13#0" + ] + }, + "768": { + "op": "bz claim_poa_bool_false@7", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ] + }, + "771": { + "op": "frame_dig 0" + }, + "773": { + "op": "global ZeroAddress", + "defined_out": [ + "awst_tmp%1#0", + "tmp%14#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "awst_tmp%1#0", + "tmp%14#0" + ] + }, + "775": { + "op": "==", + "defined_out": [ + "awst_tmp%1#0", + "tmp%15#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%15#0" + ] + }, + "776": { + "op": "bz claim_poa_bool_false@7", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ] + }, + "779": { + "op": "intc_1 // 1", + "defined_out": [ + "and_result%1#0", + "awst_tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "and_result%1#0" + ] + }, + "780": { + "op": "b claim_poa_bool_merge@8" + }, + "783": { + "block": "claim_poa_bool_false@7", + "stack_in": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "and_result%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "and_result%1#0" + ] + }, + "784": { + "block": "claim_poa_bool_merge@8", + "stack_in": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "and_result%1#0" + ], + "op": "assert // Opt-in transaction close to must be zero address", + "defined_out": [], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ] + }, + "785": { + "op": "txn Sender", + "defined_out": [ + "tmp%16#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%16#0" + ] + }, + "787": { + "op": "frame_dig 1", + "defined_out": [ + "tmp%16#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0", + "tmp%16#0", + "tmp%2#0" + ] + }, + "789": { + "callsub": "contract.ProofOfAttendance._send_poa", + "op": "callsub _send_poa", + "stack_out": [ + "awst_tmp%1#0", + "tmp%2#0", + "awst_tmp%0#0" + ] + }, + "792": { + "retsub": true, + "op": "retsub" + }, + "793": { + "subroutine": "contract.ProofOfAttendance._send_poa", + "params": { + "receiver#0": "bytes", + "asset_id#0": "uint64" + }, + "block": "_send_poa", + "stack_in": [], + "op": "proto 2 0" + }, + "796": { + "op": "itxn_begin" + }, + "797": { + "op": "global CurrentApplicationAddress", + "defined_out": [ + "inner_txn_params%0%%param_Sender_idx_0#0" + ], + "stack_out": [ + "inner_txn_params%0%%param_Sender_idx_0#0" + ] + }, + "799": { + "op": "intc_1 // 1", + "defined_out": [ + "1", + "inner_txn_params%0%%param_Sender_idx_0#0" + ], + "stack_out": [ + "inner_txn_params%0%%param_Sender_idx_0#0", + "1" + ] + }, + "800": { + "op": "itxn_field AssetAmount", + "stack_out": [ + "inner_txn_params%0%%param_Sender_idx_0#0" + ] + }, + "802": { + "op": "frame_dig -2", + "defined_out": [ + "inner_txn_params%0%%param_Sender_idx_0#0", + "receiver#0 (copy)" + ], + "stack_out": [ + "inner_txn_params%0%%param_Sender_idx_0#0", + "receiver#0 (copy)" + ] + }, + "804": { + "op": "itxn_field AssetReceiver", + "stack_out": [ + "inner_txn_params%0%%param_Sender_idx_0#0" + ] + }, + "806": { + "op": "itxn_field Sender", + "stack_out": [] + }, + "808": { + "op": "frame_dig -1", + "defined_out": [ + "asset_id#0 (copy)" + ], + "stack_out": [ + "asset_id#0 (copy)" + ] + }, + "810": { + "op": "itxn_field XferAsset", + "stack_out": [] + }, + "812": { + "op": "intc_2 // axfer", + "defined_out": [ + "axfer" + ], + "stack_out": [ + "axfer" + ] + }, + "813": { + "op": "itxn_field TypeEnum", + "stack_out": [] + }, + "815": { + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "816": { + "op": "itxn_field Fee", + "stack_out": [] + }, + "818": { + "op": "itxn_submit" + }, + "819": { + "retsub": true, + "op": "retsub" + }, + "820": { + "subroutine": "contract.ProofOfAttendance.claim_poa_with_box", + "params": { + "opt_in_txn#0": "uint64" + }, + "block": "claim_poa_with_box", + "stack_in": [], + "op": "proto 1 0" + }, + "823": { + "op": "intc_0 // 0", + "stack_out": [ + "awst_tmp%1#0" + ] + }, + "824": { + "op": "txn Sender", + "defined_out": [ + "box#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "box#0" + ] + }, + "826": { + "op": "box_get", + "defined_out": [ + "exists#0", + "maybe_value%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "maybe_value%0#0", + "exists#0" + ] + }, + "827": { + "op": "swap", + "stack_out": [ + "awst_tmp%1#0", + "exists#0", + "maybe_value%0#0" + ] + }, + "828": { + "op": "btoi", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "exists#0", + "poa_id#0" + ] + }, + "829": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "exists#0", + "poa_id#0", + "poa_id#0 (copy)" + ] + }, + "830": { + "op": "uncover 2", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "poa_id#0", + "exists#0" + ] + }, + "832": { + "op": "assert // POA not found, attendance validation failed!", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "poa_id#0" + ] + }, + "833": { + "op": "frame_dig -1", + "defined_out": [ + "opt_in_txn#0 (copy)", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "835": { + "op": "gtxns XferAsset", + "defined_out": [ + "poa_id#0", + "tmp%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "poa_id#0", + "tmp%0#0" + ] + }, + "837": { + "op": "==", + "defined_out": [ + "poa_id#0", + "tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%1#0" + ] + }, + "838": { + "op": "assert // POA ID mismatch", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0" + ] + }, + "839": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "841": { + "op": "gtxns Fee", + "defined_out": [ + "poa_id#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%2#0" + ] + }, + "843": { + "op": "!", + "defined_out": [ + "poa_id#0", + "tmp%3#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%3#0" + ] + }, + "844": { + "op": "assert // We got you covered for free!", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0" + ] + }, + "845": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "847": { + "op": "gtxns AssetAmount", + "defined_out": [ + "poa_id#0", + "tmp%4#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%4#0" + ] + }, + "849": { + "op": "!", + "defined_out": [ + "poa_id#0", + "tmp%5#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%5#0" + ] + }, + "850": { + "op": "assert", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0" + ] + }, + "851": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "853": { + "op": "gtxns Sender", + "defined_out": [ + "poa_id#0", + "tmp%6#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%6#0" + ] + }, + "855": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%6#0", + "opt_in_txn#0 (copy)" + ] + }, + "857": { + "op": "gtxns AssetReceiver", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%6#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%6#0", + "awst_tmp%0#0" + ] + }, + "859": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%6#0", + "awst_tmp%0#0", + "awst_tmp%0#0" + ] + }, + "860": { + "op": "cover 2", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%6#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%6#0", + "awst_tmp%0#0" + ] + }, + "862": { + "op": "==", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%7#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%7#0" + ] + }, + "863": { + "op": "bz claim_poa_with_box_bool_false@3", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "866": { + "op": "frame_dig 2" + }, + "868": { + "op": "txn Sender", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%8#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "awst_tmp%0#0", + "tmp%8#0" + ] + }, + "870": { + "op": "==", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%9#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%9#0" + ] + }, + "871": { + "op": "bz claim_poa_with_box_bool_false@3", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "874": { + "op": "intc_1 // 1", + "defined_out": [ + "and_result%0#0", + "awst_tmp%0#0", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%0#0" + ] + }, + "875": { + "op": "b claim_poa_with_box_bool_merge@4" + }, + "878": { + "block": "claim_poa_with_box_bool_false@3", + "stack_in": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "and_result%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%0#0" + ] + }, + "879": { + "block": "claim_poa_with_box_bool_merge@4", + "stack_in": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%0#0" + ], + "op": "assert // Opt-in transaction sender and receiver must be the same", + "defined_out": [], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "880": { + "op": "frame_dig -1", + "defined_out": [ + "opt_in_txn#0 (copy)" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "opt_in_txn#0 (copy)" + ] + }, + "882": { + "op": "gtxns AssetCloseTo", + "defined_out": [ + "tmp%10#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%10#0" + ] + }, + "884": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%10#0", + "opt_in_txn#0 (copy)" + ] + }, + "886": { + "op": "gtxns RekeyTo", + "defined_out": [ + "awst_tmp%1#0", + "tmp%10#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%10#0", + "awst_tmp%1#0" + ] + }, + "888": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%10#0", + "awst_tmp%1#0", + "awst_tmp%1#0" + ] + }, + "889": { + "op": "frame_bury 0", + "defined_out": [ + "awst_tmp%1#0", + "tmp%10#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%10#0", + "awst_tmp%1#0" + ] + }, + "891": { + "op": "==", + "defined_out": [ + "awst_tmp%1#0", + "tmp%11#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%11#0" + ] + }, + "892": { + "op": "bz claim_poa_with_box_bool_false@7", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "895": { + "op": "frame_dig 0" + }, + "897": { + "op": "global ZeroAddress", + "defined_out": [ + "awst_tmp%1#0", + "tmp%12#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "awst_tmp%1#0", + "tmp%12#0" + ] + }, + "899": { + "op": "==", + "defined_out": [ + "awst_tmp%1#0", + "tmp%13#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%13#0" + ] + }, + "900": { + "op": "bz claim_poa_with_box_bool_false@7", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "903": { + "op": "intc_1 // 1", + "defined_out": [ + "and_result%1#0", + "awst_tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%1#0" + ] + }, + "904": { + "op": "b claim_poa_with_box_bool_merge@8" + }, + "907": { + "block": "claim_poa_with_box_bool_false@7", + "stack_in": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "and_result%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%1#0" + ] + }, + "908": { + "block": "claim_poa_with_box_bool_merge@8", + "stack_in": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%1#0" + ], + "op": "assert // Opt-in transaction close to must be zero address", + "defined_out": [], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "909": { + "op": "txn Sender", + "defined_out": [ + "tmp%14#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%14#0" + ] + }, + "911": { + "op": "frame_dig 1", + "defined_out": [ + "poa_id#0", + "tmp%14#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%14#0", + "poa_id#0" + ] + }, + "913": { + "callsub": "contract.ProofOfAttendance._send_poa", + "op": "callsub _send_poa", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "916": { + "retsub": true, + "op": "retsub" + }, + "917": { + "subroutine": "contract.ProofOfAttendance.claim_poa_with_box_ref", + "params": { + "opt_in_txn#0": "uint64" + }, + "block": "claim_poa_with_box_ref", + "stack_in": [], + "op": "proto 1 0" + }, + "920": { + "op": "intc_0 // 0", + "stack_out": [ + "awst_tmp%1#0" + ] + }, + "921": { + "op": "txn Sender", + "defined_out": [ + "box_ref#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "box_ref#0" + ] + }, + "923": { + "op": "box_get", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "exists#0" + ] + }, + "924": { + "op": "assert // POA not found, attendance validation failed!", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0" + ] + }, + "925": { + "op": "frame_dig -1", + "defined_out": [ + "opt_in_txn#0 (copy)", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "927": { + "op": "gtxns XferAsset", + "defined_out": [ + "poa_id#0", + "tmp%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%0#0" + ] + }, + "929": { + "op": "swap", + "stack_out": [ + "awst_tmp%1#0", + "tmp%0#0", + "poa_id#0" + ] + }, + "930": { + "op": "btoi", + "defined_out": [ + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%0#0", + "tmp%1#0" + ] + }, + "931": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "tmp%0#0", + "tmp%1#0", + "tmp%1#0" + ] + }, + "932": { + "op": "cover 2", + "defined_out": [ + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%0#0", + "tmp%1#0" + ] + }, + "934": { + "op": "==", + "defined_out": [ + "tmp%1#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%2#0" + ] + }, + "935": { + "op": "assert // POA ID mismatch", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0" + ] + }, + "936": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "opt_in_txn#0 (copy)" + ] + }, + "938": { + "op": "gtxns Fee", + "defined_out": [ + "tmp%1#0", + "tmp%3#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%3#0" + ] + }, + "940": { + "op": "!", + "defined_out": [ + "tmp%1#0", + "tmp%4#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%4#0" + ] + }, + "941": { + "op": "assert // We got you covered for free!", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0" + ] + }, + "942": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "opt_in_txn#0 (copy)" + ] + }, + "944": { + "op": "gtxns AssetAmount", + "defined_out": [ + "tmp%1#0", + "tmp%5#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%5#0" + ] + }, + "946": { + "op": "!", + "defined_out": [ + "tmp%1#0", + "tmp%6#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%6#0" + ] + }, + "947": { + "op": "assert", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0" + ] + }, + "948": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "opt_in_txn#0 (copy)" + ] + }, + "950": { + "op": "gtxns Sender", + "defined_out": [ + "tmp%1#0", + "tmp%7#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%7#0" + ] + }, + "952": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%7#0", + "opt_in_txn#0 (copy)" + ] + }, + "954": { + "op": "gtxns AssetReceiver", + "defined_out": [ + "awst_tmp%0#0", + "tmp%1#0", + "tmp%7#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%7#0", + "awst_tmp%0#0" + ] + }, + "956": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "tmp%7#0", + "awst_tmp%0#0", + "awst_tmp%0#0" + ] + }, + "957": { + "op": "cover 2", + "defined_out": [ + "awst_tmp%0#0", + "tmp%1#0", + "tmp%7#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%7#0", + "awst_tmp%0#0" + ] + }, + "959": { + "op": "==", + "defined_out": [ + "awst_tmp%0#0", + "tmp%1#0", + "tmp%8#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%8#0" + ] + }, + "960": { + "op": "bz claim_poa_with_box_ref_bool_false@3", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ] + }, + "963": { + "op": "frame_dig 2" + }, + "965": { + "op": "txn Sender", + "defined_out": [ + "awst_tmp%0#0", + "tmp%1#0", + "tmp%9#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "awst_tmp%0#0", + "tmp%9#0" + ] + }, + "967": { + "op": "==", + "defined_out": [ + "awst_tmp%0#0", + "tmp%1#0", + "tmp%10#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%10#0" + ] + }, + "968": { + "op": "bz claim_poa_with_box_ref_bool_false@3", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ] + }, + "971": { + "op": "intc_1 // 1", + "defined_out": [ + "and_result%0#0", + "awst_tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "and_result%0#0" + ] + }, + "972": { + "op": "b claim_poa_with_box_ref_bool_merge@4" + }, + "975": { + "block": "claim_poa_with_box_ref_bool_false@3", + "stack_in": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "and_result%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "and_result%0#0" + ] + }, + "976": { + "block": "claim_poa_with_box_ref_bool_merge@4", + "stack_in": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "and_result%0#0" + ], + "op": "assert // Opt-in transaction sender and receiver must be the same", + "defined_out": [], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ] + }, + "977": { + "op": "frame_dig -1", + "defined_out": [ + "opt_in_txn#0 (copy)" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "opt_in_txn#0 (copy)" + ] + }, + "979": { + "op": "gtxns AssetCloseTo", + "defined_out": [ + "tmp%11#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%11#0" + ] + }, + "981": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%11#0", + "opt_in_txn#0 (copy)" + ] + }, + "983": { + "op": "gtxns RekeyTo", + "defined_out": [ + "awst_tmp%1#0", + "tmp%11#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%11#0", + "awst_tmp%1#0" + ] + }, + "985": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%11#0", + "awst_tmp%1#0", + "awst_tmp%1#0" + ] + }, + "986": { + "op": "frame_bury 0", + "defined_out": [ + "awst_tmp%1#0", + "tmp%11#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%11#0", + "awst_tmp%1#0" + ] + }, + "988": { + "op": "==", + "defined_out": [ + "awst_tmp%1#0", + "tmp%12#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%12#0" + ] + }, + "989": { + "op": "bz claim_poa_with_box_ref_bool_false@7", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ] + }, + "992": { + "op": "frame_dig 0" + }, + "994": { + "op": "global ZeroAddress", + "defined_out": [ + "awst_tmp%1#0", + "tmp%13#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "awst_tmp%1#0", + "tmp%13#0" + ] + }, + "996": { + "op": "==", + "defined_out": [ + "awst_tmp%1#0", + "tmp%14#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%14#0" + ] + }, + "997": { + "op": "bz claim_poa_with_box_ref_bool_false@7", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ] + }, + "1000": { + "op": "intc_1 // 1", + "defined_out": [ + "and_result%1#0", + "awst_tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "and_result%1#0" + ] + }, + "1001": { + "op": "b claim_poa_with_box_ref_bool_merge@8" + }, + "1004": { + "block": "claim_poa_with_box_ref_bool_false@7", + "stack_in": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "and_result%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "and_result%1#0" + ] + }, + "1005": { + "block": "claim_poa_with_box_ref_bool_merge@8", + "stack_in": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "and_result%1#0" + ], + "op": "assert // Opt-in transaction close to must be zero address", + "defined_out": [], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ] + }, + "1006": { + "op": "txn Sender", + "defined_out": [ + "tmp%15#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%15#0" + ] + }, + "1008": { + "op": "frame_dig 1", + "defined_out": [ + "tmp%1#0", + "tmp%15#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0", + "tmp%15#0", + "tmp%1#0" + ] + }, + "1010": { + "callsub": "contract.ProofOfAttendance._send_poa", + "op": "callsub _send_poa", + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0", + "awst_tmp%0#0" + ] + }, + "1013": { + "retsub": true, + "op": "retsub" + }, + "1014": { + "subroutine": "contract.ProofOfAttendance.claim_poa_with_box_map", + "params": { + "opt_in_txn#0": "uint64" + }, + "block": "claim_poa_with_box_map", + "stack_in": [], + "op": "proto 1 0" + }, + "1017": { + "op": "intc_0 // 0" + }, + "1018": { + "op": "bytec_3 // \"box_map\"" + }, + "1019": { + "op": "txn Sender", + "defined_out": [ + "\"box_map\"", + "tmp%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "\"box_map\"", + "tmp%0#0" + ] + }, + "1021": { + "op": "concat", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "tmp%1#0" + ] + }, + "1022": { + "op": "box_get", + "defined_out": [ + "exists#0", + "maybe_value%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "maybe_value%0#0", + "exists#0" + ] + }, + "1023": { + "op": "swap", + "stack_out": [ + "awst_tmp%1#0", + "exists#0", + "maybe_value%0#0" + ] + }, + "1024": { + "op": "btoi", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "exists#0", + "poa_id#0" + ] + }, + "1025": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "exists#0", + "poa_id#0", + "poa_id#0 (copy)" + ] + }, + "1026": { + "op": "uncover 2", + "defined_out": [ + "exists#0", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "poa_id#0", + "exists#0" + ] + }, + "1028": { + "op": "assert // POA not found, attendance validation failed!", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "poa_id#0" + ] + }, + "1029": { + "op": "frame_dig -1", + "defined_out": [ + "opt_in_txn#0 (copy)", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "1031": { + "op": "gtxns XferAsset", + "defined_out": [ + "poa_id#0", + "tmp%2#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "poa_id#0", + "tmp%2#0" + ] + }, + "1033": { + "op": "==", + "defined_out": [ + "poa_id#0", + "tmp%3#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%3#0" + ] + }, + "1034": { + "op": "assert // POA ID mismatch", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0" + ] + }, + "1035": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "1037": { + "op": "gtxns Fee", + "defined_out": [ + "poa_id#0", + "tmp%4#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%4#0" + ] + }, + "1039": { + "op": "!", + "defined_out": [ + "poa_id#0", + "tmp%5#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%5#0" + ] + }, + "1040": { + "op": "assert // We got you covered for free!", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0" + ] + }, + "1041": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "1043": { + "op": "gtxns AssetAmount", + "defined_out": [ + "poa_id#0", + "tmp%6#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%6#0" + ] + }, + "1045": { + "op": "!", + "defined_out": [ + "poa_id#0", + "tmp%7#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%7#0" + ] + }, + "1046": { + "op": "assert", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0" + ] + }, + "1047": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "opt_in_txn#0 (copy)" + ] + }, + "1049": { + "op": "gtxns Sender", + "defined_out": [ + "poa_id#0", + "tmp%8#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%8#0" + ] + }, + "1051": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%8#0", + "opt_in_txn#0 (copy)" + ] + }, + "1053": { + "op": "gtxns AssetReceiver", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%8#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%8#0", + "awst_tmp%0#0" + ] + }, + "1055": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "tmp%8#0", + "awst_tmp%0#0", + "awst_tmp%0#0" + ] + }, + "1056": { + "op": "cover 2", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%8#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%8#0", + "awst_tmp%0#0" + ] + }, + "1058": { + "op": "==", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%9#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%9#0" + ] + }, + "1059": { + "op": "bz claim_poa_with_box_map_bool_false@3", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "1062": { + "op": "frame_dig 2" + }, + "1064": { + "op": "txn Sender", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%10#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "awst_tmp%0#0", + "tmp%10#0" + ] + }, + "1066": { + "op": "==", + "defined_out": [ + "awst_tmp%0#0", + "poa_id#0", + "tmp%11#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%11#0" + ] + }, + "1067": { + "op": "bz claim_poa_with_box_map_bool_false@3", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "1070": { + "op": "intc_1 // 1", + "defined_out": [ + "and_result%0#0", + "awst_tmp%0#0", + "poa_id#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%0#0" + ] + }, + "1071": { + "op": "b claim_poa_with_box_map_bool_merge@4" + }, + "1074": { + "block": "claim_poa_with_box_map_bool_false@3", + "stack_in": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "and_result%0#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%0#0" + ] + }, + "1075": { + "block": "claim_poa_with_box_map_bool_merge@4", + "stack_in": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%0#0" + ], + "op": "assert // Opt-in transaction sender and receiver must be the same", + "defined_out": [], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "1076": { + "op": "frame_dig -1", + "defined_out": [ + "opt_in_txn#0 (copy)" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "opt_in_txn#0 (copy)" + ] + }, + "1078": { + "op": "gtxns AssetCloseTo", + "defined_out": [ + "tmp%12#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%12#0" + ] + }, + "1080": { + "op": "frame_dig -1", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%12#0", + "opt_in_txn#0 (copy)" + ] + }, + "1082": { + "op": "gtxns RekeyTo", + "defined_out": [ + "awst_tmp%1#0", + "tmp%12#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%12#0", + "awst_tmp%1#0" + ] + }, + "1084": { + "op": "dup", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%12#0", + "awst_tmp%1#0", + "awst_tmp%1#0" + ] + }, + "1085": { + "op": "frame_bury 0", + "defined_out": [ + "awst_tmp%1#0", + "tmp%12#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%12#0", + "awst_tmp%1#0" + ] + }, + "1087": { + "op": "==", + "defined_out": [ + "awst_tmp%1#0", + "tmp%13#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%13#0" + ] + }, + "1088": { + "op": "bz claim_poa_with_box_map_bool_false@7", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "1091": { + "op": "frame_dig 0" + }, + "1093": { + "op": "global ZeroAddress", + "defined_out": [ + "awst_tmp%1#0", + "tmp%14#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "awst_tmp%1#0", + "tmp%14#0" + ] + }, + "1095": { + "op": "==", + "defined_out": [ + "awst_tmp%1#0", + "tmp%15#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%15#0" + ] + }, + "1096": { + "op": "bz claim_poa_with_box_map_bool_false@7", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "1099": { + "op": "intc_1 // 1", + "defined_out": [ + "and_result%1#0", + "awst_tmp%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%1#0" + ] + }, + "1100": { + "op": "b claim_poa_with_box_map_bool_merge@8" + }, + "1103": { + "block": "claim_poa_with_box_map_bool_false@7", + "stack_in": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "and_result%1#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%1#0" + ] + }, + "1104": { + "block": "claim_poa_with_box_map_bool_merge@8", + "stack_in": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "and_result%1#0" + ], + "op": "assert // Opt-in transaction close to must be zero address", + "defined_out": [], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "1105": { + "op": "txn Sender", + "defined_out": [ + "tmp%16#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%16#0" + ] + }, + "1107": { + "op": "frame_dig 1", + "defined_out": [ + "poa_id#0", + "tmp%16#0" + ], + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0", + "tmp%16#0", + "poa_id#0" + ] + }, + "1109": { + "callsub": "contract.ProofOfAttendance._send_poa", + "op": "callsub _send_poa", + "stack_out": [ + "awst_tmp%1#0", + "poa_id#0", + "awst_tmp%0#0" + ] + }, + "1112": { + "retsub": true, + "op": "retsub" + }, + "1113": { + "subroutine": "contract.ProofOfAttendance.__init__", + "params": {}, + "block": "__init__", + "stack_in": [], + "op": "proto 0 0" + }, + "1116": { + "op": "bytec_1 // \"max_attendees\"", + "defined_out": [ + "\"max_attendees\"" + ], + "stack_out": [ + "\"max_attendees\"" + ] + }, + "1117": { + "op": "pushint 30 // 30", + "defined_out": [ + "\"max_attendees\"", + "30" + ], + "stack_out": [ + "\"max_attendees\"", + "30" + ] + }, + "1119": { + "op": "app_global_put", + "stack_out": [] + }, + "1120": { + "op": "bytec 4 // \"asset_url\"", + "defined_out": [ + "\"asset_url\"" + ], + "stack_out": [ + "\"asset_url\"" + ] + }, + "1122": { + "op": "pushbytes \"ipfs://QmW5vERkgeJJtSY1YQdcWU6gsHCZCyLFtM1oT9uyy2WGm8\"", + "defined_out": [ + "\"asset_url\"", + "\"ipfs://QmW5vERkgeJJtSY1YQdcWU6gsHCZCyLFtM1oT9uyy2WGm8\"" + ], + "stack_out": [ + "\"asset_url\"", + "\"ipfs://QmW5vERkgeJJtSY1YQdcWU6gsHCZCyLFtM1oT9uyy2WGm8\"" + ] + }, + "1177": { + "op": "app_global_put", + "stack_out": [] + }, + "1178": { + "op": "bytec_0 // \"total_attendees\"", + "defined_out": [ + "\"total_attendees\"" + ], + "stack_out": [ + "\"total_attendees\"" + ] + }, + "1179": { + "op": "intc_0 // 0", + "defined_out": [ + "\"total_attendees\"", + "0" + ], + "stack_out": [ + "\"total_attendees\"", + "0" + ] + }, + "1180": { + "op": "app_global_put", + "stack_out": [] + }, + "1181": { + "retsub": true, + "op": "retsub" + }, + "1182": { + "subroutine": "_puya_lib.util.ensure_budget", + "params": { + "required_budget#0": "uint64", + "fee_source#0": "uint64" + }, + "block": "ensure_budget", + "stack_in": [], + "op": "proto 2 0" + }, + "1185": { + "op": "frame_dig -2", + "defined_out": [ + "required_budget#0 (copy)" + ], + "stack_out": [ + "required_budget#0 (copy)" + ] + }, + "1187": { + "op": "pushint 10 // 10", + "defined_out": [ + "10", + "required_budget#0 (copy)" + ], + "stack_out": [ + "required_budget#0 (copy)", + "10" + ] + }, + "1189": { + "op": "+", + "defined_out": [ + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1190": { + "block": "ensure_budget_while_top@1", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "op": "frame_dig 0" + }, + "1192": { + "op": "global OpcodeBudget", + "defined_out": [ + "required_budget_with_buffer#0", + "tmp%0#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "required_budget_with_buffer#0", + "tmp%0#0" + ] + }, + "1194": { + "op": ">", + "defined_out": [ + "required_budget_with_buffer#0", + "tmp%1#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "tmp%1#0" + ] + }, + "1195": { + "op": "bz ensure_budget_after_while@7", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1198": { + "op": "itxn_begin" + }, + "1199": { + "op": "pushint 6 // appl", + "defined_out": [ + "appl", + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "appl" + ] + }, + "1201": { + "op": "itxn_field TypeEnum", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1203": { + "op": "pushint 5 // DeleteApplication", + "defined_out": [ + "DeleteApplication", + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "DeleteApplication" + ] + }, + "1205": { + "op": "itxn_field OnCompletion", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1207": { + "op": "bytec 5 // 0x068101", + "defined_out": [ + "0x068101", + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "0x068101" + ] + }, + "1209": { + "op": "itxn_field ApprovalProgram", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1211": { + "op": "bytec 5 // 0x068101", + "stack_out": [ + "required_budget_with_buffer#0", + "0x068101" + ] + }, + "1213": { + "op": "itxn_field ClearStateProgram", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1215": { + "op": "frame_dig -1", + "defined_out": [ + "fee_source#0 (copy)", + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "fee_source#0 (copy)" + ] + }, + "1217": { + "op": "switch ensure_budget_switch_case_0@3 ensure_budget_switch_case_1@4", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1223": { + "op": "b ensure_budget_switch_case_next@6" + }, + "1226": { + "block": "ensure_budget_switch_case_0@3", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "0" + ] + }, + "1227": { + "op": "itxn_field Fee", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1229": { + "op": "b ensure_budget_switch_case_next@6" + }, + "1232": { + "block": "ensure_budget_switch_case_1@4", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "op": "global MinTxnFee", + "defined_out": [ + "tmp%2#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "tmp%2#0" + ] + }, + "1234": { + "op": "itxn_field Fee", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1236": { + "block": "ensure_budget_switch_case_next@6", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "op": "itxn_submit" + }, + "1237": { + "op": "b ensure_budget_while_top@1" + }, + "1240": { + "block": "ensure_budget_after_while@7", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "retsub": true, + "op": "retsub" + } + } +} diff --git a/sampleWorkspace/puya/contract.py b/sampleWorkspace/puya/contract.py index 3bb6207..73b6582 100644 --- a/sampleWorkspace/puya/contract.py +++ b/sampleWorkspace/puya/contract.py @@ -1,59 +1,212 @@ -from algopy import Bytes, TemplateVar, UInt64, arc4, log, subroutine - - -class DebugContract(arc4.ARC4Contract): - @arc4.abimethod - def test(self, x: UInt64, y: UInt64, z: UInt64) -> UInt64: - - a = x * TemplateVar[UInt64]("A_MULT") - b = x + y - c = b * z - if b < c: - a = a + y - elif a < c: - a = a + z - elif b < a: - a = a * 3 - elif b > a: - b = b + a - - if a + b < c: - a *= some_func(a, y) - else: - b *= some_func(b, z) - - bee = itoa(b) - c = a + b - cea = itoa(c) - - if a < c: - a += c - if a < b: - a += b - if a < b + c: - a = a * z - - aye = itoa(a) - log(aye, bee, cea, sep=" ") - - return a - - -@subroutine -def some_func(a: UInt64, b: UInt64) -> UInt64: - a += b - b *= a - a += b - a *= 2 - x = a + b - y = a * b - return x if x < y else y - - -@subroutine -def itoa(i: UInt64) -> Bytes: - digits = Bytes(b"0123456789") - radix = digits.length - if i < radix: - return digits[i] - return itoa(i // radix) + digits[i % radix] +import algopy + + +class ProofOfAttendance(algopy.ARC4Contract): + def __init__(self) -> None: + self.max_attendees = algopy.UInt64(30) + self.asset_url = algopy.String( + "ipfs://QmW5vERkgeJJtSY1YQdcWU6gsHCZCyLFtM1oT9uyy2WGm8" + ) + self.total_attendees = algopy.UInt64(0) + self.box_map = algopy.BoxMap(algopy.Bytes, algopy.UInt64) + + @algopy.arc4.abimethod(create="require") + def init(self, max_attendees: algopy.UInt64) -> None: + assert ( + algopy.Txn.sender == algopy.Global.creator_address + ), "Only creator can initialize" + self.max_attendees = max_attendees + + @algopy.arc4.abimethod() + def confirm_attendance(self) -> None: + assert self.total_attendees < self.max_attendees, "Max attendees reached" + + minted_asset = self._mint_poa(algopy.Txn.sender) + self.total_attendees += 1 + + _id, has_claimed = algopy.op.Box.get(algopy.Txn.sender.bytes) + assert not has_claimed, "Already claimed POA" + + algopy.op.Box.put(algopy.Txn.sender.bytes, algopy.op.itob(minted_asset.id)) + + @algopy.arc4.abimethod() + def confirm_attendance_with_box(self) -> None: + assert self.total_attendees < self.max_attendees, "Max attendees reached" + + minted_asset = self._mint_poa(algopy.Txn.sender) + self.total_attendees += 1 + + box = algopy.Box(algopy.UInt64, key=algopy.Txn.sender.bytes) + has_claimed = bool(box) + assert not has_claimed, "Already claimed POA" + + box.value = minted_asset.id + + @algopy.arc4.abimethod() + def confirm_attendance_with_box_ref(self) -> None: + assert self.total_attendees < self.max_attendees, "Max attendees reached" + + minted_asset = self._mint_poa(algopy.Txn.sender) + self.total_attendees += 1 + + box_ref = algopy.BoxRef(key=algopy.Txn.sender.bytes) + has_claimed = bool(box_ref) + assert not has_claimed, "Already claimed POA" + + box_ref.put(algopy.op.itob(minted_asset.id)) + + @algopy.arc4.abimethod() + def confirm_attendance_with_box_map(self) -> None: + assert self.total_attendees < self.max_attendees, "Max attendees reached" + + minted_asset = self._mint_poa(algopy.Txn.sender) + self.total_attendees += 1 + + has_claimed = algopy.Txn.sender.bytes in self.box_map + assert not has_claimed, "Already claimed POA" + + self.box_map[algopy.Txn.sender.bytes] = minted_asset.id + + @algopy.arc4.abimethod(readonly=True) + def get_poa_id(self) -> algopy.UInt64: + poa_id, exists = algopy.op.Box.get(algopy.Txn.sender.bytes) + assert exists, "POA not found" + return algopy.op.btoi(poa_id) + + @algopy.arc4.abimethod(readonly=True) + def get_poa_id_with_box(self) -> algopy.UInt64: + box = algopy.Box(algopy.UInt64, key=algopy.Txn.sender.bytes) + poa_id, exists = box.maybe() + assert exists, "POA not found" + return poa_id + + @algopy.arc4.abimethod(readonly=True) + def get_poa_id_with_box_ref(self) -> algopy.UInt64: + box_ref = algopy.BoxRef(key=algopy.Txn.sender.bytes) + poa_id, exists = box_ref.maybe() + assert exists, "POA not found" + return algopy.op.btoi(poa_id) + + @algopy.arc4.abimethod(readonly=True) + def get_poa_id_with_box_map(self) -> algopy.UInt64: + poa_id, exists = self.box_map.maybe(algopy.Txn.sender.bytes) + assert exists, "POA not found" + return poa_id + + @algopy.arc4.abimethod() + def claim_poa(self, opt_in_txn: algopy.gtxn.AssetTransferTransaction) -> None: + poa_id, exists = algopy.op.Box.get(algopy.Txn.sender.bytes) + assert exists, "POA not found, attendance validation failed!" + assert opt_in_txn.xfer_asset.id == algopy.op.btoi(poa_id), "POA ID mismatch" + assert opt_in_txn.fee == algopy.UInt64(0), "We got you covered for free!" + assert opt_in_txn.asset_amount == algopy.UInt64(0) + assert ( + opt_in_txn.sender == opt_in_txn.asset_receiver == algopy.Txn.sender + ), "Opt-in transaction sender and receiver must be the same" + assert ( + opt_in_txn.asset_close_to + == opt_in_txn.rekey_to + == algopy.Global.zero_address + ), "Opt-in transaction close to must be zero address" + + self._send_poa( + algopy.Txn.sender, + algopy.op.btoi(poa_id), + ) + + @algopy.arc4.abimethod() + def claim_poa_with_box( + self, opt_in_txn: algopy.gtxn.AssetTransferTransaction + ) -> None: + box = algopy.Box(algopy.UInt64, key=algopy.Txn.sender.bytes) + poa_id, exists = box.maybe() + assert exists, "POA not found, attendance validation failed!" + assert opt_in_txn.xfer_asset.id == poa_id, "POA ID mismatch" + assert opt_in_txn.fee == algopy.UInt64(0), "We got you covered for free!" + assert opt_in_txn.asset_amount == algopy.UInt64(0) + assert ( + opt_in_txn.sender == opt_in_txn.asset_receiver == algopy.Txn.sender + ), "Opt-in transaction sender and receiver must be the same" + assert ( + opt_in_txn.asset_close_to + == opt_in_txn.rekey_to + == algopy.Global.zero_address + ), "Opt-in transaction close to must be zero address" + + self._send_poa( + algopy.Txn.sender, + poa_id, + ) + + @algopy.arc4.abimethod() + def claim_poa_with_box_ref( + self, opt_in_txn: algopy.gtxn.AssetTransferTransaction + ) -> None: + box_ref = algopy.BoxRef(key=algopy.Txn.sender.bytes) + poa_id, exists = box_ref.maybe() + assert exists, "POA not found, attendance validation failed!" + assert opt_in_txn.xfer_asset.id == algopy.op.btoi(poa_id), "POA ID mismatch" + assert opt_in_txn.fee == algopy.UInt64(0), "We got you covered for free!" + assert opt_in_txn.asset_amount == algopy.UInt64(0) + assert ( + opt_in_txn.sender == opt_in_txn.asset_receiver == algopy.Txn.sender + ), "Opt-in transaction sender and receiver must be the same" + assert ( + opt_in_txn.asset_close_to + == opt_in_txn.rekey_to + == algopy.Global.zero_address + ), "Opt-in transaction close to must be zero address" + + self._send_poa( + algopy.Txn.sender, + algopy.op.btoi(poa_id), + ) + + @algopy.arc4.abimethod() + def claim_poa_with_box_map( + self, opt_in_txn: algopy.gtxn.AssetTransferTransaction + ) -> None: + poa_id, exists = self.box_map.maybe(algopy.Txn.sender.bytes) + assert exists, "POA not found, attendance validation failed!" + assert opt_in_txn.xfer_asset.id == poa_id, "POA ID mismatch" + assert opt_in_txn.fee == algopy.UInt64(0), "We got you covered for free!" + assert opt_in_txn.asset_amount == algopy.UInt64(0) + assert ( + opt_in_txn.sender == opt_in_txn.asset_receiver == algopy.Txn.sender + ), "Opt-in transaction sender and receiver must be the same" + assert ( + opt_in_txn.asset_close_to + == opt_in_txn.rekey_to + == algopy.Global.zero_address + ), "Opt-in transaction close to must be zero address" + + self._send_poa( + algopy.Txn.sender, + poa_id, + ) + + @algopy.subroutine + def _mint_poa(self, claimer: algopy.Account) -> algopy.Asset: + algopy.ensure_budget(algopy.UInt64(10000), algopy.OpUpFeeSource.AppAccount) + asset_name = b"AlgoKit POA #" + algopy.op.itob(self.total_attendees) + return ( + algopy.itxn.AssetConfig( + asset_name=asset_name, + unit_name=algopy.String("POA"), + total=algopy.UInt64(1), + decimals=0, + url=self.asset_url, + manager=claimer, + ) + .submit() + .created_asset + ) + + @algopy.subroutine + def _send_poa(self, receiver: algopy.Account, asset_id: algopy.UInt64) -> None: + algopy.itxn.AssetTransfer( + xfer_asset=asset_id, + sender=algopy.Global.current_application_address, + asset_receiver=receiver, + asset_amount=1, + ).submit() diff --git a/sampleWorkspace/puya/contract.simulate.json b/sampleWorkspace/puya/contract.simulate.json deleted file mode 100644 index 22933c6..0000000 --- a/sampleWorkspace/puya/contract.simulate.json +++ /dev/null @@ -1,3473 +0,0 @@ -{ - "eval-overrides": { - "allow-empty-signatures": true, - "max-log-calls": 2048, - "max-log-size": 65536 - }, - "exec-trace-config": { - "enable": true, - "scratch-change": true, - "stack-change": true, - "state-change": true - }, - "initial-states": {}, - "last-round": 3574, - "txn-groups": [ - { - "app-budget-added": 700, - "app-budget-consumed": 348, - "txn-results": [ - { - "app-budget-consumed": 348, - "exec-trace": { - "approval-program-hash": "e6kn9Vrk26npvLg4tFQtmi60V3cGZaVPw0UtLeEJVHU=", - "approval-program-trace": [ - { - "pc": 1 - }, - { - "pc": 8 - }, - { - "pc": 23 - }, - { - "pc": 27 - }, - { - "pc": 30, - "stack-additions": [ - { - "type": 2, - "uint": 4 - } - ] - }, - { - "pc": 32, - "stack-pop-count": 1 - }, - { - "pc": 35, - "stack-additions": [ - { - "bytes": "U1dL/w==", - "type": 1 - } - ] - }, - { - "pc": 41, - "stack-additions": [ - { - "bytes": "U1dL/w==", - "type": 1 - } - ] - }, - { - "pc": 44, - "stack-pop-count": 2 - }, - { - "pc": 50, - "stack-additions": [ - { - "type": 2 - } - ] - }, - { - "pc": 52, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 53, - "stack-pop-count": 1 - }, - { - "pc": 54, - "stack-additions": [ - { - "type": 2, - "uint": 7460 - } - ] - }, - { - "pc": 56, - "stack-pop-count": 1 - }, - { - "pc": 57, - "stack-additions": [ - { - "bytes": "AAAAAAAAAAE=", - "type": 1 - } - ] - }, - { - "pc": 60, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 61, - "stack-additions": [ - { - "bytes": "AAAAAAAAAAI=", - "type": 1 - } - ] - }, - { - "pc": 64, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 65, - "stack-additions": [ - { - "bytes": "AAAAAAAAAAM=", - "type": 1 - } - ] - }, - { - "pc": 68, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 69 - }, - { - "pc": 97 - }, - { - "pc": 100, - "stack-additions": [ - { - "type": 2 - } - ] - }, - { - "pc": 101, - "stack-additions": [ - { - "type": 2 - }, - { - "type": 2 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 102, - "stack-additions": [ - { - "type": 1 - } - ] - }, - { - "pc": 104, - "stack-additions": [ - { - "type": 1 - }, - { - "type": 1 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 105, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 107, - "stack-additions": [ - { - "type": 2, - "uint": 1000 - } - ] - }, - { - "pc": 108, - "stack-additions": [ - { - "type": 2, - "uint": 1000 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 109, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 111, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ] - }, - { - "pc": 113, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 114, - "stack-additions": [ - { - "type": 2, - "uint": 3 - }, - { - "type": 2, - "uint": 3 - }, - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 116, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ] - }, - { - "pc": 118, - "stack-additions": [ - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 119, - "stack-additions": [ - { - "type": 2, - "uint": 9 - }, - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 120, - "stack-additions": [ - { - "type": 2, - "uint": 9 - }, - { - "type": 2, - "uint": 3 - }, - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 122, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 123, - "stack-pop-count": 1 - }, - { - "pc": 126, - "stack-additions": [ - { - "type": 2, - "uint": 1000 - } - ] - }, - { - "pc": 128, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ] - }, - { - "pc": 130, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 131, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 3 - }, - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 4 - }, - { - "pc": 133 - }, - { - "pc": 195, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - } - ] - }, - { - "pc": 197, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ] - }, - { - "pc": 199, - "stack-additions": [ - { - "type": 2, - "uint": 1005 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 200, - "stack-additions": [ - { - "type": 2, - "uint": 9 - } - ] - }, - { - "pc": 202, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 203, - "stack-pop-count": 1 - }, - { - "pc": 220, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ] - }, - { - "pc": 222, - "stack-additions": [ - { - "type": 2, - "uint": 3 - }, - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 223, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ] - }, - { - "pc": 225 - }, - { - "pc": 338 - }, - { - "pc": 341, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ] - }, - { - "pc": 343, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ] - }, - { - "pc": 345, - "stack-additions": [ - { - "type": 2, - "uint": 6 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 346, - "stack-additions": [ - { - "type": 2, - "uint": 6 - }, - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 348, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ] - }, - { - "pc": 350, - "stack-additions": [ - { - "type": 2, - "uint": 6 - } - ] - }, - { - "pc": 352, - "stack-additions": [ - { - "type": 2, - "uint": 18 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 353, - "stack-additions": [ - { - "type": 2, - "uint": 18 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 355, - "stack-additions": [ - { - "type": 2, - "uint": 6 - } - ] - }, - { - "pc": 357, - "stack-additions": [ - { - "type": 2, - "uint": 18 - } - ] - }, - { - "pc": 359, - "stack-additions": [ - { - "type": 2, - "uint": 24 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 360, - "stack-additions": [ - { - "type": 2, - "uint": 24 - }, - { - "type": 2, - "uint": 24 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 361, - "stack-additions": [ - { - "type": 2, - "uint": 24 - }, - { - "type": 2, - "uint": 18 - }, - { - "type": 2, - "uint": 24 - } - ], - "stack-pop-count": 4 - }, - { - "pc": 363, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ] - }, - { - "pc": 365, - "stack-additions": [ - { - "type": 2, - "uint": 48 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 366, - "stack-additions": [ - { - "type": 2, - "uint": 48 - }, - { - "type": 2, - "uint": 48 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 367, - "stack-additions": [ - { - "type": 2, - "uint": 48 - }, - { - "type": 2, - "uint": 18 - }, - { - "type": 2, - "uint": 48 - } - ], - "stack-pop-count": 4 - }, - { - "pc": 369, - "stack-additions": [ - { - "type": 2, - "uint": 18 - } - ] - }, - { - "pc": 371, - "stack-additions": [ - { - "type": 2, - "uint": 66 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 372, - "stack-additions": [ - { - "type": 2, - "uint": 48 - } - ] - }, - { - "pc": 374, - "stack-additions": [ - { - "type": 2, - "uint": 18 - } - ] - }, - { - "pc": 376, - "stack-additions": [ - { - "type": 2, - "uint": 864 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 377, - "stack-additions": [ - { - "type": 2, - "uint": 66 - }, - { - "type": 2, - "uint": 864 - }, - { - "type": 2, - "uint": 66 - }, - { - "type": 2, - "uint": 864 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 378, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 379, - "stack-additions": [ - { - "type": 2, - "uint": 1 - }, - { - "type": 2, - "uint": 864 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 380, - "stack-additions": [ - { - "type": 2, - "uint": 864 - }, - { - "type": 2, - "uint": 66 - }, - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 382, - "stack-additions": [ - { - "type": 2, - "uint": 66 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 383, - "stack-additions": [ - { - "type": 2, - "uint": 66 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 228, - "stack-additions": [ - { - "type": 2, - "uint": 198 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 229, - "stack-additions": [ - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 231, - "stack-additions": [ - { - "type": 2, - "uint": 198 - } - ] - }, - { - "pc": 233, - "stack-additions": [ - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 198 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 234 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 198 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 405, - "stack-additions": [ - { - "type": 2, - "uint": 198 - } - ] - }, - { - "pc": 407, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 408, - "stack-additions": [ - { - "type": 2, - "uint": 19 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 409 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 19 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 405, - "stack-additions": [ - { - "type": 2, - "uint": 19 - } - ] - }, - { - "pc": 407, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 408, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 409 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 394, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 396, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 397, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 398, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 399, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 401, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2, - "uint": 1 - }, - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 403, - "stack-additions": [ - { - "bytes": "MQ==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 404, - "stack-additions": [ - { - "bytes": "MQ==", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 412, - "stack-additions": [ - { - "type": 2, - "uint": 19 - } - ] - }, - { - "pc": 414, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 415, - "stack-additions": [ - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 416, - "stack-additions": [ - { - "type": 2, - "uint": 9 - }, - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 417, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 418, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 419, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 420, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2, - "uint": 9 - }, - { - "type": 2, - "uint": 10 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 422, - "stack-additions": [ - { - "bytes": "OQ==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 423, - "stack-additions": [ - { - "bytes": "MTk=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 424, - "stack-additions": [ - { - "bytes": "MTk=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 412, - "stack-additions": [ - { - "type": 2, - "uint": 198 - } - ] - }, - { - "pc": 414, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 415, - "stack-additions": [ - { - "type": 2, - "uint": 8 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 416, - "stack-additions": [ - { - "type": 2, - "uint": 8 - }, - { - "type": 2, - "uint": 8 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 417, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 418, - "stack-additions": [ - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 419, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 420, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2, - "uint": 8 - }, - { - "type": 2, - "uint": 9 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 422, - "stack-additions": [ - { - "bytes": "OA==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 423, - "stack-additions": [ - { - "bytes": "MTk4", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 424, - "stack-additions": [ - { - "bytes": "MTk4", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 237, - "stack-additions": [ - { - "bytes": "MTk4", - "type": 1 - }, - { - "type": 2 - }, - { - "type": 1 - }, - { - "type": 1 - }, - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 9 - }, - { - "type": 2, - "uint": 198 - } - ], - "stack-pop-count": 9 - }, - { - "pc": 239, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - } - ] - }, - { - "pc": 241, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 1002 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 242, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 198 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 244, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 245, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - }, - { - "type": 2, - "uint": 1200 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 246, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - }, - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 1200 - } - ], - "stack-pop-count": 4 - }, - { - "pc": 248, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - }, - { - "type": 2, - "uint": 1200 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 249 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 405, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - } - ] - }, - { - "pc": 407, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 408, - "stack-additions": [ - { - "type": 2, - "uint": 120 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 409 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 120 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 405, - "stack-additions": [ - { - "type": 2, - "uint": 120 - } - ] - }, - { - "pc": 407, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 408, - "stack-additions": [ - { - "type": 2, - "uint": 12 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 409 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 12 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 405, - "stack-additions": [ - { - "type": 2, - "uint": 12 - } - ] - }, - { - "pc": 407, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 408, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 409 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 394, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 396, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 397, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 398, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 399, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 401, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2, - "uint": 1 - }, - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 403, - "stack-additions": [ - { - "bytes": "MQ==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 404, - "stack-additions": [ - { - "bytes": "MQ==", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 412, - "stack-additions": [ - { - "type": 2, - "uint": 12 - } - ] - }, - { - "pc": 414, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 415, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 416, - "stack-additions": [ - { - "type": 2, - "uint": 2 - }, - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 417, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 418, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 419, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 420, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2, - "uint": 2 - }, - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 422, - "stack-additions": [ - { - "bytes": "Mg==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 423, - "stack-additions": [ - { - "bytes": "MTI=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 424, - "stack-additions": [ - { - "bytes": "MTI=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 412, - "stack-additions": [ - { - "type": 2, - "uint": 120 - } - ] - }, - { - "pc": 414, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 415, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 416, - "stack-additions": [ - { - "type": 2 - }, - { - "type": 2 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 417, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 418, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 419, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 420, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2 - }, - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 422, - "stack-additions": [ - { - "bytes": "MA==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 423, - "stack-additions": [ - { - "bytes": "MTIw", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 424, - "stack-additions": [ - { - "bytes": "MTIw", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 412, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - } - ] - }, - { - "pc": 414, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 415, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 416, - "stack-additions": [ - { - "type": 2 - }, - { - "type": 2 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 417, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 418, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 419, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 420, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2 - }, - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 422, - "stack-additions": [ - { - "bytes": "MA==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 423, - "stack-additions": [ - { - "bytes": "MTIwMA==", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 424, - "stack-additions": [ - { - "bytes": "MTIwMA==", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 252, - "stack-additions": [ - { - "bytes": "MTIwMA==", - "type": 1 - }, - { - "type": 1 - }, - { - "type": 1 - }, - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 1200 - }, - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 1200 - } - ], - "stack-pop-count": 9 - }, - { - "pc": 254, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - } - ] - }, - { - "pc": 256, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 257, - "stack-additions": [ - { - "type": 2, - "uint": 1 - }, - { - "type": 2, - "uint": 1002 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 258, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - }, - { - "type": 1 - }, - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 1200 - }, - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 7 - }, - { - "pc": 260, - "stack-pop-count": 1 - }, - { - "pc": 263, - "stack-additions": [ - { - "type": 2, - "uint": 1002 - } - ] - }, - { - "pc": 265, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - } - ] - }, - { - "pc": 267, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 268, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 1 - }, - { - "type": 2, - "uint": 1002 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 1200 - } - ], - "stack-pop-count": 6 - }, - { - "pc": 270, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ] - }, - { - "pc": 272, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 273, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 1200 - }, - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 5 - }, - { - "pc": 275, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 276, - "stack-additions": [ - { - "type": 2, - "uint": 198 - } - ] - }, - { - "pc": 278, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 279, - "stack-additions": [ - { - "type": 2 - }, - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 280, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 1 - }, - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 1200 - }, - { - "type": 2 - } - ], - "stack-pop-count": 7 - }, - { - "pc": 282, - "stack-pop-count": 1 - }, - { - "pc": 292, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ] - }, - { - "pc": 294, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 295, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 1200 - }, - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 5 - }, - { - "pc": 297, - "stack-additions": [ - { - "type": 2, - "uint": 198 - } - ] - }, - { - "pc": 299, - "stack-additions": [ - { - "type": 2, - "uint": 1200 - } - ] - }, - { - "pc": 301, - "stack-additions": [ - { - "type": 2, - "uint": 1398 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 302, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ] - }, - { - "pc": 304, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 305, - "stack-additions": [ - { - "type": 2 - }, - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 306, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 1 - }, - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 1200 - }, - { - "type": 2 - } - ], - "stack-pop-count": 7 - }, - { - "pc": 308, - "stack-pop-count": 1 - }, - { - "pc": 318, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ] - }, - { - "pc": 320, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 321 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 405, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ] - }, - { - "pc": 407, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 408, - "stack-additions": [ - { - "type": 2, - "uint": 220 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 409 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 220 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 405, - "stack-additions": [ - { - "type": 2, - "uint": 220 - } - ] - }, - { - "pc": 407, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 408, - "stack-additions": [ - { - "type": 2, - "uint": 22 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 409 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 22 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 405, - "stack-additions": [ - { - "type": 2, - "uint": 22 - } - ] - }, - { - "pc": 407, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 408, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 409 - }, - { - "pc": 384 - }, - { - "pc": 387, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ] - }, - { - "pc": 389, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 390, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 391, - "stack-pop-count": 1 - }, - { - "pc": 394, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ] - }, - { - "pc": 396, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 397, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 398, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 399, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ] - }, - { - "pc": 401, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2, - "uint": 2 - }, - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 403, - "stack-additions": [ - { - "bytes": "Mg==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 404, - "stack-additions": [ - { - "bytes": "Mg==", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 412, - "stack-additions": [ - { - "type": 2, - "uint": 22 - } - ] - }, - { - "pc": 414, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 415, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 416, - "stack-additions": [ - { - "type": 2, - "uint": 2 - }, - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 417, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 418, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 419, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 420, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2, - "uint": 2 - }, - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 422, - "stack-additions": [ - { - "bytes": "Mg==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 423, - "stack-additions": [ - { - "bytes": "MjI=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 424, - "stack-additions": [ - { - "bytes": "MjI=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 412, - "stack-additions": [ - { - "type": 2, - "uint": 220 - } - ] - }, - { - "pc": 414, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 415, - "stack-additions": [ - { - "type": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 416, - "stack-additions": [ - { - "type": 2 - }, - { - "type": 2 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 417, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 418, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 419, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 420, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2 - }, - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 422, - "stack-additions": [ - { - "bytes": "MA==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 423, - "stack-additions": [ - { - "bytes": "MjIw", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 424, - "stack-additions": [ - { - "bytes": "MjIw", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 412, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ] - }, - { - "pc": 414, - "stack-additions": [ - { - "type": 2, - "uint": 10 - } - ] - }, - { - "pc": 415, - "stack-additions": [ - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 416, - "stack-additions": [ - { - "type": 2, - "uint": 2 - }, - { - "type": 2, - "uint": 2 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 417, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 418, - "stack-additions": [ - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 419, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - } - ] - }, - { - "pc": 420, - "stack-additions": [ - { - "bytes": "MDEyMzQ1Njc4OQ==", - "type": 1 - }, - { - "type": 2, - "uint": 2 - }, - { - "type": 2, - "uint": 3 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 422, - "stack-additions": [ - { - "bytes": "Mg==", - "type": 1 - } - ], - "stack-pop-count": 3 - }, - { - "pc": 423, - "stack-additions": [ - { - "bytes": "MjIwMg==", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 424, - "stack-additions": [ - { - "bytes": "MjIwMg==", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 324, - "stack-additions": [ - { - "bytes": "IA==", - "type": 1 - } - ] - }, - { - "pc": 325, - "stack-additions": [ - { - "bytes": "MjIwMiA=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 326, - "stack-additions": [ - { - "bytes": "MTk4", - "type": 1 - } - ] - }, - { - "pc": 328, - "stack-additions": [ - { - "bytes": "MjIwMiAxOTg=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 329, - "stack-additions": [ - { - "bytes": "IA==", - "type": 1 - } - ] - }, - { - "pc": 330, - "stack-additions": [ - { - "bytes": "MjIwMiAxOTgg", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 331, - "stack-additions": [ - { - "bytes": "MTIwMA==", - "type": 1 - } - ] - }, - { - "pc": 333, - "stack-additions": [ - { - "bytes": "MjIwMiAxOTggMTIwMA==", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 334, - "stack-pop-count": 1 - }, - { - "pc": 335, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - }, - { - "bytes": "MTIwMA==", - "type": 1 - }, - { - "type": 2, - "uint": 2202 - }, - { - "type": 1 - }, - { - "type": 2, - "uint": 2202 - }, - { - "type": 2, - "uint": 198 - }, - { - "type": 2, - "uint": 1200 - } - ], - "stack-pop-count": 8 - }, - { - "pc": 337, - "stack-additions": [ - { - "type": 2, - "uint": 2202 - } - ], - "stack-pop-count": 10 - }, - { - "pc": 72, - "stack-additions": [ - { - "bytes": "AAAAAAAACJo=", - "type": 1 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 73, - "stack-additions": [ - { - "bytes": "FR98dQ==", - "type": 1 - } - ] - }, - { - "pc": 79, - "stack-additions": [ - { - "bytes": "FR98dQ==", - "type": 1 - }, - { - "bytes": "AAAAAAAACJo=", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 80, - "stack-additions": [ - { - "bytes": "FR98dQAAAAAAAAia", - "type": 1 - } - ], - "stack-pop-count": 2 - }, - { - "pc": 81, - "stack-pop-count": 1 - }, - { - "pc": 82, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ] - }, - { - "pc": 83, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 1 - }, - { - "pc": 26, - "stack-additions": [ - { - "type": 2, - "uint": 1 - } - ], - "stack-pop-count": 1 - } - ] - }, - "txn-result": { - "logs": [ - "MjIwMiAxOTggMTIwMA==", - "FR98dQAAAAAAAAia" - ], - "pool-error": "", - "txn": { - "sig": "v22tQlWd3nvG42pNY8yFT2rNd/Rzpl+z2dS8rGVz54bLGmfgBPsPdw59ancNW3JknUqOjWwsh/M7PlPHBMHcAw==", - "txn": { - "apaa": [ - "U1dL/w==", - "AAAAAAAAAAE=", - "AAAAAAAAAAI=", - "AAAAAAAAAAM=" - ], - "apid": 7460, - "fee": 1000, - "fv": 3574, - "gen": "dockernet-v1", - "gh": "hqqP8CSm+18MWN31F72IIRdfgChcnIHGnpMzjdWPwE4=", - "lv": 4574, - "snd": "7DWST2CMNWSHVI3MREDHRJL2UAODKSGKGF36ZH5HHAWJXYLTXX5HMENH2M", - "type": "appl" - } - } - } - } - ] - } - ], - "version": 2 -} \ No newline at end of file diff --git a/sampleWorkspace/puya/simulate-response.json b/sampleWorkspace/puya/simulate-response.json new file mode 100644 index 0000000..79c2a9e --- /dev/null +++ b/sampleWorkspace/puya/simulate-response.json @@ -0,0 +1,909 @@ +{ + "eval-overrides": { + "allow-empty-signatures": true, + "max-log-calls": 2048, + "max-log-size": 65536 + }, + "exec-trace-config": { + "enable": true, + "scratch-change": true, + "stack-change": true + }, + "last-round": 9, + "txn-groups": [ + { + "app-budget-added": 1400, + "app-budget-consumed": 99, + "txn-results": [ + { + "txn-result": { + "pool-error": "", + "txn": { + "sig": "zuz9jiMPGgrvEsrI570Laf54Ox7g/sW8xNHdDv/RZ0z2qukSMiDxIWfGiil8YdkJ2zK7i8hKsQ5AoOQyD24WBA==", + "txn": { + "arcv": "TK6ZU53WSGFBIO7B43VRX6QVXZ567M66HTSYWHEAUOTN56TD24RMOFBYD4", + "fv": 9, + "gen": "dockernet-v1", + "gh": "OShYGeU0n6C6T8zWDqX0A5XjuM1eA5cWLDwQ1EswpX4=", + "grp": "xawuPhfR9+1QUNMo5z/YOO+dY2mP4H5O7xf47nEdXf8=", + "lv": 1009, + "snd": "TK6ZU53WSGFBIO7B43VRX6QVXZ567M66HTSYWHEAUOTN56TD24RMOFBYD4", + "type": "axfer", + "xaid": 1041 + } + } + } + }, + { + "app-budget-consumed": 99, + "exec-trace": { + "approval-program-hash": "cqTkXo2HRQY5h4/nvU46XmZrHlAe5gCdC/Q9eBAPl5k=", + "approval-program-trace": [ + { + "pc": 1 + }, + { + "pc": 6 + }, + { + "pc": 65, + "stack-additions": [ + { + "type": 2, + "uint": 1024 + } + ] + }, + { + "pc": 67, + "stack-pop-count": 1 + }, + { + "pc": 73 + }, + { + "pc": 77 + }, + { + "pc": 80, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 82, + "stack-pop-count": 1 + }, + { + "pc": 85, + "stack-additions": [ + { + "bytes": "G83lLQ==", + "type": 1 + }, + { + "bytes": "uJYpYg==", + "type": 1 + }, + { + "bytes": "/ps47Q==", + "type": 1 + }, + { + "bytes": "n13xJg==", + "type": 1 + }, + { + "bytes": "uzax1w==", + "type": 1 + }, + { + "bytes": "d6JGaQ==", + "type": 1 + }, + { + "bytes": "0nCXZg==", + "type": 1 + }, + { + "bytes": "fzI4Mw==", + "type": 1 + }, + { + "bytes": "A9JGxw==", + "type": 1 + }, + { + "bytes": "6UbQaw==", + "type": 1 + }, + { + "bytes": "kKZZMg==", + "type": 1 + }, + { + "bytes": "m3GG0w==", + "type": 1 + }, + { + "bytes": "6yryJg==", + "type": 1 + } + ] + }, + { + "pc": 152, + "stack-additions": [ + { + "bytes": "6UbQaw==", + "type": 1 + } + ] + }, + { + "pc": 155, + "stack-pop-count": 14 + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 322, + "stack-additions": [ + { + "type": 2, + "uint": 1024 + } + ] + }, + { + "pc": 324, + "stack-pop-count": 1 + }, + { + "pc": 325, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 327, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 328, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 329, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 330, + "stack-additions": [ + { + "type": 2, + "uint": 4 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 332, + "stack-additions": [ + { + "type": 2, + "uint": 4 + } + ] + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 334, + "stack-pop-count": 1 + }, + { + "pc": 335 + }, + { + "pc": 696 + }, + { + "pc": 699, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 700, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ] + }, + { + "pc": 702, + "stack-additions": [ + { + "bytes": "AAAAAAAABBE=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-pop-count": 1 + }, + { + "pc": 704, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1041 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 708, + "stack-additions": [ + { + "type": 2, + "uint": 1041 + }, + { + "bytes": "AAAAAAAABBE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2, + "uint": 1041 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1041 + }, + { + "type": 2, + "uint": 1041 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 1041 + }, + { + "type": 2, + "uint": 1041 + }, + { + "type": 2, + "uint": 1041 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 714, + "stack-pop-count": 1 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 717, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 719, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 720, + "stack-pop-count": 1 + }, + { + "pc": 721, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 723, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 726, + "stack-pop-count": 1 + }, + { + "pc": 727, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 729, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 731, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 733, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + }, + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + }, + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + }, + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 739, + "stack-pop-count": 1 + }, + { + "pc": 742, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 747, + "stack-pop-count": 1 + }, + { + "pc": 750, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 751 + }, + { + "pc": 755, + "stack-pop-count": 1 + }, + { + "pc": 756, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 760, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 764, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 765, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + }, + { + "type": 2, + "uint": 1041 + }, + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 767, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 768, + "stack-pop-count": 1 + }, + { + "pc": 771, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 773, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 775, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 776, + "stack-pop-count": 1 + }, + { + "pc": 779, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 780 + }, + { + "pc": 784, + "stack-pop-count": 1 + }, + { + "pc": 785, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ] + }, + { + "pc": 787, + "stack-additions": [ + { + "type": 2, + "uint": 1041 + } + ] + }, + { + "pc": 789 + }, + { + "pc": 793 + }, + { + "pc": 796 + }, + { + "pc": 797, + "stack-additions": [ + { + "bytes": "P9F2upOy1gYWBQ6d/gfuyKEs8/hW0GRmnBP8tzcsqBY=", + "type": 1 + } + ] + }, + { + "pc": 799, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 800, + "stack-pop-count": 1 + }, + { + "pc": 802, + "stack-additions": [ + { + "bytes": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=", + "type": 1 + } + ] + }, + { + "pc": 804, + "stack-pop-count": 1 + }, + { + "pc": 806, + "stack-pop-count": 1 + }, + { + "pc": 808, + "stack-additions": [ + { + "type": 2, + "uint": 1041 + } + ] + }, + { + "pc": 810, + "stack-pop-count": 1 + }, + { + "pc": 812, + "stack-additions": [ + { + "type": 2, + "uint": 4 + } + ] + }, + { + "pc": 813, + "stack-pop-count": 1 + }, + { + "pc": 815, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 816, + "stack-pop-count": 1 + }, + { + "pc": 818, + "spawned-inners": [0] + }, + { + "pc": 819, + "stack-pop-count": 2 + }, + { + "pc": 792, + "stack-pop-count": 4 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 339, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 76, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + } + ], + "inner-trace": [{}] + }, + "txn-result": { + "inner-txns": [ + { + "pool-error": "", + "txn": { + "txn": { + "aamt": 1, + "arcv": "TK6ZU53WSGFBIO7B43VRX6QVXZ567M66HTSYWHEAUOTN56TD24RMOFBYD4", + "fv": 9, + "lv": 1009, + "snd": "H7IXNOUTWLLAMFQFB2O74B7OZCQSZ47YK3IGIZU4CP6LONZMVALFPUGGQY", + "type": "axfer", + "xaid": 1041 + } + } + } + ], + "pool-error": "", + "txn": { + "sig": "o/dVK3Tq5GcjWzcXjk/ljnqkWxz4YxHs2wd3cVP/IODPYkm1vAM6K02+X4aNzxBBgc5yhf0CxhE9jjJgGADrCg==", + "txn": { + "apaa": ["6UbQaw=="], + "apas": [1041], + "apbx": [ + { + "n": "mr2ad3aRihQ74ebrG/oVvnvvs9485YscgKOm3vpj1yI=" + } + ], + "apid": 1024, + "fee": 267000, + "fv": 9, + "gen": "dockernet-v1", + "gh": "OShYGeU0n6C6T8zWDqX0A5XjuM1eA5cWLDwQ1EswpX4=", + "grp": "xawuPhfR9+1QUNMo5z/YOO+dY2mP4H5O7xf47nEdXf8=", + "lv": 1009, + "snd": "TK6ZU53WSGFBIO7B43VRX6QVXZ567M66HTSYWHEAUOTN56TD24RMOFBYD4", + "type": "appl" + } + } + } + } + ] + } + ], + "version": 2 +} diff --git a/sampleWorkspace/puya/sources.json b/sampleWorkspace/puya/sources.json index 38ee6ee..1b9eb90 100644 --- a/sampleWorkspace/puya/sources.json +++ b/sampleWorkspace/puya/sources.json @@ -1,8 +1,8 @@ { "txn-group-sources": [ { - "sourcemap-location": "DebugContract.approval.puya.map", - "hash": "e6kn9Vrk26npvLg4tFQtmi60V3cGZaVPw0UtLeEJVHU=" + "sourcemap-location": "ProofOfAttendance.approval.puya.map", + "hash": "cqTkXo2HRQY5h4/nvU46XmZrHlAe5gCdC/Q9eBAPl5k=" } ] -} \ No newline at end of file +} diff --git a/sampleWorkspace/puya_and_teal/delegated_lsig/lsig.puya.map b/sampleWorkspace/puya_and_teal/delegated_lsig/lsig.puya.map new file mode 100644 index 0000000..e877565 --- /dev/null +++ b/sampleWorkspace/puya_and_teal/delegated_lsig/lsig.puya.map @@ -0,0 +1,108 @@ +{ + "version": 3, + "sources": [ + "lsig.py" + ], + "mappings": ";AAMc;;AAAA;;AAAA;;AAAA;AAAA;AAAA;;AACH;;AAAkB;;;AAAlB;AAAP;AACO;;AAAP", + "op_pc_offset": 0, + "pc_events": { + "1": { + "subroutine": "smart_contracts.lsig.lsig.approve_hello_call", + "params": {}, + "block": "smart_contracts.lsig.lsig.approve_hello_call", + "stack_in": [], + "op": "pushint 0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "3": { + "op": "gtxns TypeEnum", + "defined_out": [ + "gtxn_type%0#0" + ], + "stack_out": [ + "gtxn_type%0#0" + ] + }, + "5": { + "op": "pushint 6 // appl", + "defined_out": [ + "appl", + "gtxn_type%0#0" + ], + "stack_out": [ + "gtxn_type%0#0", + "appl" + ] + }, + "7": { + "op": "==", + "defined_out": [ + "gtxn_type_matches%0#0" + ], + "stack_out": [ + "gtxn_type_matches%0#0" + ] + }, + "8": { + "op": "assert // transaction type is appl", + "stack_out": [] + }, + "9": { + "op": "pushint 0 // 0", + "stack_out": [ + "0" + ] + }, + "11": { + "op": "gtxns ApplicationID", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "13": { + "op": "pushint 1002 // 1002", + "defined_out": [ + "1002", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "1002" + ] + }, + "16": { + "op": "==", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "17": { + "op": "assert", + "stack_out": [] + }, + "18": { + "op": "pushint 1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "20": { + "op": "return", + "stack_out": [] + } + } +} diff --git a/sampleWorkspace/puya_and_teal/delegated_lsig/lsig.py b/sampleWorkspace/puya_and_teal/delegated_lsig/lsig.py new file mode 100644 index 0000000..f8c1e1e --- /dev/null +++ b/sampleWorkspace/puya_and_teal/delegated_lsig/lsig.py @@ -0,0 +1,9 @@ +# pyright: reportMissingModuleSource=false +from algopy import gtxn, logicsig + + +@logicsig +def approve_hello_call() -> bool: + app_txn = gtxn.ApplicationCallTransaction(0) + assert app_txn.app_id == 1002 + return True diff --git a/sampleWorkspace/puya_and_teal/first_app/approval.teal b/sampleWorkspace/puya_and_teal/first_app/approval.teal new file mode 100644 index 0000000..e1db537 --- /dev/null +++ b/sampleWorkspace/puya_and_teal/first_app/approval.teal @@ -0,0 +1,87 @@ +#pragma version 10 + +smart_contracts.hello_world.contract.HelloWorld.approval_program: + callsub __puya_arc4_router__ + return + + +// smart_contracts.hello_world.contract.HelloWorld.__puya_arc4_router__() -> uint64: +__puya_arc4_router__: + proto 0 1 + txn NumAppArgs + bz __puya_arc4_router___bare_routing@5 + method "hello(string,application)string" + txna ApplicationArgs 0 + match __puya_arc4_router___hello_route@2 + int 0 + retsub + +__puya_arc4_router___hello_route@2: + txn OnCompletion + ! + assert // OnCompletion is NoOp + txn ApplicationID + assert // is not creating + txna ApplicationArgs 1 + extract 2 0 + txna ApplicationArgs 2 + btoi + txnas Applications + callsub hello + dup + len + itob + extract 6 2 + swap + concat + byte 0x151f7c75 + swap + concat + log + int 1 + retsub + +__puya_arc4_router___bare_routing@5: + txn OnCompletion + bnz __puya_arc4_router___after_if_else@9 + txn ApplicationID + ! + assert // is creating + int 1 + retsub + +__puya_arc4_router___after_if_else@9: + int 0 + retsub + + +// smart_contracts.hello_world.contract.HelloWorld.hello(name: bytes, second_app_id: uint64) -> bytes: +hello: + proto 2 1 + itxn_begin + frame_dig -2 + len + itob + extract 6 2 + frame_dig -2 + concat + frame_dig -1 + itxn_field ApplicationID + method "hello(string)string" + itxn_field ApplicationArgs + itxn_field ApplicationArgs + int appl + itxn_field TypeEnum + int 0 + itxn_field Fee + itxn_submit + itxn LastLog + dup + extract 4 0 + swap + extract 0 4 + byte 0x151f7c75 + == + assert // ARC4 prefix is valid + extract 2 0 + retsub \ No newline at end of file diff --git a/sampleWorkspace/puya_and_teal/first_app/approval.teal.tok.map b/sampleWorkspace/puya_and_teal/first_app/approval.teal.tok.map new file mode 100644 index 0000000..85c8559 --- /dev/null +++ b/sampleWorkspace/puya_and_teal/first_app/approval.teal.tok.map @@ -0,0 +1 @@ +{"version": 3, "sources": ["approval.teal"], "mappings": ";;;;;;;;;;;;AAGI;;;AACA;AAKA;;;AACA;;AACA;;;AACA;;;;;;AACA;;;AACA;;;;AACA;AACA;AAGA;;AACA;AACA;AACA;;AACA;AACA;;;AACA;;;AACA;;;AACA;AACA;;AACA;;;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;;AACA;;;AACA;;AACA;AACA;AACA;AACA;AAGA;AACA;AAKA;;;AACA;AACA;;AACA;AACA;AACA;;;AACA;;AACA;AACA;;AACA;;AACA;;;;;;AACA;;AACA;;AACA;;AACA;;AACA;AACA;;AACA;AACA;;AACA;AACA;;;AACA;AACA;;;AACA;AACA;AACA;AACA;;;AACA", "pc_to_line": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 3, "13": 3, "14": 3, "15": 4, "16": 9, "17": 9, "18": 9, "19": 10, "20": 10, "21": 11, "22": 11, "23": 11, "24": 12, "25": 12, "26": 12, "27": 12, "28": 12, "29": 12, "30": 13, "31": 13, "32": 13, "33": 14, "34": 14, "35": 14, "36": 14, "37": 15, "38": 16, "39": 19, "40": 19, "41": 20, "42": 21, "43": 22, "44": 22, "45": 23, "46": 24, "47": 24, "48": 24, "49": 25, "50": 25, "51": 25, "52": 26, "53": 26, "54": 26, "55": 27, "56": 28, "57": 28, "58": 29, "59": 29, "60": 29, "61": 30, "62": 31, "63": 32, "64": 33, "65": 33, "66": 33, "67": 34, "68": 35, "69": 36, "70": 37, "71": 38, "72": 39, "73": 40, "74": 41, "75": 44, "76": 44, "77": 45, "78": 45, "79": 45, "80": 46, "81": 46, "82": 47, "83": 48, "84": 49, "85": 50, "86": 53, "87": 54, "88": 59, "89": 59, "90": 59, "91": 60, "92": 61, "93": 61, "94": 62, "95": 63, "96": 64, "97": 64, "98": 64, "99": 65, "100": 65, "101": 66, "102": 67, "103": 67, "104": 68, "105": 68, "106": 69, "107": 69, "108": 69, "109": 69, "110": 69, "111": 69, "112": 70, "113": 70, "114": 71, "115": 71, "116": 72, "117": 72, "118": 73, "119": 73, "120": 74, "121": 75, "122": 75, "123": 76, "124": 77, "125": 77, "126": 78, "127": 79, "128": 79, "129": 79, "130": 80, "131": 81, "132": 81, "133": 81, "134": 82, "135": 83, "136": 84, "137": 85, "138": 85, "139": 85, "140": 86}, "line_to_pc": {"0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "3": [12, 13, 14], "4": [15], "9": [16, 17, 18], "10": [19, 20], "11": [21, 22, 23], "12": [24, 25, 26, 27, 28, 29], "13": [30, 31, 32], "14": [33, 34, 35, 36], "15": [37], "16": [38], "19": [39, 40], "20": [41], "21": [42], "22": [43, 44], "23": [45], "24": [46, 47, 48], "25": [49, 50, 51], "26": [52, 53, 54], "27": [55], "28": [56, 57], "29": [58, 59, 60], "30": [61], "31": [62], "32": [63], "33": [64, 65, 66], "34": [67], "35": [68], "36": [69], "37": [70], "38": [71], "39": [72], "40": [73], "41": [74], "44": [75, 76], "45": [77, 78, 79], "46": [80, 81], "47": [82], "48": [83], "49": [84], "50": [85], "53": [86], "54": [87], "59": [88, 89, 90], "60": [91], "61": [92, 93], "62": [94], "63": [95], "64": [96, 97, 98], "65": [99, 100], "66": [101], "67": [102, 103], "68": [104, 105], "69": [106, 107, 108, 109, 110, 111], "70": [112, 113], "71": [114, 115], "72": [116, 117], "73": [118, 119], "74": [120], "75": [121, 122], "76": [123], "77": [124, 125], "78": [126], "79": [127, 128, 129], "80": [130], "81": [131, 132, 133], "82": [134], "83": [135], "84": [136], "85": [137, 138, 139], "86": [140]}} \ No newline at end of file diff --git a/sampleWorkspace/puya_and_teal/first_app/clear.teal b/sampleWorkspace/puya_and_teal/first_app/clear.teal new file mode 100644 index 0000000..5b8d68e --- /dev/null +++ b/sampleWorkspace/puya_and_teal/first_app/clear.teal @@ -0,0 +1,5 @@ +#pragma version 10 + +smart_contracts.hello_world.contract.HelloWorld.clear_state_program: + int 1 + return \ No newline at end of file diff --git a/sampleWorkspace/puya_and_teal/first_app/clear.teal.tok.map b/sampleWorkspace/puya_and_teal/first_app/clear.teal.tok.map new file mode 100644 index 0000000..1bf52c9 --- /dev/null +++ b/sampleWorkspace/puya_and_teal/first_app/clear.teal.tok.map @@ -0,0 +1 @@ +{"version": 3, "sources": ["clear.teal"], "mappings": ";AAGI;;AACA", "pc_to_line": {"0": 0, "1": 3, "2": 3, "3": 4}, "line_to_pc": {"0": [0], "3": [1, 2], "4": [3]}} \ No newline at end of file diff --git a/sampleWorkspace/puya_and_teal/second_app/contract.py b/sampleWorkspace/puya_and_teal/second_app/contract.py new file mode 100644 index 0000000..2582102 --- /dev/null +++ b/sampleWorkspace/puya_and_teal/second_app/contract.py @@ -0,0 +1,9 @@ +# pyright: reportMissingModuleSource=false +from algopy import ARC4Contract, String +from algopy.arc4 import abimethod + + +class HelloWorld2(ARC4Contract): + @abimethod() + def hello(self, name: String) -> String: + return "Hello, " + name diff --git a/sampleWorkspace/puya_and_teal/second_app/contract_approval.puya.map b/sampleWorkspace/puya_and_teal/second_app/contract_approval.puya.map new file mode 100644 index 0000000..1acbab7 --- /dev/null +++ b/sampleWorkspace/puya_and_teal/second_app/contract_approval.puya.map @@ -0,0 +1,358 @@ +{ + "version": 3, + "sources": [ + "contract.py" + ], + "mappings": ";;;;;;;;;AAKA;;;AAAA;;AAAA;;;AAAA;;;;;;AAAA;;;AAAA;;;;AAAA;AAAA;AACK;;AAAA;AAAA;AAAA;;AAAA;AADL;;;AAAA;;;AACK;;;AAAA;AAAA;AAAA;AAAA;;;AAAA;AAAA;AAAA;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AADL;;AAAA;;;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;;;AAEe;;;;;;;;;AAAA;;AAAA;AAAP", + "op_pc_offset": 0, + "pc_events": { + "1": { + "subroutine": "smart_contracts.hello_world2.contract.HelloWorld2.approval_program", + "params": {}, + "block": "smart_contracts.hello_world2.contract.HelloWorld2.approval_program", + "stack_in": [], + "op": "intcblock 0 1" + }, + "5": { + "callsub": "smart_contracts.hello_world2.contract.HelloWorld2.__puya_arc4_router__", + "op": "callsub __puya_arc4_router__", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "8": { + "op": "return", + "stack_out": [] + }, + "9": { + "subroutine": "smart_contracts.hello_world2.contract.HelloWorld2.__puya_arc4_router__", + "params": {}, + "block": "__puya_arc4_router__", + "stack_in": [], + "op": "proto 0 1" + }, + "12": { + "op": "txn NumAppArgs", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "14": { + "op": "bz __puya_arc4_router___bare_routing@5", + "stack_out": [] + }, + "17": { + "op": "pushbytes 0x02bece11 // method \"hello(string)string\"" + }, + "23": { + "op": "txna ApplicationArgs 0", + "defined_out": [ + "Method(hello(string)string)", + "tmp%2#0" + ], + "stack_out": [ + "Method(hello(string)string)", + "tmp%2#0" + ] + }, + "26": { + "op": "match __puya_arc4_router___hello_route@2", + "stack_out": [] + }, + "30": { + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "31": { + "retsub": true, + "op": "retsub" + }, + "32": { + "block": "__puya_arc4_router___hello_route@2", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%3#0" + ], + "stack_out": [ + "tmp%3#0" + ] + }, + "34": { + "op": "!", + "defined_out": [ + "tmp%4#0" + ], + "stack_out": [ + "tmp%4#0" + ] + }, + "35": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "36": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%5#0" + ], + "stack_out": [ + "tmp%5#0" + ] + }, + "38": { + "op": "assert // is not creating", + "stack_out": [] + }, + "39": { + "op": "txna ApplicationArgs 1", + "defined_out": [ + "tmp%7#0" + ], + "stack_out": [ + "tmp%7#0" + ] + }, + "42": { + "op": "extract 2 0", + "defined_out": [ + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0" + ] + }, + "45": { + "callsub": "smart_contracts.hello_world2.contract.HelloWorld2.hello", + "op": "callsub hello", + "defined_out": [ + "tmp%9#0" + ], + "stack_out": [ + "tmp%9#0" + ] + }, + "48": { + "op": "dup", + "defined_out": [ + "tmp%9#0", + "tmp%9#0 (copy)" + ], + "stack_out": [ + "tmp%9#0", + "tmp%9#0 (copy)" + ] + }, + "49": { + "op": "len", + "defined_out": [ + "length%0#0", + "tmp%9#0" + ], + "stack_out": [ + "tmp%9#0", + "length%0#0" + ] + }, + "50": { + "op": "itob", + "defined_out": [ + "as_bytes%0#0", + "tmp%9#0" + ], + "stack_out": [ + "tmp%9#0", + "as_bytes%0#0" + ] + }, + "51": { + "op": "extract 6 2", + "defined_out": [ + "length_uint16%0#0", + "tmp%9#0" + ], + "stack_out": [ + "tmp%9#0", + "length_uint16%0#0" + ] + }, + "54": { + "op": "swap", + "stack_out": [ + "length_uint16%0#0", + "tmp%9#0" + ] + }, + "55": { + "op": "concat", + "defined_out": [ + "encoded_value%0#0" + ], + "stack_out": [ + "encoded_value%0#0" + ] + }, + "56": { + "op": "pushbytes 0x151f7c75", + "defined_out": [ + "0x151f7c75", + "encoded_value%0#0" + ], + "stack_out": [ + "encoded_value%0#0", + "0x151f7c75" + ] + }, + "62": { + "op": "swap", + "stack_out": [ + "0x151f7c75", + "encoded_value%0#0" + ] + }, + "63": { + "op": "concat", + "defined_out": [ + "tmp%10#0" + ], + "stack_out": [ + "tmp%10#0" + ] + }, + "64": { + "op": "log", + "stack_out": [] + }, + "65": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "66": { + "retsub": true, + "op": "retsub" + }, + "67": { + "block": "__puya_arc4_router___bare_routing@5", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%11#0" + ], + "stack_out": [ + "tmp%11#0" + ] + }, + "69": { + "op": "bnz __puya_arc4_router___after_if_else@9", + "stack_out": [] + }, + "72": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%12#0" + ], + "stack_out": [ + "tmp%12#0" + ] + }, + "74": { + "op": "!", + "defined_out": [ + "tmp%13#0" + ], + "stack_out": [ + "tmp%13#0" + ] + }, + "75": { + "op": "assert // is creating", + "stack_out": [] + }, + "76": { + "op": "intc_1 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "77": { + "retsub": true, + "op": "retsub" + }, + "78": { + "block": "__puya_arc4_router___after_if_else@9", + "stack_in": [], + "op": "intc_0 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "79": { + "retsub": true, + "op": "retsub" + }, + "80": { + "subroutine": "smart_contracts.hello_world2.contract.HelloWorld2.hello", + "params": { + "name#0": "bytes" + }, + "block": "hello", + "stack_in": [], + "op": "proto 1 1" + }, + "83": { + "op": "pushbytes \"Hello, \"", + "defined_out": [ + "\"Hello, \"" + ], + "stack_out": [ + "\"Hello, \"" + ] + }, + "92": { + "op": "frame_dig -1", + "defined_out": [ + "\"Hello, \"", + "name#0 (copy)" + ], + "stack_out": [ + "\"Hello, \"", + "name#0 (copy)" + ] + }, + "94": { + "op": "concat", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "95": { + "retsub": true, + "op": "retsub" + } + } +} diff --git a/sampleWorkspace/puya_and_teal/simulate-response.json b/sampleWorkspace/puya_and_teal/simulate-response.json new file mode 100644 index 0000000..a9fcda4 --- /dev/null +++ b/sampleWorkspace/puya_and_teal/simulate-response.json @@ -0,0 +1,956 @@ +{ + "eval-overrides": { + "allow-empty-signatures": true, + "max-log-calls": 2048, + "max-log-size": 65536 + }, + "exec-trace-config": { + "enable": true, + "scratch-change": true, + "stack-change": true + }, + "last-round": 11, + "txn-groups": [ + { + "app-budget-added": 1400, + "app-budget-consumed": 95, + "txn-results": [ + { + "app-budget-consumed": 95, + "exec-trace": { + "approval-program-hash": "+M4WXURFSOFzatfICt2miBHDfm5qylmm279/3bZtKjI=", + "approval-program-trace": [ + { + "pc": 1 + }, + { + "pc": 5 + }, + { + "pc": 12 + }, + { + "pc": 16 + }, + { + "pc": 19, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 21, + "stack-pop-count": 1 + }, + { + "pc": 24, + "stack-additions": [ + { + "bytes": "WZMacA==", + "type": 1 + } + ] + }, + { + "pc": 30, + "stack-additions": [ + { + "bytes": "WZMacA==", + "type": 1 + } + ] + }, + { + "pc": 33, + "stack-pop-count": 2 + }, + { + "pc": 39, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 41, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 42, + "stack-pop-count": 1 + }, + { + "pc": 43, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + } + ] + }, + { + "pc": 45, + "stack-pop-count": 1 + }, + { + "pc": 46, + "stack-additions": [ + { + "bytes": "AAV3b3JsZA==", + "type": 1 + } + ] + }, + { + "pc": 49, + "stack-additions": [ + { + "bytes": "d29ybGQ=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 52, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ] + }, + { + "pc": 55, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 56, + "stack-additions": [ + { + "type": 2, + "uint": 1004 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 58 + }, + { + "pc": 88 + }, + { + "pc": 91 + }, + { + "pc": 92, + "stack-additions": [ + { + "bytes": "d29ybGQ=", + "type": 1 + } + ] + }, + { + "pc": 94, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 95, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAU=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 96, + "stack-additions": [ + { + "bytes": "AAU=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 99, + "stack-additions": [ + { + "bytes": "d29ybGQ=", + "type": 1 + } + ] + }, + { + "pc": 101, + "stack-additions": [ + { + "bytes": "AAV3b3JsZA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 102, + "stack-additions": [ + { + "type": 2, + "uint": 1004 + } + ] + }, + { + "pc": 104, + "stack-pop-count": 1 + }, + { + "pc": 106, + "stack-additions": [ + { + "bytes": "Ar7OEQ==", + "type": 1 + } + ] + }, + { + "pc": 112, + "stack-pop-count": 1 + }, + { + "pc": 114, + "stack-pop-count": 1 + }, + { + "pc": 116, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 118, + "stack-pop-count": 1 + }, + { + "pc": 120, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 121, + "stack-pop-count": 1 + }, + { + "pc": 123, + "spawned-inners": [0], + "stack-additions": [ + { + "bytes": "d29ybGQ=", + "type": 1 + }, + { + "type": 2, + "uint": 1004 + } + ] + }, + { + "pc": 124, + "stack-additions": [ + { + "bytes": "FR98dQAMSGVsbG8sIHdvcmxk", + "type": 1 + } + ] + }, + { + "pc": 126, + "stack-additions": [ + { + "bytes": "FR98dQAMSGVsbG8sIHdvcmxk", + "type": 1 + }, + { + "bytes": "FR98dQAMSGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 127, + "stack-additions": [ + { + "bytes": "AAxIZWxsbywgd29ybGQ=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 130, + "stack-additions": [ + { + "bytes": "AAxIZWxsbywgd29ybGQ=", + "type": 1 + }, + { + "bytes": "FR98dQAMSGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 131, + "stack-additions": [ + { + "bytes": "FR98dQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 134, + "stack-additions": [ + { + "bytes": "FR98dQ==", + "type": 1 + } + ] + }, + { + "pc": 135, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 136, + "stack-pop-count": 1 + }, + { + "pc": 137, + "stack-additions": [ + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 140, + "stack-additions": [ + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 61, + "stack-additions": [ + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + }, + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 62, + "stack-additions": [ + { + "type": 2, + "uint": 12 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 63, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 64, + "stack-additions": [ + { + "bytes": "AAw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 67, + "stack-additions": [ + { + "bytes": "AAw=", + "type": 1 + }, + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 68, + "stack-additions": [ + { + "bytes": "AAxIZWxsbywgd29ybGQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 69, + "stack-additions": [ + { + "bytes": "FR98dQ==", + "type": 1 + } + ] + }, + { + "pc": 70, + "stack-additions": [ + { + "bytes": "FR98dQ==", + "type": 1 + }, + { + "bytes": "AAxIZWxsbywgd29ybGQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 71, + "stack-additions": [ + { + "bytes": "FR98dQAMSGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 72, + "stack-pop-count": 1 + }, + { + "pc": 73, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 74, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 15, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + } + ], + "inner-trace": [ + { + "approval-program-hash": "Vg0dtzIh0CIFZN/+hJG/L+6gSSPPyjuzE0wDqGt0zyU=", + "approval-program-trace": [ + { + "pc": 1 + }, + { + "pc": 5 + }, + { + "pc": 9 + }, + { + "pc": 12, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 14, + "stack-pop-count": 1 + }, + { + "pc": 17, + "stack-additions": [ + { + "bytes": "Ar7OEQ==", + "type": 1 + } + ] + }, + { + "pc": 23, + "stack-additions": [ + { + "bytes": "Ar7OEQ==", + "type": 1 + } + ] + }, + { + "pc": 26, + "stack-pop-count": 2 + }, + { + "pc": 32, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 34, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 35, + "stack-pop-count": 1 + }, + { + "pc": 36, + "stack-additions": [ + { + "type": 2, + "uint": 1004 + } + ] + }, + { + "pc": 38, + "stack-pop-count": 1 + }, + { + "pc": 39, + "stack-additions": [ + { + "bytes": "AAV3b3JsZA==", + "type": 1 + } + ] + }, + { + "pc": 42, + "stack-additions": [ + { + "bytes": "d29ybGQ=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 45 + }, + { + "pc": 80 + }, + { + "pc": 83, + "stack-additions": [ + { + "bytes": "SGVsbG8sIA==", + "type": 1 + } + ] + }, + { + "pc": 92, + "stack-additions": [ + { + "bytes": "d29ybGQ=", + "type": 1 + } + ] + }, + { + "pc": 94, + "stack-additions": [ + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 95, + "stack-additions": [ + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 48, + "stack-additions": [ + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + }, + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 49, + "stack-additions": [ + { + "type": 2, + "uint": 12 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 50, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 51, + "stack-additions": [ + { + "bytes": "AAw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 54, + "stack-additions": [ + { + "bytes": "AAw=", + "type": 1 + }, + { + "bytes": "SGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 55, + "stack-additions": [ + { + "bytes": "AAxIZWxsbywgd29ybGQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 56, + "stack-additions": [ + { + "bytes": "FR98dQ==", + "type": 1 + } + ] + }, + { + "pc": 62, + "stack-additions": [ + { + "bytes": "FR98dQ==", + "type": 1 + }, + { + "bytes": "AAxIZWxsbywgd29ybGQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 63, + "stack-additions": [ + { + "bytes": "FR98dQAMSGVsbG8sIHdvcmxk", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 64, + "stack-pop-count": 1 + }, + { + "pc": 65, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 66, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 8, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + } + ] + } + ], + "logic-sig-hash": "8Y7ddIVDDdijOZcTKzMOxqa3RpJOjUGswRdND/Hdddg=", + "logic-sig-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 3, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 5, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 7, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 8, + "stack-pop-count": 1 + }, + { + "pc": 9, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 11, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 13, + "stack-additions": [ + { + "type": 2, + "uint": 1002 + } + ] + }, + { + "pc": 16, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 17, + "stack-pop-count": 1 + }, + { + "pc": 18, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 20, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + } + ] + }, + "logic-sig-budget-consumed": 12, + "txn-result": { + "inner-txns": [ + { + "logs": ["FR98dQAMSGVsbG8sIHdvcmxk"], + "pool-error": "", + "txn": { + "txn": { + "apaa": ["Ar7OEQ==", "AAV3b3JsZA=="], + "apid": 1004, + "fv": 11, + "lv": 1011, + "snd": "O3VYQKJ45XILV2GVDO44LM2IGPUD2QYRXNFX5K4ZDC2B4BD4ZZXU5AQG24", + "type": "appl" + } + } + } + ], + "logs": ["FR98dQAMSGVsbG8sIHdvcmxk"], + "pool-error": "", + "txn": { + "lsig": { + "l": "CoEAOBCBBhJEgQA4GIHqBxJEgQFD", + "sig": "t5MRSxBBT7edeRJVzgJ4ySZ8QCZ6lNEDrVjzWdDbAPml5Ap/PJk6MiBw1l+N1OVR99H7p7sRJ9CfrO2zSleWDQ==" + }, + "txn": { + "apaa": ["WZMacA==", "AAV3b3JsZA==", "AQ=="], + "apfa": [1004], + "apid": 1002, + "fee": 472000, + "fv": 11, + "gen": "dockernet-v1", + "gh": "Rn0TWrsUZ7r8Yw31jeeDmWj4TXjViPQPtEnaHcmHD5E=", + "lv": 1011, + "snd": "HMURDOMBZB3H54WY3JVME3BAPWIK7EWTAQRPNGNMAY54VM3H5TVBRGLVVQ", + "type": "appl" + } + } + } + } + ] + } + ], + "version": 2 +} diff --git a/sampleWorkspace/puya_and_teal/sources.json b/sampleWorkspace/puya_and_teal/sources.json new file mode 100644 index 0000000..d4ffb08 --- /dev/null +++ b/sampleWorkspace/puya_and_teal/sources.json @@ -0,0 +1,16 @@ +{ + "txn-group-sources": [ + { + "sourcemap-location": "./first_app/approval.teal.tok.map", + "hash": "+M4WXURFSOFzatfICt2miBHDfm5qylmm279/3bZtKjI=" + }, + { + "sourcemap-location": "./second_app/contract_approval.puya.map", + "hash": "Vg0dtzIh0CIFZN/+hJG/L+6gSSPPyjuzE0wDqGt0zyU=" + }, + { + "sourcemap-location": "./delegated_lsig/lsig.puya.map", + "hash": "8Y7ddIVDDdijOZcTKzMOxqa3RpJOjUGswRdND/Hdddg=" + } + ] +} diff --git a/sampleWorkspace/puya_third_parties/.algokit/sources/opup/approval.teal.map b/sampleWorkspace/puya_third_parties/.algokit/sources/opup/approval.teal.map new file mode 100644 index 0000000..35a17c6 --- /dev/null +++ b/sampleWorkspace/puya_third_parties/.algokit/sources/opup/approval.teal.map @@ -0,0 +1,8 @@ +{ + "version": 3, + "sources": [ + "opup.teal" + ], + "names": [], + "mappings": ";AACA" + } diff --git a/sampleWorkspace/puya_third_parties/.algokit/sources/opup/opup.teal b/sampleWorkspace/puya_third_parties/.algokit/sources/opup/opup.teal new file mode 100644 index 0000000..e3ae8f2 --- /dev/null +++ b/sampleWorkspace/puya_third_parties/.algokit/sources/opup/opup.teal @@ -0,0 +1,2 @@ +#pragma version 6 +int 1 diff --git a/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/__init__.py b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/__init__.py new file mode 100644 index 0000000..89fd67d --- /dev/null +++ b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/__init__.py @@ -0,0 +1 @@ +from puya_bignumber.bignumber import * diff --git a/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/bignumber.py b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/bignumber.py new file mode 100644 index 0000000..5dfbfce --- /dev/null +++ b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/bignumber.py @@ -0,0 +1,427 @@ +from algopy import arc4, Bytes, subroutine, BigUInt, UInt64, urange +from algopy.op import substring, bzero, concat, extract, itob, btoi, getbit +from .common import ( + pad, + max_value, + enclosing_multiple, + pad_as_multiple, + decode_dynamic_bytes, +) +import typing + +__all__ = [ + "add", + "subtract", + "equal", + "multiply", + "divide", + "less_than", + "greater_than", + "barrett_reducer_factor", + "mod_barrett_reduce", + "modexp_barrett_reduce", + "modexp_barrett_reduce_assumption_validation", + "modexp_barrett_reduce_post_validation", +] + +BIGINT_BYTE_SIZE_INT: int = 64 +UINT256_BYTE_SIZE_INT: int = 32 +BASE_UINT256_INT: int = 2**256 +UInt256: typing.TypeAlias = arc4.BigUIntN[typing.Literal[256]] + + +@subroutine +def add(a: Bytes, b: Bytes) -> Bytes: + BIGINT_BYTE_SIZE: UInt64 = UInt64(BIGINT_BYTE_SIZE_INT) + length: UInt64 = enclosing_multiple(max_value(a.length, b.length), BIGINT_BYTE_SIZE) + a_digits: Bytes = pad(a, length) + b_digits: Bytes = pad(b, length) + + n: UInt64 = a_digits.length // BIGINT_BYTE_SIZE + result: Bytes = Bytes(b"") + carry: UInt64 = UInt64(0) + for i in reversed(urange(n)): + a_digit: BigUInt = BigUInt.from_bytes( + extract(a_digits, i * BIGINT_BYTE_SIZE, BIGINT_BYTE_SIZE) + ) + b_digit: BigUInt = BigUInt.from_bytes( + extract(b_digits, i * BIGINT_BYTE_SIZE, BIGINT_BYTE_SIZE) + ) + + sum: BigUInt = a_digit + b_digit + sum_bytes: Bytes = pad(sum.bytes, BIGINT_BYTE_SIZE + 1) + sum_carry = btoi(sum_bytes[0]) + + ab_carry: BigUInt = BigUInt.from_bytes(sum_bytes[1:]) + carry + ab_carry_bytes: Bytes = pad(ab_carry.bytes, BIGINT_BYTE_SIZE + 1) + ab_carry_carry = btoi(ab_carry_bytes[0]) + + result = concat(ab_carry_bytes[1:], result) + carry = ab_carry_carry + sum_carry + + if carry == 0: + return result + + carry_bytes: Bytes = itob(carry)[7] + return concat(carry_bytes, result) + + +@subroutine +def subtract(a: Bytes, b: Bytes) -> Bytes: + # Assume a_in >= b_in + # 0 - 0 case + if a.length == 0 or a == bzero(b.length): + return a + # a - 0 case + if b.length == 0 or b == bzero(b.length): + return a + BIGINT_BYTE_SIZE: UInt64 = UInt64(BIGINT_BYTE_SIZE_INT) + length: UInt64 = enclosing_multiple(max_value(a.length, b.length), BIGINT_BYTE_SIZE) + a_digits: Bytes = pad(a, length) + b_digits: Bytes = pad(b, length) + ones_complement: Bytes = ~b_digits + twos_complement: Bytes = add(ones_complement, itob(1)) + a_inv_b: Bytes = add(a_digits, twos_complement) + return a_inv_b[1:] + + +@subroutine +def equal(a: Bytes, b: Bytes) -> bool: + length: UInt64 = max_value(a.length, b.length) + padded_a: Bytes = pad(a, length) + padded_b: Bytes = pad(b, length) + return padded_a == padded_b + + +# Karatsuba algorithm by Anatoly Karatsuba +@subroutine +def multiply(x_in: Bytes, y_in: Bytes) -> Bytes: + BIGINT_BYTE_SIZE: UInt64 = UInt64(BIGINT_BYTE_SIZE_INT) + length: UInt64 = enclosing_multiple( + max_value(x_in.length, y_in.length), BIGINT_BYTE_SIZE + ) + x: Bytes = pad(x_in, length) + y: Bytes = pad(y_in, length) + + n: UInt64 = x.length + if n <= BIGINT_BYTE_SIZE: + x_as_bigint: BigUInt = BigUInt.from_bytes(x) + y_as_bigint: BigUInt = BigUInt.from_bytes(y) + xy: BigUInt = x_as_bigint * y_as_bigint + return xy.bytes + + first_half: UInt64 = n // 2 + second_half: UInt64 = n - first_half + + x_left: Bytes = x[:first_half] + x_right: Bytes = x[first_half:] + y_left: Bytes = y[:first_half] + y_right: Bytes = y[first_half:] + + p_1: Bytes = multiply(x_left, y_left) + p_2: Bytes = multiply(x_right, y_right) + p_3: Bytes = multiply(add(x_left, x_right), add(y_left, y_right)) + p_4: Bytes = subtract(subtract(p_3, p_1), p_2) + shifted_P1: Bytes = concat(p_1, bzero(2 * second_half)) + shifted_P4: Bytes = concat(p_4, bzero(second_half)) + return add(add(shifted_P1, shifted_P4), p_2) + + +@subroutine +def _bytes_to_uint256_digits(num: Bytes) -> arc4.DynamicArray[UInt256]: + UINT256_BYTE_SIZE: UInt64 = UInt64(UINT256_BYTE_SIZE_INT) + digits: arc4.DynamicArray[UInt256] = arc4.DynamicArray[UInt256]() + zero: UInt256 = UInt256.from_bytes(bzero(UINT256_BYTE_SIZE)) + digits.append(zero) + padded: Bytes = pad_as_multiple(num, UINT256_BYTE_SIZE) + num_digits: UInt64 = padded.length // UINT256_BYTE_SIZE + for i in urange(num_digits): + digit_bytes: Bytes = extract(padded, i * UINT256_BYTE_SIZE, UINT256_BYTE_SIZE) + digit: UInt256 = UInt256.from_bytes(digit_bytes) + digits.append(digit) + return digits + + +@subroutine +def _uint256_digits_to_bytes(digits: arc4.DynamicArray[UInt256]) -> Bytes: + return decode_dynamic_bytes(digits.bytes) + + +@subroutine +def biguint_to_digit(num: BigUInt) -> UInt256: + UINT256_BYTE_SIZE: UInt64 = UInt64(UINT256_BYTE_SIZE_INT) + if num.bytes.length == 0: + return UInt256.from_bytes(bzero(UINT256_BYTE_SIZE)) + + padded: Bytes = pad_as_multiple(num.bytes, UINT256_BYTE_SIZE) + exact_bytes: Bytes = substring( + padded, padded.length - UINT256_BYTE_SIZE, padded.length + ) + digit: UInt256 = UInt256.from_bytes(exact_bytes) + return digit + + +@subroutine +def _multiply_word( + digits: arc4.DynamicArray[UInt256], n: UInt64, d: BigUInt, base: BigUInt +) -> arc4.DynamicArray[UInt256]: + c: BigUInt = BigUInt(0) + for i in reversed(urange(1, n + 1)): + digit: BigUInt = BigUInt.from_bytes(digits[i].bytes) + p: BigUInt = d * digit + c + p_mod_base: BigUInt = p % base + normalized_digit: UInt256 = biguint_to_digit(p_mod_base) + digits[i] = normalized_digit + c = p // base + digits[0] = biguint_to_digit(c) + return digits + + +@subroutine +def _divide_word( + u_raw: arc4.DynamicArray[UInt256], v_digit: BigUInt, base: BigUInt +) -> Bytes: + r: BigUInt = BigUInt(0) + for i in urange(u_raw.length): + digit: BigUInt = BigUInt.from_bytes(u_raw[i].bytes) + p: BigUInt = digit + r * base + q_digit: BigUInt = p // v_digit + u_raw[i] = biguint_to_digit(q_digit) + r = p - q_digit * v_digit + q: Bytes = _uint256_digits_to_bytes(u_raw) + return q + + +@subroutine +def less_than(a: Bytes, b: Bytes) -> bool: + BIGINT_BYTE_SIZE: UInt64 = UInt64(BIGINT_BYTE_SIZE_INT) + length: UInt64 = enclosing_multiple(max_value(a.length, b.length), BIGINT_BYTE_SIZE) + a_digits: Bytes = pad(a, length) + b_digits: Bytes = pad(b, length) + + assert a_digits.length % BIGINT_BYTE_SIZE == 0, "a length must be multiple of width" + assert b_digits.length % BIGINT_BYTE_SIZE == 0, "b length must be multiple of width" + + n: UInt64 = a_digits.length // BIGINT_BYTE_SIZE + for i in urange(n): + a_digit: BigUInt = BigUInt.from_bytes( + extract(a_digits, i * BIGINT_BYTE_SIZE, BIGINT_BYTE_SIZE) + ) + b_digit: BigUInt = BigUInt.from_bytes( + extract(b_digits, i * BIGINT_BYTE_SIZE, BIGINT_BYTE_SIZE) + ) + if a_digit < b_digit: + return True + if a_digit > b_digit: + return False + return False + + +@subroutine +def greater_than(a: Bytes, b: Bytes) -> bool: + BIGINT_BYTE_SIZE: UInt64 = UInt64(BIGINT_BYTE_SIZE_INT) + length: UInt64 = enclosing_multiple(max_value(a.length, b.length), BIGINT_BYTE_SIZE) + a_digits: Bytes = pad(a, length) + b_digits: Bytes = pad(b, length) + + assert a_digits.length % BIGINT_BYTE_SIZE == 0, "a length must be multiple of width" + assert b_digits.length % BIGINT_BYTE_SIZE == 0, "b length must be multiple of width" + + n: UInt64 = a_digits.length // BIGINT_BYTE_SIZE + for i in urange(n): + a_digit: BigUInt = BigUInt.from_bytes( + extract(a_digits, i * BIGINT_BYTE_SIZE, BIGINT_BYTE_SIZE) + ) + b_digit: BigUInt = BigUInt.from_bytes( + extract(b_digits, i * BIGINT_BYTE_SIZE, BIGINT_BYTE_SIZE) + ) + if a_digit > b_digit: + return True + if a_digit < b_digit: + return False + return False + + +# Algorithm D by Robert Knuth +@subroutine +def divide(u_num: Bytes, v_num: Bytes) -> Bytes: + assert u_num.length >= 1, "u_num must have at least one byte" + assert v_num.length >= 1, "v_num must have at least one byte" + assert not equal(v_num, itob(0)), "Non-zero divisor" + + BASE_UINT256: BigUInt = BigUInt(BASE_UINT256_INT) + + if less_than(u_num, v_num): + # The divisor is larger than the dividend + return itob(0) + if equal(u_num, itob(0)): + return itob(0) + + u_raw: arc4.DynamicArray[UInt256] = _bytes_to_uint256_digits(u_num) + v_raw: arc4.DynamicArray[UInt256] = _bytes_to_uint256_digits(v_num) + + n: UInt64 = v_raw.length - 1 + + assert n >= 1, "At least 1 digit divisor" + + m: UInt64 = u_raw.length - v_raw.length + q: arc4.DynamicArray[UInt256] = arc4.DynamicArray[UInt256]() + + v_raw_1: BigUInt = BigUInt.from_bytes(v_raw[1].bytes) + if n == 1: + return _divide_word(u_raw, v_raw_1, BASE_UINT256) + + # Step D2: Normalize + norm: BigUInt = BASE_UINT256 // (v_raw_1 + 1) + u: arc4.DynamicArray[UInt256] = _multiply_word(u_raw, m + n, norm, BASE_UINT256) + v: arc4.DynamicArray[UInt256] = _multiply_word(v_raw, n, norm, BASE_UINT256) + v_1: BigUInt = BigUInt.from_bytes(v[1].bytes) + # Step D3: Loop on j + v_2: BigUInt = BigUInt.from_bytes(v[2].bytes) + + for j in urange(m + 1): + # Step D3: Calculate estimated q + u_j: BigUInt = BigUInt.from_bytes(u[j].bytes) + u_j1: BigUInt = BigUInt.from_bytes(u[j + 1].bytes) + + qpart: BigUInt = BASE_UINT256 * u_j + u_j1 + qhat: BigUInt = qpart // v_1 + if u_j >= v_1: + qhat = BASE_UINT256 - 1 + + # Correct quotient estimate if too large + u_j2: BigUInt = BigUInt.from_bytes(u[j + 2].bytes) + qhat_test: BigUInt = qhat * v_1 + ((qhat * v_2) // BASE_UINT256) + qhat_cond: BigUInt = qpart + (u_j2 // BASE_UINT256) + while qhat_test > qhat_cond: + qhat -= 1 + qhat_test = qhat * v_1 + ((qhat * v_2) // BASE_UINT256) + + # Step D4: Multiply and subtract + c: BigUInt = BigUInt(0) + c_is_neg: bool = False + for i in reversed(urange(1, n + 1)): + u_ji: BigUInt = BigUInt.from_bytes(u[j + i].bytes) + v_i: BigUInt = BigUInt.from_bytes(v[i].bytes) + p: BigUInt = BigUInt(0) + p_mod_base: BigUInt = BigUInt(0) + floor_div_adjuster: UInt64 = UInt64(0) + if c_is_neg: + # Handle case when c is negative + if u_ji >= qhat * v_i + c: + # p is positive + p = u_ji - (qhat * v_i + c) + p_mod_base = p % BASE_UINT256 + u[j + i] = biguint_to_digit(p_mod_base) + c = p // BASE_UINT256 + c_is_neg = False + else: + # p is negative + p = (qhat * v_i + c) - u_ji + p_mod_base = (BASE_UINT256 - (p % BASE_UINT256)) % BASE_UINT256 + u[j + i] = biguint_to_digit(p_mod_base) + floor_div_adjuster = UInt64(1) if p_mod_base != 0 else UInt64(0) + c = (p // BASE_UINT256) + floor_div_adjuster + c_is_neg = True + else: + # Handle case when c is positive + if u_ji + c >= qhat * v_i: + # p is positive + p = (u_ji + c) - qhat * v_i + p_mod_base = p % BASE_UINT256 + u[j + i] = biguint_to_digit(p_mod_base) + c = p // BASE_UINT256 + c_is_neg = False + else: + # p is negative + p = (qhat * v_i) - (u_ji + c) + p_mod_base = (BASE_UINT256 - (p % BASE_UINT256)) % BASE_UINT256 + u[j + i] = biguint_to_digit(p_mod_base) + floor_div_adjuster = UInt64(1) if p_mod_base != 0 else UInt64(0) + c = (p // BASE_UINT256) + floor_div_adjuster + c_is_neg = True + + # Step D5: Test remainder + if c > u_j and c_is_neg: + # Step D6: Add back + qhat -= 1 + + qhat_digit: UInt256 = biguint_to_digit(qhat) + q.append(qhat_digit) + + return _uint256_digits_to_bytes(q) + + +@subroutine +def _calc_mod_barrett_reduce(a: Bytes, mod: Bytes, precomputed_factor: Bytes) -> Bytes: + shift: UInt64 = mod.length * 2 + a_factor: Bytes = multiply(a, precomputed_factor) + q: Bytes = extract(a_factor, 0, a_factor.length - shift) + r: Bytes = subtract(a, multiply(q, mod)) + if not less_than(r, mod): + r = subtract(r, mod) + return extract(r, r.length - mod.length, mod.length) + + +@subroutine +def barrett_reducer_factor(mod: Bytes) -> Bytes: + assert not equal(mod, itob(0)), "Must have mod != 0" + assert not equal( + mod & subtract(mod, itob(1)), itob(0) + ), "mod cannot be a power of 2" + + shift: UInt64 = mod.length * 2 + one_byte: Bytes = extract(itob(1), 7, 1) + two_k: Bytes = concat(one_byte, bzero(shift)) + return divide(two_k, mod) + + +# Barrett Reduction algorithm by P.D. Barrett +@subroutine +def mod_barrett_reduce(a: Bytes, mod: Bytes, precomputed_factor: Bytes) -> Bytes: + # Assume: 0 <= a < mod ** 2, mod > 0, and mod is not a power of two + mod_squared: Bytes = multiply(mod, mod) + assert less_than(a, mod_squared), "Must have 0 <= a < mod ** 2" + assert not equal(mod, itob(0)), "Must have mod != 0" + assert not equal( + mod & subtract(mod, itob(1)), itob(0) + ), "mod cannot be a power of 2" + + return _calc_mod_barrett_reduce(a, mod, precomputed_factor) + + +# Modular Exponentiation by Squaring +@subroutine +def modexp_barrett_reduce( + base: Bytes, exp: Bytes, mod: Bytes, precomputed_factor: Bytes +) -> Bytes: + modexp_barrett_reduce_assumption_validation(base, mod) + return modexp_barrett_reduce_post_validation(base, exp, mod, precomputed_factor) + + +@subroutine +def modexp_barrett_reduce_assumption_validation(base: Bytes, mod: Bytes) -> None: + # Validate Barrett Reduction assumptions. Validating here validates all successive mod assumptions. + mod_squared: Bytes = multiply(mod, mod) + assert less_than(base, mod_squared), "Must have 0 <= a < mod ** 2" + assert not equal(mod, itob(0)), "Must have mod != 0" + assert not equal( + mod & subtract(mod, itob(1)), itob(0) + ), "mod cannot be a power of 2" + + +# Modular Exponentiation by Squaring +@subroutine +def modexp_barrett_reduce_post_validation( + base: Bytes, exp: Bytes, mod: Bytes, precomputed_factor: Bytes +) -> Bytes: + result: Bytes = itob(1) + base = _calc_mod_barrett_reduce(base, mod, precomputed_factor) + for bit_i in reversed(urange(exp.length * 8)): + bit: UInt64 = getbit(exp, bit_i) + if bit == 1: + result = _calc_mod_barrett_reduce( + multiply(result, base), mod, precomputed_factor + ) + base = _calc_mod_barrett_reduce(multiply(base, base), mod, precomputed_factor) + return result diff --git a/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/common.py b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/common.py new file mode 100644 index 0000000..47bd353 --- /dev/null +++ b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/common.py @@ -0,0 +1,42 @@ +from algopy import Bytes, subroutine, UInt64 +from algopy.op import substring, bzero, concat + + +@subroutine +def decode_dynamic_bytes(value: Bytes) -> Bytes: + return substring(value, 2, value.length) + + +@subroutine +def pad(value: Bytes, width: UInt64) -> Bytes: + assert value.length <= width, "Width must be wider than value" + pad_length: UInt64 = width - value.length + padding: Bytes = bzero(pad_length) + padded: Bytes = concat(padding, value) + return padded + + +@subroutine +def enclosing_multiple(num: UInt64, multiple: UInt64) -> UInt64: + missing_length: UInt64 = multiple - num % multiple + missing_length_mod: UInt64 = missing_length % multiple + return num + missing_length_mod + + +@subroutine +def pad_as_multiple(value: Bytes, multiple: UInt64) -> Bytes: + return pad(value, enclosing_multiple(value.length, multiple)) + + +@subroutine +def min_value(a: UInt64, b: UInt64) -> UInt64: + if a <= b: + return a + return b + + +@subroutine +def max_value(a: UInt64, b: UInt64) -> UInt64: + if a >= b: + return a + return b diff --git a/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/py.typed b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_bignumber/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/__init__.py b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/__init__.py new file mode 100644 index 0000000..8f0a595 --- /dev/null +++ b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/__init__.py @@ -0,0 +1 @@ +from puya_rsa.rsa import * diff --git a/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/py.typed b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/rsa.py b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/rsa.py new file mode 100644 index 0000000..a4be5da --- /dev/null +++ b/sampleWorkspace/puya_third_parties/.fake-venv/lib/python3.12/site-packages/puya_rsa/rsa.py @@ -0,0 +1,70 @@ +from algopy import Bytes, subroutine, UInt64 +from algopy.op import bzero + +from puya_bignumber import ( + less_than, + modexp_barrett_reduce, + equal, + modexp_barrett_reduce_post_validation, +) + +__all__ = [ + "pkcs1_v15_verify", + "pkcs1_v15_verify_without_barrett_validation", +] + + +# RSASSA-PKCS1-V1_5-VERIFY ((n, e), M, S) implementation. See https://datatracker.ietf.org/doc/html/rfc8017#section-8.2.2. +@subroutine +def pkcs1_v15_verify( + msg_digest_info: Bytes, + s: Bytes, + n: Bytes, + e: Bytes, + barrett_reduction_factor: Bytes, +) -> None: + k: UInt64 = n.length + assert s.length == k, "signature must have the same length as the modulus" + + # RSAVP1 + assert less_than(s, n), "signature representative out of range" + m: Bytes = modexp_barrett_reduce(s, e, n, barrett_reduction_factor) + + # I2OSP + assert m.length == k, "m too large" + em: Bytes = m + + # EMSA_PKCS1_v15 + assert k >= msg_digest_info.length + 11, "intended encoded message length too short" + PS: Bytes = ~bzero(k - msg_digest_info.length - 3) + em_prime: Bytes = b"\x00\x01" + PS + b"\x00" + msg_digest_info + + assert equal(em, em_prime), "em must match em_prime for signature to be valid" + + +# RSASSA-PKCS1-V1_5-VERIFY ((n, e), M, S) without Barrett Reduction Assumption Validation +@subroutine +def pkcs1_v15_verify_without_barrett_validation( + msg_digest_info: Bytes, + s: Bytes, + n: Bytes, + e: Bytes, + barrett_reduction_factor: Bytes, +) -> None: + k: UInt64 = n.length + assert s.length == k, "signature must have the same length as the modulus" + + # RSAVP1 + assert less_than(s, n), "signature representative out of range" + m: Bytes = modexp_barrett_reduce_post_validation(s, e, n, barrett_reduction_factor) + + # I2OSP + assert m.length == k, "m too large" + em: Bytes = m + + # EMSA_PKCS1_v15 + assert k >= msg_digest_info.length + 11, "intended encoded message length too short" + PS: Bytes = ~bzero(k - msg_digest_info.length - 3) + em_prime: Bytes = b"\x00\x01" + PS + b"\x00" + msg_digest_info + + assert equal(em, em_prime), "em must match em_prime for signature to be valid" diff --git a/sampleWorkspace/puya_third_parties/RSATester.approval.puya.map b/sampleWorkspace/puya_third_parties/RSATester.approval.puya.map new file mode 100644 index 0000000..23d0b2e --- /dev/null +++ b/sampleWorkspace/puya_third_parties/RSATester.approval.puya.map @@ -0,0 +1,8718 @@ +{ + "version": 3, + "sources": [ + ".fake-venv/lib/python3.12/site-packages/puya_bignumber/bignumber.py", + ".fake-venv/lib/python3.12/site-packages/puya_bignumber/common.py", + ".fake-venv/lib/python3.12/site-packages/puya_rsa/rsa.py", + "contract.py" + ], + "mappings": ";;;;;;;;;;;;;;;;;;AGIA;;;AAAA;;AAAA;;;AAAA;;;;;;AAAA;;;AAAA;;;;AAAA;AAAA;AACK;;AAAA;AAAA;AAAA;;AAAA;AADL;;;AAAA;;;AAAA;;;AAAA;;;AAAA;;;AAAA;;;AAAA;;;AAAA;;;AAAA;;;AAAA;;;AACK;;;AAAA;AAAA;AADL;;AAAA;;;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;;;AASsB;;;;AAAkB;AAAhC;;;AACA;;AAAA;;AAAA;;AAAA;;AAAA;;AAAA;;;;ADER;;;AAQI;;AAAY;AACL;;AAAA;AAAA;;AAAA;AAAP;AAGO;;AAAA;;AAAA;;;AAAP;AACA;;AAAA;;AAAA;;AAAA;;AAAW;;;AAGJ;AAAA;AAAA;;AAAA;AAAP;AAIY;;AAAA;AAAA;AAAyB;;AAAzB;AAAL;;AAAA;AAAP;AACmB;;AAAA;AAAA;AAA6B;;AAA7B;AAAN;AAAD;AACM;;;;AAAA;AAAA;AAAmB;;;AAAnB;AAAlB;;AAAkB;AAEX;;;AAAP;;AFyJJ;;;;;AAGkD;;AAAA;AAAU;;AAAA;AAApB;;;AADT;AACV;;;AACjB;;AAAA;;AAAkB;;;AAAlB;AAAA;;AACA;;AAAA;AAAkB;;;AAAlB;AAAA;;AAEO;AAAA;AALoB;AAKpB;AAAA;AAAP;AACO;AAAA;AANoB;AAMpB;AAAA;AAAP;AAN2B;AAQf;AACH;AAAA;;AAAA;;AAAA;AAAb;;;AAE8B;;AAXC;AAWD;AADH;;AAAA;;AAVI;AAWnB;AADe;AAAA;;AAAA;;AAGA;;AAAA;AAbI;AAcnB;AADe;AAAA;;AAGhB;AAAX;;;AACmB;AAAP;;AAAA;AACD;;AAAA;;AAAA;AAAX;;;AACmB;AAAP;;AAAA;AAVC;;AAAA;AAAA;AAAA;;;;;AAWF;AAAP;;AAAA;ACnLJ;;;AAEO;;AAAA;;AAAA;AAAP;;;AACQ;;AAAA;AACJ;;AAAA;AAvBJ;;;AAEwC;;AAAA;;AAAA;AAApC;;AAAA;AAAyB;AACzB;;AAA6B;AACtB;;AAAA;AAAP;AAbJ;;;AAEW;;AAAA;AAAA;AAAA;;AAAA;AAAP;AACA;;AAAA;AAAqB;AACJ;AACjB;;AAAgB;AAChB;AD0XJ;;;AAII;;AAAA;;AAAA;;;AACO;;AAAA;;AAAA;;AAAA;;AAAA;;;AAAP;AAGJ;;;AAGI;;AAAA;AAAqB;;;AACd;;AAAA;AAAA;;;AAAP;AAC2B;AAAL;AAAX;;AAAA;;AAAA;;;AAAJ;AAAP;AAE6B;AAAL;AAAd;;AAAA;AAAA;;;AAAN;;AAAA;AADO;AAAA;;;AAAJ;AAAP;;AAvTJ;;;AAIkB;;AAAA;AAAa;;AAAA;AAAvB;;;AAFuB;AACV;;;AAGjB;;AAAA;;AAAW;;;AAAX;AAAA;;AACA;;AAAA;AAAW;;;AAAX;AAEY;AAAZ;AAAA;;AAP2B;AAQxB;AAAP;;;AAGQ;;AAAc;AACd;;AAAA;AAEJ;;AAAA;AAA0B;AAAL;AACrB;AAAsB;AAEN;;AAAA;;AAAA;AAAA;;AAAA;;AAAA;;AAAA;AAAhB;;AAAA;AAAA;;AAAgB;AAAhB;;AAAgB;AAChB;;AAAA;;AAAiB;AACD;;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;;AAAA;;AAAA;;AAAA;AAAhB;;AAAgB;AAAhB;;AAAgB;AAChB;;AAAA;;AAAA;;AAAiB;AAEjB;;AAAA;;AAAa;;;AACb;;AAAA;;AAAa;;;AACS;;AAAA;;AAAA;;;AAAsB;;AAAA;;AAAA;;;AAA/B;;;AACS;;AAAA;;;AAAtB;;AAAa;;;AACyB;AAAA;;AAAA;AAAN;AAAhC;;AAAA;AAAoB;AACY;;AAAA;AAAhC;;AAAA;AAAoB;AACT;;;AAAJ;AAAA;;;AAAP;;AAAA;AA9FJ;;;;AAGkD;;AAAA;AAAU;;AAAA;AAApB;;;AADT;AACV;;;AACjB;;AAAA;;AAAkB;;;AAAlB;AAAA;;AACA;;AAAA;AAAkB;;;AAAlB;AAEY;AALe;AAKf;AAAZ;AACA;AAAgB;AAAhB;;AACgB;AAAhB;AAAA;;AAAA;;;;;AACJ;;;AAAsB;;AAAA;AAAA;AAAA;AAAA;AAAA;;AAEQ;;AAAA;AAVC;AAUD;AADH;;AAAA;;AATI;AAUnB;AAEe;;AAAA;;AAZI;AAanB;AAGW;AACmB;;AAAf;;;AACF;AAAA;;;AAAL;AAE2B;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAnB;;AAAA;AAAA;;AAAmB;AAAnB;;AAAA;AAAA;AACwB;;AAApB;;;AACF;AAAA;;;AAAL;AAED;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;;AAAA;AAAA;;AAAA;AAAhB;;AAAS;AAAT;AAAA;;AACA;AAAA;;AAAQ;AAAR;AAAA;;;;;;AAjBR;;;AAAsB;;AAAA;AAAA;AAAA;;;;;;;;;;;;;;AAmBtB;;;AACQ;;AAAA;;AAAA;AAEiB;;AAAA;AAAA;;;AACd;;AAAA;AAAP;;AAAA;AAGJ;;;;;AAIO;;AAAA;AAAA;AAAA;;;AAA4B;;AAAA;AAAA;AAAA;;AAAN;AAAA;AAAA;;AAAL;;AAAA;AAAjB;;;AACC;;AAAA;;AAAA;AAED;;AAAA;;;AAAiB;;AAAA;;AAAA;AAAjB;;;AACC;;AAAA;;AAAA;AAEgC;;AAAA;;AAAA;;;AADT;AACV;;;AACjB;;AAAA;;AAAkB;;;AAClB;;AAAA;;AAAkB;;;AACO;AAC0B;AAAL;AAArB;;;AACR;;;AACV;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;AAAA;AAAP;;AAAA;AAGJ;;;AAE+B;;AAAA;AAAU;;AAAA;AAApB;;;AACjB;;AAAA;;AAAkB;;;AAClB;;AAAA;;AAAkB;;;AACX;AAAP;AAiUJ;;;;AAIyB;AAAL;AAAhB;AACA;;AAAA;;AAAA;;AAAO;;;AAAP;;AAC6B;;AAAA;AAAa;;AAAb;AAAA;AAAA;;;AAAjC;;;AAA0B;;AAAA;AAAA;AAAA;AAAA;AAAA;;AAClB;;AAAA;;AAAc;AACJ;AAAP;;;;;AAAX;;;AAEgB;;AAAA;;AAAA;;;AADJ;;AAAA;;AAAS;;;;;;;;;;AAGmB;;AAAA;AAAA;;;AAAhC;;AAAA;;AAAO;;;AAAP;;;;AANR;;AAAA;;;AAA0B;;AAAA;AAAA;AAAA;;;;;;;AAOtB;;AAAA;AAxEJ;;;AAEoB;;AAAA;AAAA;AAAa;AAAb;AAChB;;AAAA;;AAAkB;;;AACc;AAAA;AAAA;;AAAA;AAAH;AAA7B;AAAW;AACY;;AAAA;;;AAAvB;;AAAA;AAAW;;;AAAX;;AACO;;AAAA;;;AAAJ;;;AACC;;AAAA;;AAAI;;;;;;;AACU;AAAA;AAAA;;AAAA;AAAA;;AAAA;AAAX;AAAA;AAAP;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;", + "op_pc_offset": 0, + "pc_events": { + "1": { + "subroutine": "smart_contracts.rsa_contract.contract.RSATester.approval_program", + "params": {}, + "block": "smart_contracts.rsa_contract.contract.RSATester.approval_program", + "stack_in": [], + "op": "intcblock 1 64 0 2" + }, + "7": { + "op": "bytecblock 0x 0x068101" + }, + "14": { + "callsub": "smart_contracts.rsa_contract.contract.RSATester.__puya_arc4_router__", + "op": "callsub __puya_arc4_router__", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "17": { + "op": "return", + "stack_out": [] + }, + "18": { + "subroutine": "smart_contracts.rsa_contract.contract.RSATester.__puya_arc4_router__", + "params": {}, + "block": "__puya_arc4_router__", + "stack_in": [], + "op": "proto 0 1" + }, + "21": { + "op": "txn NumAppArgs", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "23": { + "op": "bz __puya_arc4_router___bare_routing@5", + "stack_out": [] + }, + "26": { + "op": "pushbytes 0x06456b57 // method \"pkcs1_v15_verify(byte[],byte[],byte[],byte[],byte[])void\"" + }, + "32": { + "op": "txna ApplicationArgs 0", + "defined_out": [ + "Method(pkcs1_v15_verify(byte[],byte[],byte[],byte[],byte[])void)", + "tmp%2#0" + ], + "stack_out": [ + "Method(pkcs1_v15_verify(byte[],byte[],byte[],byte[],byte[])void)", + "tmp%2#0" + ] + }, + "35": { + "op": "match __puya_arc4_router___pkcs1_v15_verify_route@2", + "stack_out": [] + }, + "39": { + "op": "intc_2 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "40": { + "retsub": true, + "op": "retsub" + }, + "41": { + "block": "__puya_arc4_router___pkcs1_v15_verify_route@2", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%3#0" + ], + "stack_out": [ + "tmp%3#0" + ] + }, + "43": { + "op": "!", + "defined_out": [ + "tmp%4#0" + ], + "stack_out": [ + "tmp%4#0" + ] + }, + "44": { + "op": "assert // OnCompletion is NoOp", + "stack_out": [] + }, + "45": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%5#0" + ], + "stack_out": [ + "tmp%5#0" + ] + }, + "47": { + "op": "assert // is not creating", + "stack_out": [] + }, + "48": { + "op": "txna ApplicationArgs 1", + "defined_out": [ + "tmp%7#0" + ], + "stack_out": [ + "tmp%7#0" + ] + }, + "51": { + "op": "extract 2 0", + "defined_out": [ + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0" + ] + }, + "54": { + "op": "txna ApplicationArgs 2", + "defined_out": [ + "tmp%8#0", + "tmp%9#0" + ], + "stack_out": [ + "tmp%8#0", + "tmp%9#0" + ] + }, + "57": { + "op": "extract 2 0", + "defined_out": [ + "tmp%10#0", + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0", + "tmp%10#0" + ] + }, + "60": { + "op": "txna ApplicationArgs 3", + "defined_out": [ + "tmp%10#0", + "tmp%11#0", + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0", + "tmp%10#0", + "tmp%11#0" + ] + }, + "63": { + "op": "extract 2 0", + "defined_out": [ + "tmp%10#0", + "tmp%12#0", + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0", + "tmp%10#0", + "tmp%12#0" + ] + }, + "66": { + "op": "txna ApplicationArgs 4", + "defined_out": [ + "tmp%10#0", + "tmp%12#0", + "tmp%13#0", + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0", + "tmp%10#0", + "tmp%12#0", + "tmp%13#0" + ] + }, + "69": { + "op": "extract 2 0", + "defined_out": [ + "tmp%10#0", + "tmp%12#0", + "tmp%14#0", + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0", + "tmp%10#0", + "tmp%12#0", + "tmp%14#0" + ] + }, + "72": { + "op": "txna ApplicationArgs 5", + "defined_out": [ + "tmp%10#0", + "tmp%12#0", + "tmp%14#0", + "tmp%15#0", + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0", + "tmp%10#0", + "tmp%12#0", + "tmp%14#0", + "tmp%15#0" + ] + }, + "75": { + "op": "extract 2 0", + "defined_out": [ + "tmp%10#0", + "tmp%12#0", + "tmp%14#0", + "tmp%16#0", + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0", + "tmp%10#0", + "tmp%12#0", + "tmp%14#0", + "tmp%16#0" + ] + }, + "78": { + "callsub": "smart_contracts.rsa_contract.contract.RSATester.pkcs1_v15_verify", + "op": "callsub pkcs1_v15_verify", + "stack_out": [] + }, + "81": { + "op": "intc_0 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "82": { + "retsub": true, + "op": "retsub" + }, + "83": { + "block": "__puya_arc4_router___bare_routing@5", + "stack_in": [], + "op": "txn OnCompletion", + "defined_out": [ + "tmp%17#0" + ], + "stack_out": [ + "tmp%17#0" + ] + }, + "85": { + "op": "bnz __puya_arc4_router___after_if_else@9", + "stack_out": [] + }, + "88": { + "op": "txn ApplicationID", + "defined_out": [ + "tmp%18#0" + ], + "stack_out": [ + "tmp%18#0" + ] + }, + "90": { + "op": "!", + "defined_out": [ + "tmp%19#0" + ], + "stack_out": [ + "tmp%19#0" + ] + }, + "91": { + "op": "assert // is creating", + "stack_out": [] + }, + "92": { + "op": "intc_0 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "1" + ] + }, + "93": { + "retsub": true, + "op": "retsub" + }, + "94": { + "block": "__puya_arc4_router___after_if_else@9", + "stack_in": [], + "op": "intc_2 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "95": { + "retsub": true, + "op": "retsub" + }, + "96": { + "subroutine": "smart_contracts.rsa_contract.contract.RSATester.pkcs1_v15_verify", + "params": { + "msg_digest_info#0": "bytes", + "s#0": "bytes", + "n#0": "bytes", + "e#0": "bytes", + "barrett_reduction_factor#0": "bytes" + }, + "block": "pkcs1_v15_verify", + "stack_in": [], + "op": "proto 5 0" + }, + "99": { + "op": "pushint 20000 // 20000", + "defined_out": [ + "20000" + ], + "stack_out": [ + "20000" + ] + }, + "103": { + "op": "intc_2 // 0", + "defined_out": [ + "0", + "20000" + ], + "stack_out": [ + "20000", + "0" + ] + }, + "104": { + "callsub": "_puya_lib.util.ensure_budget", + "op": "callsub ensure_budget", + "stack_out": [] + }, + "107": { + "op": "frame_dig -5", + "defined_out": [ + "msg_digest_info#0 (copy)" + ], + "stack_out": [ + "msg_digest_info#0 (copy)" + ] + }, + "109": { + "op": "frame_dig -4", + "defined_out": [ + "msg_digest_info#0 (copy)", + "s#0 (copy)" + ], + "stack_out": [ + "msg_digest_info#0 (copy)", + "s#0 (copy)" + ] + }, + "111": { + "op": "frame_dig -3", + "defined_out": [ + "msg_digest_info#0 (copy)", + "n#0 (copy)", + "s#0 (copy)" + ], + "stack_out": [ + "msg_digest_info#0 (copy)", + "s#0 (copy)", + "n#0 (copy)" + ] + }, + "113": { + "op": "frame_dig -2", + "defined_out": [ + "e#0 (copy)", + "msg_digest_info#0 (copy)", + "n#0 (copy)", + "s#0 (copy)" + ], + "stack_out": [ + "msg_digest_info#0 (copy)", + "s#0 (copy)", + "n#0 (copy)", + "e#0 (copy)" + ] + }, + "115": { + "op": "frame_dig -1", + "defined_out": [ + "barrett_reduction_factor#0 (copy)", + "e#0 (copy)", + "msg_digest_info#0 (copy)", + "n#0 (copy)", + "s#0 (copy)" + ], + "stack_out": [ + "msg_digest_info#0 (copy)", + "s#0 (copy)", + "n#0 (copy)", + "e#0 (copy)", + "barrett_reduction_factor#0 (copy)" + ] + }, + "117": { + "callsub": "puya_rsa.rsa.pkcs1_v15_verify", + "op": "callsub puya_rsa.rsa.pkcs1_v15_verify", + "stack_out": [] + }, + "120": { + "retsub": true, + "op": "retsub" + }, + "121": { + "subroutine": "puya_rsa.rsa.pkcs1_v15_verify", + "params": { + "msg_digest_info#0": "bytes", + "s#0": "bytes", + "n#0": "bytes", + "e#0": "bytes", + "barrett_reduction_factor#0": "bytes" + }, + "block": "puya_rsa.rsa.pkcs1_v15_verify", + "stack_in": [], + "op": "proto 5 0" + }, + "124": { + "op": "frame_dig -3", + "defined_out": [ + "n#0 (copy)" + ], + "stack_out": [ + "n#0 (copy)" + ] + }, + "126": { + "op": "len", + "defined_out": [ + "k#0" + ], + "stack_out": [ + "k#0" + ] + }, + "127": { + "op": "frame_dig -4", + "defined_out": [ + "k#0", + "s#0 (copy)" + ], + "stack_out": [ + "k#0", + "s#0 (copy)" + ] + }, + "129": { + "op": "len", + "defined_out": [ + "k#0", + "tmp%0#0" + ], + "stack_out": [ + "k#0", + "tmp%0#0" + ] + }, + "130": { + "op": "dig 1", + "defined_out": [ + "k#0", + "k#0 (copy)", + "tmp%0#0" + ], + "stack_out": [ + "k#0", + "tmp%0#0", + "k#0 (copy)" + ] + }, + "132": { + "op": "==", + "defined_out": [ + "k#0", + "tmp%1#0" + ], + "stack_out": [ + "k#0", + "tmp%1#0" + ] + }, + "133": { + "op": "assert // signature must have the same length as the modulus", + "stack_out": [ + "k#0" + ] + }, + "134": { + "op": "frame_dig -4", + "stack_out": [ + "k#0", + "s#0 (copy)" + ] + }, + "136": { + "op": "frame_dig -3", + "stack_out": [ + "k#0", + "s#0 (copy)", + "n#0 (copy)" + ] + }, + "138": { + "callsub": "puya_bignumber.bignumber.less_than", + "op": "callsub less_than", + "defined_out": [ + "k#0", + "tmp%2#0" + ], + "stack_out": [ + "k#0", + "tmp%2#0" + ] + }, + "141": { + "op": "assert // signature representative out of range", + "stack_out": [ + "k#0" + ] + }, + "142": { + "op": "frame_dig -4", + "stack_out": [ + "k#0", + "s#0 (copy)" + ] + }, + "144": { + "op": "frame_dig -2", + "defined_out": [ + "e#0 (copy)", + "k#0", + "s#0 (copy)" + ], + "stack_out": [ + "k#0", + "s#0 (copy)", + "e#0 (copy)" + ] + }, + "146": { + "op": "frame_dig -3", + "stack_out": [ + "k#0", + "s#0 (copy)", + "e#0 (copy)", + "n#0 (copy)" + ] + }, + "148": { + "op": "frame_dig -1", + "defined_out": [ + "barrett_reduction_factor#0 (copy)", + "e#0 (copy)", + "k#0", + "n#0 (copy)", + "s#0 (copy)" + ], + "stack_out": [ + "k#0", + "s#0 (copy)", + "e#0 (copy)", + "n#0 (copy)", + "barrett_reduction_factor#0 (copy)" + ] + }, + "150": { + "callsub": "puya_bignumber.bignumber.modexp_barrett_reduce", + "op": "callsub modexp_barrett_reduce", + "defined_out": [ + "k#0", + "m#0" + ], + "stack_out": [ + "k#0", + "m#0" + ] + }, + "153": { + "op": "dup", + "defined_out": [ + "k#0", + "m#0", + "m#0 (copy)" + ], + "stack_out": [ + "k#0", + "m#0", + "m#0 (copy)" + ] + }, + "154": { + "op": "len", + "defined_out": [ + "k#0", + "m#0", + "tmp%3#0" + ], + "stack_out": [ + "k#0", + "m#0", + "tmp%3#0" + ] + }, + "155": { + "op": "dig 2", + "stack_out": [ + "k#0", + "m#0", + "tmp%3#0", + "k#0 (copy)" + ] + }, + "157": { + "op": "==", + "defined_out": [ + "k#0", + "m#0", + "tmp%4#0" + ], + "stack_out": [ + "k#0", + "m#0", + "tmp%4#0" + ] + }, + "158": { + "op": "assert // m too large", + "stack_out": [ + "k#0", + "m#0" + ] + }, + "159": { + "op": "frame_dig -5", + "defined_out": [ + "k#0", + "m#0", + "msg_digest_info#0 (copy)" + ], + "stack_out": [ + "k#0", + "m#0", + "msg_digest_info#0 (copy)" + ] + }, + "161": { + "op": "len", + "defined_out": [ + "k#0", + "m#0", + "tmp%5#0" + ], + "stack_out": [ + "k#0", + "m#0", + "tmp%5#0" + ] + }, + "162": { + "op": "dup", + "defined_out": [ + "k#0", + "m#0", + "tmp%5#0", + "tmp%5#0 (copy)" + ], + "stack_out": [ + "k#0", + "m#0", + "tmp%5#0", + "tmp%5#0 (copy)" + ] + }, + "163": { + "op": "pushint 11 // 11", + "defined_out": [ + "11", + "k#0", + "m#0", + "tmp%5#0", + "tmp%5#0 (copy)" + ], + "stack_out": [ + "k#0", + "m#0", + "tmp%5#0", + "tmp%5#0 (copy)", + "11" + ] + }, + "165": { + "op": "+", + "defined_out": [ + "k#0", + "m#0", + "tmp%5#0", + "tmp%6#0" + ], + "stack_out": [ + "k#0", + "m#0", + "tmp%5#0", + "tmp%6#0" + ] + }, + "166": { + "op": "dig 3", + "stack_out": [ + "k#0", + "m#0", + "tmp%5#0", + "tmp%6#0", + "k#0 (copy)" + ] + }, + "168": { + "op": "<=", + "defined_out": [ + "k#0", + "m#0", + "tmp%5#0", + "tmp%7#0" + ], + "stack_out": [ + "k#0", + "m#0", + "tmp%5#0", + "tmp%7#0" + ] + }, + "169": { + "op": "assert // intended encoded message length too short", + "stack_out": [ + "k#0", + "m#0", + "tmp%5#0" + ] + }, + "170": { + "op": "uncover 2", + "stack_out": [ + "m#0", + "tmp%5#0", + "k#0" + ] + }, + "172": { + "op": "swap", + "stack_out": [ + "m#0", + "k#0", + "tmp%5#0" + ] + }, + "173": { + "op": "-", + "defined_out": [ + "m#0", + "tmp%9#0" + ], + "stack_out": [ + "m#0", + "tmp%9#0" + ] + }, + "174": { + "op": "pushint 3 // 3", + "defined_out": [ + "3", + "m#0", + "tmp%9#0" + ], + "stack_out": [ + "m#0", + "tmp%9#0", + "3" + ] + }, + "176": { + "op": "-", + "defined_out": [ + "m#0", + "tmp%10#0" + ], + "stack_out": [ + "m#0", + "tmp%10#0" + ] + }, + "177": { + "op": "bzero", + "defined_out": [ + "m#0", + "tmp%11#0" + ], + "stack_out": [ + "m#0", + "tmp%11#0" + ] + }, + "178": { + "op": "b~", + "defined_out": [ + "PS#0", + "m#0" + ], + "stack_out": [ + "m#0", + "PS#0" + ] + }, + "179": { + "op": "pushbytes 0x0001", + "defined_out": [ + "0x0001", + "PS#0", + "m#0" + ], + "stack_out": [ + "m#0", + "PS#0", + "0x0001" + ] + }, + "183": { + "op": "swap", + "stack_out": [ + "m#0", + "0x0001", + "PS#0" + ] + }, + "184": { + "op": "concat", + "defined_out": [ + "m#0", + "tmp%12#0" + ], + "stack_out": [ + "m#0", + "tmp%12#0" + ] + }, + "185": { + "op": "pushbytes 0x00", + "defined_out": [ + "0x00", + "m#0", + "tmp%12#0" + ], + "stack_out": [ + "m#0", + "tmp%12#0", + "0x00" + ] + }, + "188": { + "op": "concat", + "defined_out": [ + "m#0", + "tmp%13#0" + ], + "stack_out": [ + "m#0", + "tmp%13#0" + ] + }, + "189": { + "op": "frame_dig -5", + "stack_out": [ + "m#0", + "tmp%13#0", + "msg_digest_info#0 (copy)" + ] + }, + "191": { + "op": "concat", + "defined_out": [ + "em_prime#0", + "m#0" + ], + "stack_out": [ + "m#0", + "em_prime#0" + ] + }, + "192": { + "callsub": "puya_bignumber.bignumber.equal", + "op": "callsub equal", + "defined_out": [ + "tmp%14#0" + ], + "stack_out": [ + "tmp%14#0" + ] + }, + "195": { + "op": "assert // em must match em_prime for signature to be valid", + "stack_out": [] + }, + "196": { + "retsub": true, + "op": "retsub" + }, + "197": { + "subroutine": "puya_bignumber.bignumber.less_than", + "params": { + "a#0": "bytes", + "b#0": "bytes" + }, + "block": "less_than", + "stack_in": [], + "op": "proto 2 1" + }, + "200": { + "op": "intc_2 // 0", + "stack_out": [ + "a_digit#0" + ] + }, + "201": { + "op": "dup", + "stack_out": [ + "a_digit#0", + "b_digit#0" + ] + }, + "202": { + "op": "frame_dig -2", + "defined_out": [ + "a#0 (copy)" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a#0 (copy)" + ] + }, + "204": { + "op": "len", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "tmp%0#0" + ] + }, + "205": { + "op": "frame_dig -1", + "defined_out": [ + "b#0 (copy)", + "tmp%0#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "tmp%0#0", + "b#0 (copy)" + ] + }, + "207": { + "op": "len", + "defined_out": [ + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "tmp%0#0", + "tmp%1#0" + ] + }, + "208": { + "callsub": "puya_bignumber.common.max_value", + "op": "callsub max_value", + "defined_out": [ + "tmp%2#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "tmp%2#0" + ] + }, + "211": { + "op": "intc_1 // 64", + "defined_out": [ + "64", + "tmp%2#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "tmp%2#0", + "64" + ] + }, + "212": { + "callsub": "puya_bignumber.common.enclosing_multiple", + "op": "callsub enclosing_multiple", + "defined_out": [ + "length#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "length#0" + ] + }, + "215": { + "op": "frame_dig -2", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "length#0", + "a#0 (copy)" + ] + }, + "217": { + "op": "dig 1", + "defined_out": [ + "a#0 (copy)", + "length#0", + "length#0 (copy)" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "length#0", + "a#0 (copy)", + "length#0 (copy)" + ] + }, + "219": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "a_digits#0", + "length#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "length#0", + "a_digits#0" + ] + }, + "222": { + "op": "dup", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "length#0", + "a_digits#0", + "a_digits#0 (copy)" + ] + }, + "223": { + "op": "uncover 2", + "defined_out": [ + "a_digits#0", + "length#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "a_digits#0", + "length#0" + ] + }, + "225": { + "op": "frame_dig -1", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "a_digits#0", + "length#0", + "b#0 (copy)" + ] + }, + "227": { + "op": "swap", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "a_digits#0", + "b#0 (copy)", + "length#0" + ] + }, + "228": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "a_digits#0", + "b_digits#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "a_digits#0", + "b_digits#0" + ] + }, + "231": { + "op": "dup", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "a_digits#0", + "b_digits#0", + "b_digits#0 (copy)" + ] + }, + "232": { + "op": "uncover 2", + "defined_out": [ + "a_digits#0", + "b_digits#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "b_digits#0", + "a_digits#0" + ] + }, + "234": { + "op": "len", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%3#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "b_digits#0", + "tmp%3#0" + ] + }, + "235": { + "op": "dup", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%3#0 (copy)" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%3#0 (copy)" + ] + }, + "236": { + "op": "intc_1 // 64", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%3#0 (copy)", + "64" + ] + }, + "237": { + "op": "%", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%4#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%4#0" + ] + }, + "238": { + "op": "!", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%5#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%5#0" + ] + }, + "239": { + "op": "assert // a length must be multiple of width", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "b_digits#0", + "tmp%3#0" + ] + }, + "240": { + "op": "swap", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "b_digits#0" + ] + }, + "241": { + "op": "len", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%6#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%6#0" + ] + }, + "242": { + "op": "intc_1 // 64", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%6#0", + "64" + ] + }, + "243": { + "op": "%", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%7#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%7#0" + ] + }, + "244": { + "op": "!", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%8#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "tmp%8#0" + ] + }, + "245": { + "op": "assert // b length must be multiple of width", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0" + ] + }, + "246": { + "op": "intc_1 // 64", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "64" + ] + }, + "247": { + "op": "/", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "n#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0" + ] + }, + "248": { + "op": "intc_2 // 0", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "n#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ] + }, + "249": { + "block": "less_than_for_header@1", + "stack_in": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ], + "op": "frame_dig 5", + "defined_out": [ + "i#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "i#0" + ] + }, + "251": { + "op": "frame_dig 4", + "defined_out": [ + "i#0", + "n#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "i#0", + "n#0" + ] + }, + "253": { + "op": "<", + "defined_out": [ + "continue_looping%0#0", + "i#0", + "n#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "continue_looping%0#0" + ] + }, + "254": { + "op": "bz less_than_after_for@8", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ] + }, + "257": { + "op": "frame_dig 5", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "i#0" + ] + }, + "259": { + "op": "intc_1 // 64", + "defined_out": [ + "64", + "i#0", + "n#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "i#0", + "64" + ] + }, + "260": { + "op": "*", + "defined_out": [ + "i#0", + "n#0", + "tmp%10#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "tmp%10#0" + ] + }, + "261": { + "op": "frame_dig 2", + "defined_out": [ + "a_digits#0", + "i#0", + "n#0", + "tmp%10#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "tmp%10#0", + "a_digits#0" + ] + }, + "263": { + "op": "dig 1", + "defined_out": [ + "a_digits#0", + "i#0", + "n#0", + "tmp%10#0", + "tmp%10#0 (copy)" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "tmp%10#0", + "a_digits#0", + "tmp%10#0 (copy)" + ] + }, + "265": { + "op": "intc_1 // 64", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "tmp%10#0", + "a_digits#0", + "tmp%10#0 (copy)", + "64" + ] + }, + "266": { + "op": "extract3", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "i#0", + "n#0", + "tmp%10#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "tmp%10#0", + "a_digit#0" + ] + }, + "267": { + "op": "dup", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "tmp%10#0", + "a_digit#0", + "a_digit#0 (copy)" + ] + }, + "268": { + "op": "cover 2", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "tmp%10#0", + "a_digit#0" + ] + }, + "270": { + "op": "frame_bury 0", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "i#0", + "n#0", + "tmp%10#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "tmp%10#0" + ] + }, + "272": { + "op": "frame_dig 3", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "b_digits#0", + "i#0", + "n#0", + "tmp%10#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "tmp%10#0", + "b_digits#0" + ] + }, + "274": { + "op": "swap", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "b_digits#0", + "tmp%10#0" + ] + }, + "275": { + "op": "intc_1 // 64", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "b_digits#0", + "tmp%10#0", + "64" + ] + }, + "276": { + "op": "extract3", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "b_digit#0", + "b_digits#0", + "i#0", + "n#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "b_digit#0" + ] + }, + "277": { + "op": "dup", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "b_digit#0", + "b_digit#0" + ] + }, + "278": { + "op": "frame_bury 1", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "b_digit#0", + "b_digits#0", + "i#0", + "n#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "b_digit#0" + ] + }, + "280": { + "op": "b<", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "b_digit#0", + "b_digits#0", + "i#0", + "n#0", + "tmp%12#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "tmp%12#0" + ] + }, + "281": { + "op": "bz less_than_after_if_else@4", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ] + }, + "284": { + "op": "intc_0 // 1", + "defined_out": [ + "1", + "a_digit#0", + "a_digits#0", + "b_digit#0", + "b_digits#0", + "i#0", + "n#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "1" + ] + }, + "285": { + "op": "frame_bury 0" + }, + "287": { + "retsub": true, + "op": "retsub" + }, + "288": { + "block": "less_than_after_if_else@4", + "stack_in": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ], + "op": "frame_dig 0", + "defined_out": [ + "a_digit#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0" + ] + }, + "290": { + "op": "frame_dig 1", + "defined_out": [ + "a_digit#0", + "b_digit#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "a_digit#0", + "b_digit#0" + ] + }, + "292": { + "op": "b>", + "defined_out": [ + "a_digit#0", + "b_digit#0", + "tmp%13#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "tmp%13#0" + ] + }, + "293": { + "op": "bz less_than_after_if_else@6", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ] + }, + "296": { + "op": "intc_2 // 0", + "defined_out": [ + "0", + "a_digit#0", + "b_digit#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "0" + ] + }, + "297": { + "op": "frame_bury 0" + }, + "299": { + "retsub": true, + "op": "retsub" + }, + "300": { + "block": "less_than_after_if_else@6", + "stack_in": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ], + "op": "frame_dig 5", + "defined_out": [ + "i#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "i#0" + ] + }, + "302": { + "op": "intc_0 // 1", + "defined_out": [ + "1", + "i#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "i#0", + "1" + ] + }, + "303": { + "op": "+", + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "i#0" + ] + }, + "304": { + "op": "frame_bury 5", + "defined_out": [ + "i#0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ] + }, + "306": { + "op": "b less_than_for_header@1" + }, + "309": { + "block": "less_than_after_for@8", + "stack_in": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0" + ], + "op": "intc_2 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "a_digit#0", + "b_digit#0", + "a_digits#0", + "b_digits#0", + "n#0", + "i#0", + "0" + ] + }, + "310": { + "op": "frame_bury 0" + }, + "312": { + "retsub": true, + "op": "retsub" + }, + "313": { + "subroutine": "puya_bignumber.common.max_value", + "params": { + "a#0": "uint64", + "b#0": "uint64" + }, + "block": "max_value", + "stack_in": [], + "op": "proto 2 1" + }, + "316": { + "op": "frame_dig -2", + "defined_out": [ + "a#0 (copy)" + ], + "stack_out": [ + "a#0 (copy)" + ] + }, + "318": { + "op": "frame_dig -1", + "defined_out": [ + "a#0 (copy)", + "b#0 (copy)" + ], + "stack_out": [ + "a#0 (copy)", + "b#0 (copy)" + ] + }, + "320": { + "op": ">=", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "321": { + "op": "bz max_value_after_if_else@2", + "stack_out": [] + }, + "324": { + "op": "frame_dig -2", + "stack_out": [ + "a#0 (copy)" + ] + }, + "326": { + "retsub": true, + "op": "retsub" + }, + "327": { + "block": "max_value_after_if_else@2", + "stack_in": [], + "op": "frame_dig -1", + "defined_out": [ + "b#0 (copy)" + ], + "stack_out": [ + "b#0 (copy)" + ] + }, + "329": { + "retsub": true, + "op": "retsub" + }, + "330": { + "subroutine": "puya_bignumber.common.enclosing_multiple", + "params": { + "num#0": "uint64", + "multiple#0": "uint64" + }, + "block": "enclosing_multiple", + "stack_in": [], + "op": "proto 2 1" + }, + "333": { + "op": "frame_dig -2", + "defined_out": [ + "num#0 (copy)" + ], + "stack_out": [ + "num#0 (copy)" + ] + }, + "335": { + "op": "frame_dig -1", + "defined_out": [ + "multiple#0 (copy)", + "num#0 (copy)" + ], + "stack_out": [ + "num#0 (copy)", + "multiple#0 (copy)" + ] + }, + "337": { + "op": "%", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "338": { + "op": "frame_dig -1", + "stack_out": [ + "tmp%0#0", + "multiple#0 (copy)" + ] + }, + "340": { + "op": "swap", + "stack_out": [ + "multiple#0 (copy)", + "tmp%0#0" + ] + }, + "341": { + "op": "-", + "defined_out": [ + "missing_length#0" + ], + "stack_out": [ + "missing_length#0" + ] + }, + "342": { + "op": "frame_dig -1", + "stack_out": [ + "missing_length#0", + "multiple#0 (copy)" + ] + }, + "344": { + "op": "%", + "defined_out": [ + "missing_length_mod#0" + ], + "stack_out": [ + "missing_length_mod#0" + ] + }, + "345": { + "op": "frame_dig -2", + "stack_out": [ + "missing_length_mod#0", + "num#0 (copy)" + ] + }, + "347": { + "op": "+", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "348": { + "retsub": true, + "op": "retsub" + }, + "349": { + "subroutine": "puya_bignumber.common.pad", + "params": { + "value#0": "bytes", + "width#0": "uint64" + }, + "block": "pad", + "stack_in": [], + "op": "proto 2 1" + }, + "352": { + "op": "frame_dig -2", + "defined_out": [ + "value#0 (copy)" + ], + "stack_out": [ + "value#0 (copy)" + ] + }, + "354": { + "op": "len", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "355": { + "op": "dup", + "defined_out": [ + "tmp%0#0", + "tmp%0#0 (copy)" + ], + "stack_out": [ + "tmp%0#0", + "tmp%0#0 (copy)" + ] + }, + "356": { + "op": "frame_dig -1", + "defined_out": [ + "tmp%0#0", + "tmp%0#0 (copy)", + "width#0 (copy)" + ], + "stack_out": [ + "tmp%0#0", + "tmp%0#0 (copy)", + "width#0 (copy)" + ] + }, + "358": { + "op": "<=", + "defined_out": [ + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "tmp%0#0", + "tmp%1#0" + ] + }, + "359": { + "op": "assert // Width must be wider than value", + "stack_out": [ + "tmp%0#0" + ] + }, + "360": { + "op": "frame_dig -1", + "stack_out": [ + "tmp%0#0", + "width#0 (copy)" + ] + }, + "362": { + "op": "swap", + "stack_out": [ + "width#0 (copy)", + "tmp%0#0" + ] + }, + "363": { + "op": "-", + "defined_out": [ + "pad_length#0" + ], + "stack_out": [ + "pad_length#0" + ] + }, + "364": { + "op": "bzero", + "defined_out": [ + "padding#0" + ], + "stack_out": [ + "padding#0" + ] + }, + "365": { + "op": "frame_dig -2", + "stack_out": [ + "padding#0", + "value#0 (copy)" + ] + }, + "367": { + "op": "concat", + "defined_out": [ + "padded#0" + ], + "stack_out": [ + "padded#0" + ] + }, + "368": { + "retsub": true, + "op": "retsub" + }, + "369": { + "subroutine": "puya_bignumber.bignumber.modexp_barrett_reduce", + "params": { + "base#0": "bytes", + "exp#0": "bytes", + "mod#0": "bytes", + "precomputed_factor#0": "bytes" + }, + "block": "modexp_barrett_reduce", + "stack_in": [], + "op": "proto 4 1" + }, + "372": { + "op": "frame_dig -4", + "defined_out": [ + "base#0 (copy)" + ], + "stack_out": [ + "base#0 (copy)" + ] + }, + "374": { + "op": "frame_dig -2", + "defined_out": [ + "base#0 (copy)", + "mod#0 (copy)" + ], + "stack_out": [ + "base#0 (copy)", + "mod#0 (copy)" + ] + }, + "376": { + "callsub": "puya_bignumber.bignumber.modexp_barrett_reduce_assumption_validation", + "op": "callsub modexp_barrett_reduce_assumption_validation", + "stack_out": [] + }, + "379": { + "op": "frame_dig -4", + "stack_out": [ + "base#0 (copy)" + ] + }, + "381": { + "op": "frame_dig -3", + "defined_out": [ + "base#0 (copy)", + "exp#0 (copy)" + ], + "stack_out": [ + "base#0 (copy)", + "exp#0 (copy)" + ] + }, + "383": { + "op": "frame_dig -2", + "stack_out": [ + "base#0 (copy)", + "exp#0 (copy)", + "mod#0 (copy)" + ] + }, + "385": { + "op": "frame_dig -1", + "defined_out": [ + "base#0 (copy)", + "exp#0 (copy)", + "mod#0 (copy)", + "precomputed_factor#0 (copy)" + ], + "stack_out": [ + "base#0 (copy)", + "exp#0 (copy)", + "mod#0 (copy)", + "precomputed_factor#0 (copy)" + ] + }, + "387": { + "callsub": "puya_bignumber.bignumber.modexp_barrett_reduce_post_validation", + "op": "callsub modexp_barrett_reduce_post_validation", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "390": { + "retsub": true, + "op": "retsub" + }, + "391": { + "subroutine": "puya_bignumber.bignumber.modexp_barrett_reduce_assumption_validation", + "params": { + "base#0": "bytes", + "mod#0": "bytes" + }, + "block": "modexp_barrett_reduce_assumption_validation", + "stack_in": [], + "op": "proto 2 0" + }, + "394": { + "op": "frame_dig -1", + "defined_out": [ + "mod#0 (copy)" + ], + "stack_out": [ + "mod#0 (copy)" + ] + }, + "396": { + "op": "dup", + "stack_out": [ + "mod#0 (copy)", + "mod#0 (copy)" + ] + }, + "397": { + "callsub": "puya_bignumber.bignumber.multiply", + "op": "callsub multiply", + "defined_out": [ + "mod_squared#0" + ], + "stack_out": [ + "mod_squared#0" + ] + }, + "400": { + "op": "frame_dig -2", + "defined_out": [ + "base#0 (copy)", + "mod_squared#0" + ], + "stack_out": [ + "mod_squared#0", + "base#0 (copy)" + ] + }, + "402": { + "op": "swap", + "stack_out": [ + "base#0 (copy)", + "mod_squared#0" + ] + }, + "403": { + "callsub": "puya_bignumber.bignumber.less_than", + "op": "callsub less_than", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "406": { + "op": "assert // Must have 0 <= a < mod ** 2", + "stack_out": [] + }, + "407": { + "op": "intc_2 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "0" + ] + }, + "408": { + "op": "itob", + "defined_out": [ + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0" + ] + }, + "409": { + "op": "frame_dig -1", + "stack_out": [ + "tmp%1#0", + "mod#0 (copy)" + ] + }, + "411": { + "op": "dig 1", + "defined_out": [ + "mod#0 (copy)", + "tmp%1#0", + "tmp%1#0 (copy)" + ], + "stack_out": [ + "tmp%1#0", + "mod#0 (copy)", + "tmp%1#0 (copy)" + ] + }, + "413": { + "callsub": "puya_bignumber.bignumber.equal", + "op": "callsub equal", + "defined_out": [ + "tmp%1#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%1#0", + "tmp%2#0" + ] + }, + "416": { + "op": "!", + "defined_out": [ + "tmp%1#0", + "tmp%3#0" + ], + "stack_out": [ + "tmp%1#0", + "tmp%3#0" + ] + }, + "417": { + "op": "assert // Must have mod != 0", + "stack_out": [ + "tmp%1#0" + ] + }, + "418": { + "op": "intc_0 // 1", + "defined_out": [ + "1", + "tmp%1#0" + ], + "stack_out": [ + "tmp%1#0", + "1" + ] + }, + "419": { + "op": "itob", + "defined_out": [ + "tmp%1#0", + "tmp%4#0" + ], + "stack_out": [ + "tmp%1#0", + "tmp%4#0" + ] + }, + "420": { + "op": "frame_dig -1", + "stack_out": [ + "tmp%1#0", + "tmp%4#0", + "mod#0 (copy)" + ] + }, + "422": { + "op": "swap", + "stack_out": [ + "tmp%1#0", + "mod#0 (copy)", + "tmp%4#0" + ] + }, + "423": { + "callsub": "puya_bignumber.bignumber.subtract", + "op": "callsub subtract", + "defined_out": [ + "tmp%1#0", + "tmp%5#0" + ], + "stack_out": [ + "tmp%1#0", + "tmp%5#0" + ] + }, + "426": { + "op": "frame_dig -1", + "stack_out": [ + "tmp%1#0", + "tmp%5#0", + "mod#0 (copy)" + ] + }, + "428": { + "op": "b&", + "defined_out": [ + "tmp%1#0", + "tmp%6#0" + ], + "stack_out": [ + "tmp%1#0", + "tmp%6#0" + ] + }, + "429": { + "op": "swap", + "stack_out": [ + "tmp%6#0", + "tmp%1#0" + ] + }, + "430": { + "callsub": "puya_bignumber.bignumber.equal", + "op": "callsub equal", + "defined_out": [ + "tmp%8#0" + ], + "stack_out": [ + "tmp%8#0" + ] + }, + "433": { + "op": "!", + "defined_out": [ + "tmp%9#0" + ], + "stack_out": [ + "tmp%9#0" + ] + }, + "434": { + "op": "assert // mod cannot be a power of 2", + "stack_out": [] + }, + "435": { + "retsub": true, + "op": "retsub" + }, + "436": { + "subroutine": "puya_bignumber.bignumber.multiply", + "params": { + "x_in#0": "bytes", + "y_in#0": "bytes" + }, + "block": "multiply", + "stack_in": [], + "op": "proto 2 1" + }, + "439": { + "op": "frame_dig -2", + "defined_out": [ + "x_in#0 (copy)" + ], + "stack_out": [ + "x_in#0 (copy)" + ] + }, + "441": { + "op": "len", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "442": { + "op": "frame_dig -1", + "defined_out": [ + "tmp%0#0", + "y_in#0 (copy)" + ], + "stack_out": [ + "tmp%0#0", + "y_in#0 (copy)" + ] + }, + "444": { + "op": "len", + "defined_out": [ + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "tmp%0#0", + "tmp%1#0" + ] + }, + "445": { + "callsub": "puya_bignumber.common.max_value", + "op": "callsub max_value", + "defined_out": [ + "tmp%2#0" + ], + "stack_out": [ + "tmp%2#0" + ] + }, + "448": { + "op": "intc_1 // 64", + "defined_out": [ + "64", + "tmp%2#0" + ], + "stack_out": [ + "tmp%2#0", + "64" + ] + }, + "449": { + "callsub": "puya_bignumber.common.enclosing_multiple", + "op": "callsub enclosing_multiple", + "defined_out": [ + "length#0" + ], + "stack_out": [ + "length#0" + ] + }, + "452": { + "op": "frame_dig -2", + "stack_out": [ + "length#0", + "x_in#0 (copy)" + ] + }, + "454": { + "op": "dig 1", + "defined_out": [ + "length#0", + "length#0 (copy)", + "x_in#0 (copy)" + ], + "stack_out": [ + "length#0", + "x_in#0 (copy)", + "length#0 (copy)" + ] + }, + "456": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "length#0", + "x#0" + ], + "stack_out": [ + "length#0", + "x#0" + ] + }, + "459": { + "op": "dup", + "stack_out": [ + "length#0", + "x#0", + "x#0 (copy)" + ] + }, + "460": { + "op": "uncover 2", + "defined_out": [ + "length#0", + "x#0" + ], + "stack_out": [ + "x#0", + "x#0", + "length#0" + ] + }, + "462": { + "op": "frame_dig -1", + "stack_out": [ + "x#0", + "x#0", + "length#0", + "y_in#0 (copy)" + ] + }, + "464": { + "op": "swap", + "stack_out": [ + "x#0", + "x#0", + "y_in#0 (copy)", + "length#0" + ] + }, + "465": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "x#0", + "y#0" + ], + "stack_out": [ + "x#0", + "x#0", + "y#0" + ] + }, + "468": { + "op": "swap", + "defined_out": [ + "x#0", + "y#0" + ], + "stack_out": [ + "x#0", + "y#0", + "x#0" + ] + }, + "469": { + "op": "len", + "defined_out": [ + "n#0", + "x#0", + "y#0" + ], + "stack_out": [ + "x#0", + "y#0", + "n#0" + ] + }, + "470": { + "op": "dup", + "stack_out": [ + "x#0", + "y#0", + "n#0", + "n#0" + ] + }, + "471": { + "op": "cover 2", + "defined_out": [ + "n#0", + "x#0", + "y#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0" + ] + }, + "473": { + "op": "intc_1 // 64", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "64" + ] + }, + "474": { + "op": "<=", + "defined_out": [ + "n#0", + "tmp%3#0", + "x#0", + "y#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "tmp%3#0" + ] + }, + "475": { + "op": "bz multiply_after_if_else@2", + "stack_out": [ + "x#0", + "n#0", + "y#0" + ] + }, + "478": { + "op": "frame_dig 0", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "x#0" + ] + }, + "480": { + "op": "b*", + "defined_out": [ + "n#0", + "x#0", + "xy#0" + ], + "stack_out": [ + "x#0", + "n#0", + "xy#0" + ] + }, + "481": { + "op": "frame_bury 0" + }, + "483": { + "retsub": true, + "op": "retsub" + }, + "484": { + "block": "multiply_after_if_else@2", + "stack_in": [ + "x#0", + "n#0", + "y#0" + ], + "op": "frame_dig 1", + "defined_out": [ + "n#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0" + ] + }, + "486": { + "op": "dup", + "defined_out": [ + "n#0", + "n#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "n#0 (copy)" + ] + }, + "487": { + "op": "intc_3 // 2", + "defined_out": [ + "2", + "n#0", + "n#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "n#0 (copy)", + "2" + ] + }, + "488": { + "op": "/", + "defined_out": [ + "first_half#0", + "n#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0" + ] + }, + "489": { + "op": "dup2", + "defined_out": [ + "first_half#0", + "first_half#0 (copy)", + "n#0", + "n#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "n#0 (copy)", + "first_half#0 (copy)" + ] + }, + "490": { + "op": "-", + "defined_out": [ + "first_half#0", + "n#0", + "second_half#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0" + ] + }, + "491": { + "op": "dig 1", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "first_half#0 (copy)" + ] + }, + "493": { + "op": "dig 3", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "first_half#0 (copy)", + "n#0 (copy)" + ] + }, + "495": { + "op": ">=", + "defined_out": [ + "first_half#0", + "is_out_of_bounds%0#0", + "n#0", + "second_half#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "is_out_of_bounds%0#0" + ] + }, + "496": { + "op": "dig 2", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "is_out_of_bounds%0#0", + "first_half#0 (copy)" + ] + }, + "498": { + "op": "dig 4", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "is_out_of_bounds%0#0", + "first_half#0 (copy)", + "n#0 (copy)" + ] + }, + "500": { + "op": "uncover 2", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "first_half#0 (copy)", + "n#0 (copy)", + "is_out_of_bounds%0#0" + ] + }, + "502": { + "op": "select", + "defined_out": [ + "bounded_index%0#0", + "first_half#0", + "n#0", + "second_half#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "bounded_index%0#0" + ] + }, + "503": { + "op": "frame_dig 0", + "defined_out": [ + "bounded_index%0#0", + "first_half#0", + "n#0", + "second_half#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "bounded_index%0#0", + "x#0" + ] + }, + "505": { + "op": "dup", + "defined_out": [ + "bounded_index%0#0", + "first_half#0", + "n#0", + "second_half#0", + "x#0", + "x#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "bounded_index%0#0", + "x#0 (copy)", + "x#0 (copy)" + ] + }, + "506": { + "op": "cover 2", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "x#0", + "bounded_index%0#0", + "x#0 (copy)" + ] + }, + "508": { + "op": "intc_2 // 0", + "defined_out": [ + "0", + "bounded_index%0#0", + "first_half#0", + "n#0", + "second_half#0", + "x#0", + "x#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "x#0", + "bounded_index%0#0", + "x#0 (copy)", + "0" + ] + }, + "509": { + "op": "dig 2", + "defined_out": [ + "0", + "bounded_index%0#0", + "bounded_index%0#0 (copy)", + "first_half#0", + "n#0", + "second_half#0", + "x#0", + "x#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "x#0", + "bounded_index%0#0", + "x#0 (copy)", + "0", + "bounded_index%0#0 (copy)" + ] + }, + "511": { + "op": "substring3", + "defined_out": [ + "bounded_index%0#0", + "first_half#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "x#0", + "bounded_index%0#0", + "x_left#0" + ] + }, + "512": { + "op": "cover 2", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "n#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x#0", + "bounded_index%0#0" + ] + }, + "514": { + "op": "uncover 5", + "stack_out": [ + "x#0", + "n#0", + "y#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x#0", + "bounded_index%0#0", + "n#0" + ] + }, + "516": { + "op": "substring3", + "defined_out": [ + "first_half#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0" + ], + "stack_out": [ + "x#0", + "n#0", + "y#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x_right#0" + ] + }, + "517": { + "op": "uncover 4", + "defined_out": [ + "first_half#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y#0" + ], + "stack_out": [ + "x#0", + "n#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0" + ] + }, + "519": { + "op": "dup", + "defined_out": [ + "first_half#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y#0", + "y#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "y#0 (copy)" + ] + }, + "520": { + "op": "len", + "defined_out": [ + "first_half#0", + "length%2#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y#0" + ], + "stack_out": [ + "x#0", + "n#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0" + ] + }, + "521": { + "op": "dig 5", + "stack_out": [ + "x#0", + "n#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "first_half#0 (copy)" + ] + }, + "523": { + "op": "dig 1", + "defined_out": [ + "first_half#0", + "first_half#0 (copy)", + "length%2#0", + "length%2#0 (copy)", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y#0" + ], + "stack_out": [ + "x#0", + "n#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "first_half#0 (copy)", + "length%2#0 (copy)" + ] + }, + "525": { + "op": ">=", + "defined_out": [ + "first_half#0", + "is_out_of_bounds%2#0", + "length%2#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y#0" + ], + "stack_out": [ + "x#0", + "n#0", + "first_half#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "is_out_of_bounds%2#0" + ] + }, + "526": { + "op": "uncover 6", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "is_out_of_bounds%2#0", + "first_half#0" + ] + }, + "528": { + "op": "dig 2", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "is_out_of_bounds%2#0", + "first_half#0", + "length%2#0 (copy)" + ] + }, + "530": { + "op": "uncover 2", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "first_half#0", + "length%2#0 (copy)", + "is_out_of_bounds%2#0" + ] + }, + "532": { + "op": "select", + "defined_out": [ + "bounded_index%2#0", + "length%2#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "bounded_index%2#0" + ] + }, + "533": { + "op": "dig 2", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "bounded_index%2#0", + "y#0 (copy)" + ] + }, + "535": { + "op": "intc_2 // 0", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "bounded_index%2#0", + "y#0 (copy)", + "0" + ] + }, + "536": { + "op": "dig 2", + "defined_out": [ + "0", + "bounded_index%2#0", + "bounded_index%2#0 (copy)", + "length%2#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y#0", + "y#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "bounded_index%2#0", + "y#0 (copy)", + "0", + "bounded_index%2#0 (copy)" + ] + }, + "538": { + "op": "substring3", + "defined_out": [ + "bounded_index%2#0", + "length%2#0", + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y#0", + "y_left#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y#0", + "length%2#0", + "bounded_index%2#0", + "y_left#0" + ] + }, + "539": { + "op": "uncover 3", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "length%2#0", + "bounded_index%2#0", + "y_left#0", + "y#0" + ] + }, + "541": { + "op": "uncover 2", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "length%2#0", + "y_left#0", + "y#0", + "bounded_index%2#0" + ] + }, + "543": { + "op": "uncover 3", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y#0", + "bounded_index%2#0", + "length%2#0" + ] + }, + "545": { + "op": "substring3", + "defined_out": [ + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0" + ] + }, + "546": { + "op": "dig 3", + "defined_out": [ + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_left#0 (copy)", + "x_right#0", + "y_left#0", + "y_right#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0", + "x_left#0 (copy)" + ] + }, + "548": { + "op": "dig 2", + "defined_out": [ + "n#0", + "second_half#0", + "x#0", + "x_left#0", + "x_left#0 (copy)", + "x_right#0", + "y_left#0", + "y_left#0 (copy)", + "y_right#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0", + "x_left#0 (copy)", + "y_left#0 (copy)" + ] + }, + "550": { + "callsub": "puya_bignumber.bignumber.multiply", + "op": "callsub multiply", + "defined_out": [ + "n#0", + "p_1#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0", + "p_1#0" + ] + }, + "553": { + "op": "dig 3", + "defined_out": [ + "n#0", + "p_1#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "x_right#0 (copy)", + "y_left#0", + "y_right#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0", + "p_1#0", + "x_right#0 (copy)" + ] + }, + "555": { + "op": "dig 2", + "defined_out": [ + "n#0", + "p_1#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "x_right#0 (copy)", + "y_left#0", + "y_right#0", + "y_right#0 (copy)" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0", + "p_1#0", + "x_right#0 (copy)", + "y_right#0 (copy)" + ] + }, + "557": { + "callsub": "puya_bignumber.bignumber.multiply", + "op": "callsub multiply", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "second_half#0", + "x#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "x_left#0", + "x_right#0", + "y_left#0", + "y_right#0", + "p_1#0", + "p_2#0" + ] + }, + "560": { + "op": "uncover 5" + }, + "562": { + "op": "uncover 5", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "y_left#0", + "y_right#0", + "p_1#0", + "p_2#0", + "x_left#0", + "x_right#0" + ] + }, + "564": { + "callsub": "puya_bignumber.bignumber.add", + "op": "callsub add", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "second_half#0", + "tmp%4#0", + "x#0", + "y_left#0", + "y_right#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "y_left#0", + "y_right#0", + "p_1#0", + "p_2#0", + "tmp%4#0" + ] + }, + "567": { + "op": "uncover 4" + }, + "569": { + "op": "uncover 4", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "tmp%4#0", + "y_left#0", + "y_right#0" + ] + }, + "571": { + "callsub": "puya_bignumber.bignumber.add", + "op": "callsub add", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "second_half#0", + "tmp%4#0", + "tmp%5#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "tmp%4#0", + "tmp%5#0" + ] + }, + "574": { + "callsub": "puya_bignumber.bignumber.multiply", + "op": "callsub multiply", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "p_3#0", + "second_half#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "p_3#0" + ] + }, + "577": { + "op": "dig 2", + "defined_out": [ + "n#0", + "p_1#0", + "p_1#0 (copy)", + "p_2#0", + "p_3#0", + "second_half#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "p_3#0", + "p_1#0 (copy)" + ] + }, + "579": { + "callsub": "puya_bignumber.bignumber.subtract", + "op": "callsub subtract", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "second_half#0", + "tmp%6#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "tmp%6#0" + ] + }, + "582": { + "op": "dig 1", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "p_2#0 (copy)", + "second_half#0", + "tmp%6#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "tmp%6#0", + "p_2#0 (copy)" + ] + }, + "584": { + "callsub": "puya_bignumber.bignumber.subtract", + "op": "callsub subtract", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "p_4#0", + "second_half#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "p_4#0" + ] + }, + "587": { + "op": "intc_3 // 2", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "p_4#0", + "2" + ] + }, + "588": { + "op": "dig 4", + "defined_out": [ + "2", + "n#0", + "p_1#0", + "p_2#0", + "p_4#0", + "second_half#0", + "second_half#0 (copy)", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "p_4#0", + "2", + "second_half#0 (copy)" + ] + }, + "590": { + "op": "*", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "p_4#0", + "second_half#0", + "tmp%7#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "p_4#0", + "tmp%7#0" + ] + }, + "591": { + "op": "bzero", + "defined_out": [ + "n#0", + "p_1#0", + "p_2#0", + "p_4#0", + "second_half#0", + "tmp%8#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_1#0", + "p_2#0", + "p_4#0", + "tmp%8#0" + ] + }, + "592": { + "op": "uncover 3", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_2#0", + "p_4#0", + "tmp%8#0", + "p_1#0" + ] + }, + "594": { + "op": "swap", + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_2#0", + "p_4#0", + "p_1#0", + "tmp%8#0" + ] + }, + "595": { + "op": "concat", + "defined_out": [ + "n#0", + "p_2#0", + "p_4#0", + "second_half#0", + "shifted_P1#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "second_half#0", + "p_2#0", + "p_4#0", + "shifted_P1#0" + ] + }, + "596": { + "op": "uncover 3", + "stack_out": [ + "x#0", + "n#0", + "p_2#0", + "p_4#0", + "shifted_P1#0", + "second_half#0" + ] + }, + "598": { + "op": "bzero", + "defined_out": [ + "n#0", + "p_2#0", + "p_4#0", + "shifted_P1#0", + "tmp%9#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "p_2#0", + "p_4#0", + "shifted_P1#0", + "tmp%9#0" + ] + }, + "599": { + "op": "uncover 2", + "stack_out": [ + "x#0", + "n#0", + "p_2#0", + "shifted_P1#0", + "tmp%9#0", + "p_4#0" + ] + }, + "601": { + "op": "swap", + "stack_out": [ + "x#0", + "n#0", + "p_2#0", + "shifted_P1#0", + "p_4#0", + "tmp%9#0" + ] + }, + "602": { + "op": "concat", + "defined_out": [ + "n#0", + "p_2#0", + "shifted_P1#0", + "shifted_P4#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "p_2#0", + "shifted_P1#0", + "shifted_P4#0" + ] + }, + "603": { + "callsub": "puya_bignumber.bignumber.add", + "op": "callsub add", + "defined_out": [ + "n#0", + "p_2#0", + "tmp%10#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "p_2#0", + "tmp%10#0" + ] + }, + "606": { + "op": "swap", + "stack_out": [ + "x#0", + "n#0", + "tmp%10#0", + "p_2#0" + ] + }, + "607": { + "callsub": "puya_bignumber.bignumber.add", + "op": "callsub add", + "defined_out": [ + "n#0", + "tmp%11#0", + "x#0" + ], + "stack_out": [ + "x#0", + "n#0", + "tmp%11#0" + ] + }, + "610": { + "op": "frame_bury 0" + }, + "612": { + "retsub": true, + "op": "retsub" + }, + "613": { + "subroutine": "puya_bignumber.bignumber.add", + "params": { + "a#0": "bytes", + "b#0": "bytes" + }, + "block": "add", + "stack_in": [], + "op": "proto 2 1" + }, + "616": { + "op": "bytec_0 // \"\"", + "stack_out": [ + "i#0" + ] + }, + "617": { + "op": "frame_dig -2", + "defined_out": [ + "a#0 (copy)" + ], + "stack_out": [ + "i#0", + "a#0 (copy)" + ] + }, + "619": { + "op": "len", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "i#0", + "tmp%0#0" + ] + }, + "620": { + "op": "frame_dig -1", + "defined_out": [ + "b#0 (copy)", + "tmp%0#0" + ], + "stack_out": [ + "i#0", + "tmp%0#0", + "b#0 (copy)" + ] + }, + "622": { + "op": "len", + "defined_out": [ + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "i#0", + "tmp%0#0", + "tmp%1#0" + ] + }, + "623": { + "callsub": "puya_bignumber.common.max_value", + "op": "callsub max_value", + "defined_out": [ + "tmp%2#0" + ], + "stack_out": [ + "i#0", + "tmp%2#0" + ] + }, + "626": { + "op": "intc_1 // 64", + "defined_out": [ + "64", + "tmp%2#0" + ], + "stack_out": [ + "i#0", + "tmp%2#0", + "64" + ] + }, + "627": { + "callsub": "puya_bignumber.common.enclosing_multiple", + "op": "callsub enclosing_multiple", + "defined_out": [ + "length#0" + ], + "stack_out": [ + "i#0", + "length#0" + ] + }, + "630": { + "op": "frame_dig -2", + "stack_out": [ + "i#0", + "length#0", + "a#0 (copy)" + ] + }, + "632": { + "op": "dig 1", + "defined_out": [ + "a#0 (copy)", + "length#0", + "length#0 (copy)" + ], + "stack_out": [ + "i#0", + "length#0", + "a#0 (copy)", + "length#0 (copy)" + ] + }, + "634": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "a_digits#0", + "length#0" + ], + "stack_out": [ + "i#0", + "length#0", + "a_digits#0" + ] + }, + "637": { + "op": "dup", + "stack_out": [ + "i#0", + "length#0", + "a_digits#0", + "a_digits#0 (copy)" + ] + }, + "638": { + "op": "uncover 2", + "defined_out": [ + "a_digits#0", + "length#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "a_digits#0", + "length#0" + ] + }, + "640": { + "op": "frame_dig -1", + "stack_out": [ + "i#0", + "a_digits#0", + "a_digits#0", + "length#0", + "b#0 (copy)" + ] + }, + "642": { + "op": "swap", + "stack_out": [ + "i#0", + "a_digits#0", + "a_digits#0", + "b#0 (copy)", + "length#0" + ] + }, + "643": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "a_digits#0", + "b_digits#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "a_digits#0", + "b_digits#0" + ] + }, + "646": { + "op": "swap", + "defined_out": [ + "a_digits#0", + "b_digits#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "a_digits#0" + ] + }, + "647": { + "op": "len", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%3#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0" + ] + }, + "648": { + "op": "intc_1 // 64", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "tmp%3#0", + "64" + ] + }, + "649": { + "op": "/", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "n#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0" + ] + }, + "650": { + "op": "dup", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "n#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "n#0" + ] + }, + "651": { + "op": "bytec_0 // 0x" + }, + "652": { + "op": "dup", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "n#0", + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "n#0", + "result#0", + "result#0" + ] + }, + "653": { + "op": "cover 2", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "n#0", + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "n#0", + "result#0" + ] + }, + "655": { + "op": "intc_2 // 0" + }, + "656": { + "op": "dup", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "n#0", + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "n#0", + "result#0", + "carry#0", + "carry#0 (copy)" + ] + }, + "657": { + "op": "cover 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "n#0", + "carry#0", + "result#0", + "carry#0" + ] + }, + "659": { + "op": "cover 3", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "n#0", + "result#0", + "result#9" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "n#0", + "carry#0", + "result#9" + ] + }, + "661": { + "op": "cover 2", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "carry#9", + "n#0", + "result#0", + "result#9" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "n#0", + "carry#9" + ] + }, + "663": { + "op": "swap", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "n#0" + ] + }, + "664": { + "op": "bz add_after_for@5", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ] + }, + "667": { + "op": "frame_dig 3", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "n#0" + ] + }, + "669": { + "op": "intc_0 // 1", + "defined_out": [ + "1", + "a_digits#0", + "b_digits#0", + "carry#0", + "carry#9", + "n#0", + "result#0", + "result#9" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "n#0", + "1" + ] + }, + "670": { + "op": "-", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "carry#9", + "n#0", + "range_length_minus_one%0#0", + "result#0", + "result#9" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "range_length_minus_one%0#0" + ] + }, + "671": { + "op": "intc_0 // 1", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "range_length_minus_one%0#0", + "1" + ] + }, + "672": { + "op": "/", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "carry#9", + "i#0", + "n#0", + "result#0", + "result#9" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0" + ] + }, + "673": { + "op": "frame_bury 0", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ] + }, + "675": { + "block": "add_for_body@2", + "stack_in": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ], + "op": "frame_dig 0", + "defined_out": [ + "i#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0" + ] + }, + "677": { + "op": "dup", + "defined_out": [ + "i#0", + "i#0 (copy)" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "i#0 (copy)" + ] + }, + "678": { + "op": "intc_1 // 64", + "defined_out": [ + "64", + "i#0", + "i#0 (copy)" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "i#0 (copy)", + "64" + ] + }, + "679": { + "op": "*", + "defined_out": [ + "i#0", + "tmp%4#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "tmp%4#0" + ] + }, + "680": { + "op": "frame_dig 1", + "defined_out": [ + "a_digits#0", + "i#0", + "tmp%4#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "tmp%4#0", + "a_digits#0" + ] + }, + "682": { + "op": "dig 1", + "defined_out": [ + "a_digits#0", + "i#0", + "tmp%4#0", + "tmp%4#0 (copy)" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "tmp%4#0", + "a_digits#0", + "tmp%4#0 (copy)" + ] + }, + "684": { + "op": "intc_1 // 64", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "tmp%4#0", + "a_digits#0", + "tmp%4#0 (copy)", + "64" + ] + }, + "685": { + "op": "extract3", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "i#0", + "tmp%4#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "tmp%4#0", + "a_digit#0" + ] + }, + "686": { + "op": "frame_dig 2", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "b_digits#0", + "i#0", + "tmp%4#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "tmp%4#0", + "a_digit#0", + "b_digits#0" + ] + }, + "688": { + "op": "uncover 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "a_digit#0", + "b_digits#0", + "tmp%4#0" + ] + }, + "690": { + "op": "intc_1 // 64", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "a_digit#0", + "b_digits#0", + "tmp%4#0", + "64" + ] + }, + "691": { + "op": "extract3", + "defined_out": [ + "a_digit#0", + "a_digits#0", + "b_digit#0", + "b_digits#0", + "i#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "a_digit#0", + "b_digit#0" + ] + }, + "692": { + "op": "b+", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "sum#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum#0" + ] + }, + "693": { + "op": "pushint 65 // 65", + "defined_out": [ + "65", + "a_digits#0", + "b_digits#0", + "i#0", + "sum#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum#0", + "65" + ] + }, + "695": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "sum_bytes#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0" + ] + }, + "698": { + "op": "dup", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "sum_bytes#0", + "sum_bytes#0 (copy)" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_bytes#0 (copy)" + ] + }, + "699": { + "op": "extract 0 1", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "sum_bytes#0", + "tmp%7#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "tmp%7#0" + ] + }, + "702": { + "op": "btoi", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "sum_bytes#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0" + ] + }, + "703": { + "op": "dig 1", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "sum_bytes#0 (copy)" + ] + }, + "705": { + "op": "len", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "length%0#0", + "sum_bytes#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "length%0#0" + ] + }, + "706": { + "op": "intc_0 // 1", + "defined_out": [ + "1", + "a_digits#0", + "b_digits#0", + "i#0", + "length%0#0", + "sum_bytes#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "length%0#0", + "1" + ] + }, + "707": { + "op": "dig 1", + "defined_out": [ + "1", + "a_digits#0", + "b_digits#0", + "i#0", + "length%0#0", + "length%0#0 (copy)", + "sum_bytes#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "length%0#0", + "1", + "length%0#0 (copy)" + ] + }, + "709": { + "op": ">=", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "is_out_of_bounds%0#0", + "length%0#0", + "sum_bytes#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "length%0#0", + "is_out_of_bounds%0#0" + ] + }, + "710": { + "op": "intc_0 // 1", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "length%0#0", + "is_out_of_bounds%0#0", + "1" + ] + }, + "711": { + "op": "dig 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "length%0#0", + "is_out_of_bounds%0#0", + "1", + "length%0#0 (copy)" + ] + }, + "713": { + "op": "uncover 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "length%0#0", + "1", + "length%0#0 (copy)", + "is_out_of_bounds%0#0" + ] + }, + "715": { + "op": "select", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "bounded_index%0#0", + "i#0", + "length%0#0", + "sum_bytes#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_bytes#0", + "sum_carry#0", + "length%0#0", + "bounded_index%0#0" + ] + }, + "716": { + "op": "uncover 3", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "length%0#0", + "bounded_index%0#0", + "sum_bytes#0" + ] + }, + "718": { + "op": "swap", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "length%0#0", + "sum_bytes#0", + "bounded_index%0#0" + ] + }, + "719": { + "op": "uncover 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "sum_bytes#0", + "bounded_index%0#0", + "length%0#0" + ] + }, + "721": { + "op": "substring3", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "i#0", + "reinterpret_biguint%2#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "reinterpret_biguint%2#0" + ] + }, + "722": { + "op": "frame_dig 5", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "i#0", + "reinterpret_biguint%2#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "reinterpret_biguint%2#0", + "carry#0" + ] + }, + "724": { + "op": "itob", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "i#0", + "reinterpret_biguint%2#0", + "sum_carry#0", + "tmp%8#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "reinterpret_biguint%2#0", + "tmp%8#0" + ] + }, + "725": { + "op": "b+", + "defined_out": [ + "a_digits#0", + "ab_carry#0", + "b_digits#0", + "carry#0", + "i#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry#0" + ] + }, + "726": { + "op": "pushint 65 // 65", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry#0", + "65" + ] + }, + "728": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "a_digits#0", + "ab_carry_bytes#0", + "b_digits#0", + "carry#0", + "i#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0" + ] + }, + "731": { + "op": "dup", + "defined_out": [ + "a_digits#0", + "ab_carry_bytes#0", + "ab_carry_bytes#0 (copy)", + "b_digits#0", + "carry#0", + "i#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_bytes#0 (copy)" + ] + }, + "732": { + "op": "extract 0 1", + "defined_out": [ + "a_digits#0", + "ab_carry_bytes#0", + "b_digits#0", + "carry#0", + "i#0", + "sum_carry#0", + "tmp%10#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "tmp%10#0" + ] + }, + "735": { + "op": "btoi", + "defined_out": [ + "a_digits#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "b_digits#0", + "carry#0", + "i#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0" + ] + }, + "736": { + "op": "dig 1", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "ab_carry_bytes#0 (copy)" + ] + }, + "738": { + "op": "len", + "defined_out": [ + "a_digits#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "b_digits#0", + "carry#0", + "i#0", + "length%1#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "length%1#0" + ] + }, + "739": { + "op": "intc_0 // 1", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "length%1#0", + "1" + ] + }, + "740": { + "op": "dig 1", + "defined_out": [ + "1", + "a_digits#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "b_digits#0", + "carry#0", + "i#0", + "length%1#0", + "length%1#0 (copy)", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "length%1#0", + "1", + "length%1#0 (copy)" + ] + }, + "742": { + "op": ">=", + "defined_out": [ + "a_digits#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "b_digits#0", + "carry#0", + "i#0", + "is_out_of_bounds%1#0", + "length%1#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "length%1#0", + "is_out_of_bounds%1#0" + ] + }, + "743": { + "op": "intc_0 // 1", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "length%1#0", + "is_out_of_bounds%1#0", + "1" + ] + }, + "744": { + "op": "dig 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "length%1#0", + "is_out_of_bounds%1#0", + "1", + "length%1#0 (copy)" + ] + }, + "746": { + "op": "uncover 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "length%1#0", + "1", + "length%1#0 (copy)", + "is_out_of_bounds%1#0" + ] + }, + "748": { + "op": "select", + "defined_out": [ + "a_digits#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "b_digits#0", + "bounded_index%1#0", + "carry#0", + "i#0", + "length%1#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_bytes#0", + "ab_carry_carry#0", + "length%1#0", + "bounded_index%1#0" + ] + }, + "749": { + "op": "uncover 3", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_carry#0", + "length%1#0", + "bounded_index%1#0", + "ab_carry_bytes#0" + ] + }, + "751": { + "op": "swap", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_carry#0", + "length%1#0", + "ab_carry_bytes#0", + "bounded_index%1#0" + ] + }, + "752": { + "op": "uncover 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_carry#0", + "ab_carry_bytes#0", + "bounded_index%1#0", + "length%1#0" + ] + }, + "754": { + "op": "substring3", + "defined_out": [ + "a_digits#0", + "ab_carry_carry#0", + "b_digits#0", + "carry#0", + "i#0", + "sum_carry#0", + "tmp%11#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_carry#0", + "tmp%11#0" + ] + }, + "755": { + "op": "frame_dig 4", + "defined_out": [ + "a_digits#0", + "ab_carry_carry#0", + "b_digits#0", + "carry#0", + "i#0", + "result#0", + "sum_carry#0", + "tmp%11#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_carry#0", + "tmp%11#0", + "result#0" + ] + }, + "757": { + "op": "concat", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_carry#0", + "result#0" + ] + }, + "758": { + "op": "dup", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_carry#0", + "result#0", + "result#0" + ] + }, + "759": { + "op": "frame_bury 4", + "defined_out": [ + "a_digits#0", + "ab_carry_carry#0", + "b_digits#0", + "carry#0", + "i#0", + "result#0", + "sum_carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "ab_carry_carry#0", + "result#0" + ] + }, + "761": { + "op": "swap", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "sum_carry#0", + "result#0", + "ab_carry_carry#0" + ] + }, + "762": { + "op": "uncover 2", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "result#0", + "ab_carry_carry#0", + "sum_carry#0" + ] + }, + "764": { + "op": "+", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "result#0", + "carry#0" + ] + }, + "765": { + "op": "dup", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "result#0", + "carry#0", + "carry#0" + ] + }, + "766": { + "op": "frame_bury 5", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "i#0", + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "result#0", + "carry#0" + ] + }, + "768": { + "op": "frame_bury 7" + }, + "770": { + "op": "frame_bury 6", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "carry#9", + "i#0", + "result#0", + "result#9" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0" + ] + }, + "772": { + "op": "bz add_after_for@5", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ] + }, + "775": { + "op": "frame_dig 0", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0" + ] + }, + "777": { + "op": "intc_0 // 1", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0", + "1" + ] + }, + "778": { + "op": "-", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "i#0" + ] + }, + "779": { + "op": "frame_bury 0", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "carry#0", + "carry#9", + "i#0", + "result#0", + "result#9" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ] + }, + "781": { + "op": "b add_for_body@2" + }, + "784": { + "block": "add_after_for@5", + "stack_in": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ], + "op": "frame_dig 6", + "defined_out": [ + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "result#0" + ] + }, + "786": { + "op": "frame_bury 4", + "defined_out": [ + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ] + }, + "788": { + "op": "frame_dig 7", + "defined_out": [ + "carry#0", + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "carry#0" + ] + }, + "790": { + "op": "dup", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "carry#0", + "carry#0" + ] + }, + "791": { + "op": "frame_bury 5", + "defined_out": [ + "carry#0", + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "carry#0" + ] + }, + "793": { + "op": "bnz add_after_if_else@7", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ] + }, + "796": { + "op": "frame_dig 4", + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "result#0" + ] + }, + "798": { + "op": "frame_bury 0" + }, + "800": { + "retsub": true, + "op": "retsub" + }, + "801": { + "block": "add_after_if_else@7", + "stack_in": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9" + ], + "op": "frame_dig 5", + "defined_out": [ + "carry#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "carry#0" + ] + }, + "803": { + "op": "itob", + "defined_out": [ + "carry#0", + "tmp%13#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "tmp%13#0" + ] + }, + "804": { + "op": "extract 7 1", + "defined_out": [ + "carry#0", + "carry_bytes#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "carry_bytes#0" + ] + }, + "807": { + "op": "frame_dig 4", + "defined_out": [ + "carry#0", + "carry_bytes#0", + "result#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "carry_bytes#0", + "result#0" + ] + }, + "809": { + "op": "concat", + "defined_out": [ + "carry#0", + "result#0", + "tmp%14#0" + ], + "stack_out": [ + "i#0", + "a_digits#0", + "b_digits#0", + "n#0", + "result#0", + "carry#0", + "result#9", + "carry#9", + "tmp%14#0" + ] + }, + "810": { + "op": "frame_bury 0" + }, + "812": { + "retsub": true, + "op": "retsub" + }, + "813": { + "subroutine": "puya_bignumber.bignumber.subtract", + "params": { + "a#0": "bytes", + "b#0": "bytes" + }, + "block": "subtract", + "stack_in": [], + "op": "proto 2 1" + }, + "816": { + "op": "intc_2 // 0", + "stack_out": [ + "tmp%3#0" + ] + }, + "817": { + "op": "bytec_0 // \"\"", + "stack_out": [ + "tmp%3#0", + "tmp%2#0" + ] + }, + "818": { + "op": "frame_dig -2", + "defined_out": [ + "a#0 (copy)" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "a#0 (copy)" + ] + }, + "820": { + "op": "len", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ] + }, + "821": { + "op": "dup", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%0#0" + ] + }, + "822": { + "op": "bz subtract_if_body@2", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ] + }, + "825": { + "op": "frame_dig -1", + "defined_out": [ + "b#0 (copy)", + "tmp%0#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "b#0 (copy)" + ] + }, + "827": { + "op": "len", + "defined_out": [ + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%2#0" + ] + }, + "828": { + "op": "dup", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%2#0", + "tmp%2#0" + ] + }, + "829": { + "op": "frame_bury 1", + "defined_out": [ + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%2#0" + ] + }, + "831": { + "op": "bzero", + "defined_out": [ + "tmp%0#0", + "tmp%2#0", + "tmp%3#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%3#0" + ] + }, + "832": { + "op": "dup", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%3#0", + "tmp%3#0" + ] + }, + "833": { + "op": "frame_bury 0", + "defined_out": [ + "tmp%0#0", + "tmp%2#0", + "tmp%3#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%3#0" + ] + }, + "835": { + "op": "frame_dig -2", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%3#0", + "a#0 (copy)" + ] + }, + "837": { + "op": "==", + "defined_out": [ + "tmp%0#0", + "tmp%2#0", + "tmp%3#0", + "tmp%4#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%4#0" + ] + }, + "838": { + "op": "bz subtract_after_if_else@3", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ] + }, + "841": { + "block": "subtract_if_body@2", + "stack_in": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ], + "op": "frame_dig -2", + "defined_out": [ + "a#0 (copy)" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a#0 (copy)" + ] + }, + "843": { + "op": "frame_bury 0" + }, + "845": { + "retsub": true, + "op": "retsub" + }, + "846": { + "block": "subtract_after_if_else@3", + "stack_in": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ], + "op": "frame_dig 1", + "defined_out": [ + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%2#0" + ] + }, + "848": { + "op": "bz subtract_if_body@5", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ] + }, + "851": { + "op": "frame_dig -1", + "defined_out": [ + "b#0 (copy)", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "b#0 (copy)" + ] + }, + "853": { + "op": "frame_dig 0", + "defined_out": [ + "b#0 (copy)", + "tmp%2#0", + "tmp%3#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "b#0 (copy)", + "tmp%3#0" + ] + }, + "855": { + "op": "==", + "defined_out": [ + "tmp%2#0", + "tmp%3#0", + "tmp%9#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%9#0" + ] + }, + "856": { + "op": "bz subtract_after_if_else@6", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ] + }, + "859": { + "block": "subtract_if_body@5", + "stack_in": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ], + "op": "frame_dig -2", + "defined_out": [ + "a#0 (copy)" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a#0 (copy)" + ] + }, + "861": { + "op": "frame_bury 0" + }, + "863": { + "retsub": true, + "op": "retsub" + }, + "864": { + "block": "subtract_after_if_else@6", + "stack_in": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0" + ], + "op": "frame_dig 2", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%0#0" + ] + }, + "866": { + "op": "frame_dig 1", + "defined_out": [ + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%0#0", + "tmp%2#0" + ] + }, + "868": { + "callsub": "puya_bignumber.common.max_value", + "op": "callsub max_value", + "defined_out": [ + "tmp%0#0", + "tmp%12#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%12#0" + ] + }, + "871": { + "op": "intc_1 // 64", + "defined_out": [ + "64", + "tmp%0#0", + "tmp%12#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%12#0", + "64" + ] + }, + "872": { + "callsub": "puya_bignumber.common.enclosing_multiple", + "op": "callsub enclosing_multiple", + "defined_out": [ + "length#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "length#0" + ] + }, + "875": { + "op": "frame_dig -2", + "defined_out": [ + "a#0 (copy)", + "length#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "length#0", + "a#0 (copy)" + ] + }, + "877": { + "op": "dig 1", + "defined_out": [ + "a#0 (copy)", + "length#0", + "length#0 (copy)", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "length#0", + "a#0 (copy)", + "length#0 (copy)" + ] + }, + "879": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "a_digits#0", + "length#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "length#0", + "a_digits#0" + ] + }, + "882": { + "op": "frame_dig -1", + "defined_out": [ + "a_digits#0", + "b#0 (copy)", + "length#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "length#0", + "a_digits#0", + "b#0 (copy)" + ] + }, + "884": { + "op": "uncover 2", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_digits#0", + "b#0 (copy)", + "length#0" + ] + }, + "886": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "a_digits#0", + "b_digits#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_digits#0", + "b_digits#0" + ] + }, + "889": { + "op": "b~", + "defined_out": [ + "a_digits#0", + "ones_complement#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_digits#0", + "ones_complement#0" + ] + }, + "890": { + "op": "intc_0 // 1", + "defined_out": [ + "1", + "a_digits#0", + "ones_complement#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_digits#0", + "ones_complement#0", + "1" + ] + }, + "891": { + "op": "itob", + "defined_out": [ + "a_digits#0", + "ones_complement#0", + "tmp%0#0", + "tmp%13#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_digits#0", + "ones_complement#0", + "tmp%13#0" + ] + }, + "892": { + "callsub": "puya_bignumber.bignumber.add", + "op": "callsub add", + "defined_out": [ + "a_digits#0", + "tmp%0#0", + "tmp%2#0", + "twos_complement#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_digits#0", + "twos_complement#0" + ] + }, + "895": { + "callsub": "puya_bignumber.bignumber.add", + "op": "callsub add", + "defined_out": [ + "a_inv_b#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0" + ] + }, + "898": { + "op": "dup", + "defined_out": [ + "a_inv_b#0", + "a_inv_b#0 (copy)", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "a_inv_b#0 (copy)" + ] + }, + "899": { + "op": "len", + "defined_out": [ + "a_inv_b#0", + "length%0#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "length%0#0" + ] + }, + "900": { + "op": "intc_0 // 1", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "length%0#0", + "1" + ] + }, + "901": { + "op": "dig 1", + "defined_out": [ + "1", + "a_inv_b#0", + "length%0#0", + "length%0#0 (copy)", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "length%0#0", + "1", + "length%0#0 (copy)" + ] + }, + "903": { + "op": ">=", + "defined_out": [ + "a_inv_b#0", + "is_out_of_bounds%0#0", + "length%0#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "length%0#0", + "is_out_of_bounds%0#0" + ] + }, + "904": { + "op": "intc_0 // 1", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "length%0#0", + "is_out_of_bounds%0#0", + "1" + ] + }, + "905": { + "op": "dig 2", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "length%0#0", + "is_out_of_bounds%0#0", + "1", + "length%0#0 (copy)" + ] + }, + "907": { + "op": "uncover 2", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "length%0#0", + "1", + "length%0#0 (copy)", + "is_out_of_bounds%0#0" + ] + }, + "909": { + "op": "select", + "defined_out": [ + "a_inv_b#0", + "bounded_index%0#0", + "length%0#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "length%0#0", + "bounded_index%0#0" + ] + }, + "910": { + "op": "swap", + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "a_inv_b#0", + "bounded_index%0#0", + "length%0#0" + ] + }, + "911": { + "op": "substring3", + "defined_out": [ + "tmp%0#0", + "tmp%14#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%3#0", + "tmp%2#0", + "tmp%0#0", + "tmp%14#0" + ] + }, + "912": { + "op": "frame_bury 0" + }, + "914": { + "retsub": true, + "op": "retsub" + }, + "915": { + "subroutine": "puya_bignumber.bignumber.equal", + "params": { + "a#0": "bytes", + "b#0": "bytes" + }, + "block": "equal", + "stack_in": [], + "op": "proto 2 1" + }, + "918": { + "op": "frame_dig -2", + "defined_out": [ + "a#0 (copy)" + ], + "stack_out": [ + "a#0 (copy)" + ] + }, + "920": { + "op": "len", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "921": { + "op": "frame_dig -1", + "defined_out": [ + "b#0 (copy)", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "b#0 (copy)" + ] + }, + "923": { + "op": "len", + "defined_out": [ + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "tmp%0#0", + "tmp%1#0" + ] + }, + "924": { + "callsub": "puya_bignumber.common.max_value", + "op": "callsub max_value", + "defined_out": [ + "length#0" + ], + "stack_out": [ + "length#0" + ] + }, + "927": { + "op": "frame_dig -2", + "stack_out": [ + "length#0", + "a#0 (copy)" + ] + }, + "929": { + "op": "dig 1", + "defined_out": [ + "a#0 (copy)", + "length#0", + "length#0 (copy)" + ], + "stack_out": [ + "length#0", + "a#0 (copy)", + "length#0 (copy)" + ] + }, + "931": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "length#0", + "padded_a#0" + ], + "stack_out": [ + "length#0", + "padded_a#0" + ] + }, + "934": { + "op": "frame_dig -1", + "stack_out": [ + "length#0", + "padded_a#0", + "b#0 (copy)" + ] + }, + "936": { + "op": "uncover 2", + "stack_out": [ + "padded_a#0", + "b#0 (copy)", + "length#0" + ] + }, + "938": { + "callsub": "puya_bignumber.common.pad", + "op": "callsub pad", + "defined_out": [ + "padded_a#0", + "padded_b#0" + ], + "stack_out": [ + "padded_a#0", + "padded_b#0" + ] + }, + "941": { + "op": "==", + "defined_out": [ + "tmp%2#0" + ], + "stack_out": [ + "tmp%2#0" + ] + }, + "942": { + "retsub": true, + "op": "retsub" + }, + "943": { + "subroutine": "puya_bignumber.bignumber.modexp_barrett_reduce_post_validation", + "params": { + "base#0": "bytes", + "exp#0": "bytes", + "mod#0": "bytes", + "precomputed_factor#0": "bytes" + }, + "block": "modexp_barrett_reduce_post_validation", + "stack_in": [], + "op": "proto 4 1" + }, + "946": { + "op": "bytec_0 // \"\"", + "stack_out": [ + "bit_i#0" + ] + }, + "947": { + "op": "intc_0 // 1", + "defined_out": [ + "1" + ], + "stack_out": [ + "bit_i#0", + "1" + ] + }, + "948": { + "op": "itob", + "defined_out": [ + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0" + ] + }, + "949": { + "op": "dup", + "defined_out": [ + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0" + ] + }, + "950": { + "op": "frame_dig -4", + "defined_out": [ + "base#0 (copy)", + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0", + "base#0 (copy)" + ] + }, + "952": { + "op": "frame_dig -2", + "defined_out": [ + "base#0 (copy)", + "mod#0 (copy)", + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0", + "base#0 (copy)", + "mod#0 (copy)" + ] + }, + "954": { + "op": "frame_dig -1", + "defined_out": [ + "base#0 (copy)", + "mod#0 (copy)", + "precomputed_factor#0 (copy)", + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0", + "base#0 (copy)", + "mod#0 (copy)", + "precomputed_factor#0 (copy)" + ] + }, + "956": { + "callsub": "puya_bignumber.bignumber._calc_mod_barrett_reduce", + "op": "callsub _calc_mod_barrett_reduce", + "defined_out": [ + "base#0", + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0", + "base#0" + ] + }, + "959": { + "op": "frame_bury -4", + "stack_out": [ + "bit_i#0", + "result#0", + "result#0" + ] + }, + "961": { + "op": "frame_dig -3", + "defined_out": [ + "exp#0 (copy)", + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0", + "exp#0 (copy)" + ] + }, + "963": { + "op": "len", + "defined_out": [ + "result#0", + "tmp%0#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0", + "tmp%0#0" + ] + }, + "964": { + "op": "pushint 8 // 8", + "defined_out": [ + "8", + "result#0", + "tmp%0#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0", + "tmp%0#0", + "8" + ] + }, + "966": { + "op": "*", + "defined_out": [ + "result#0", + "tmp%1#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "result#0", + "tmp%1#0" + ] + }, + "967": { + "op": "dup" + }, + "968": { + "op": "uncover 2", + "defined_out": [ + "result#0", + "result#10", + "tmp%1#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "tmp%1#0", + "result#10" + ] + }, + "970": { + "op": "swap", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%1#0" + ] + }, + "971": { + "op": "bz modexp_barrett_reduce_post_validation_after_for@7", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ] + }, + "974": { + "op": "frame_dig 2", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%1#0" + ] + }, + "976": { + "op": "intc_0 // 1", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%1#0", + "1" + ] + }, + "977": { + "op": "-", + "defined_out": [ + "range_length_minus_one%0#0", + "result#0", + "result#10", + "tmp%1#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "range_length_minus_one%0#0" + ] + }, + "978": { + "op": "intc_0 // 1", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "range_length_minus_one%0#0", + "1" + ] + }, + "979": { + "op": "/", + "defined_out": [ + "bit_i#0", + "result#0", + "result#10", + "tmp%1#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "bit_i#0" + ] + }, + "980": { + "op": "frame_bury 0", + "defined_out": [ + "bit_i#0", + "result#0", + "result#10", + "tmp%1#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ] + }, + "982": { + "block": "modexp_barrett_reduce_post_validation_for_body@2", + "stack_in": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ], + "op": "frame_dig -3", + "defined_out": [ + "exp#0 (copy)" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "exp#0 (copy)" + ] + }, + "984": { + "op": "frame_dig 0", + "defined_out": [ + "bit_i#0", + "exp#0 (copy)" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "exp#0 (copy)", + "bit_i#0" + ] + }, + "986": { + "op": "getbit", + "defined_out": [ + "bit#0", + "bit_i#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "bit#0" + ] + }, + "987": { + "op": "intc_0 // 1", + "defined_out": [ + "1", + "bit#0", + "bit_i#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "bit#0", + "1" + ] + }, + "988": { + "op": "==", + "defined_out": [ + "bit_i#0", + "tmp%2#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%2#0" + ] + }, + "989": { + "op": "frame_dig 1", + "defined_out": [ + "bit_i#0", + "result#10", + "tmp%2#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%2#0", + "result#10" + ] + }, + "991": { + "op": "frame_bury 3", + "defined_out": [ + "bit_i#0", + "result#10", + "tmp%2#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%2#0" + ] + }, + "993": { + "op": "bz modexp_barrett_reduce_post_validation_after_if_else@4", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ] + }, + "996": { + "op": "frame_dig 1", + "defined_out": [ + "bit_i#0", + "result#0", + "result#10" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0" + ] + }, + "998": { + "op": "frame_dig -4", + "defined_out": [ + "base#0 (copy)", + "bit_i#0", + "result#0", + "result#10" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0", + "base#0 (copy)" + ] + }, + "1000": { + "callsub": "puya_bignumber.bignumber.multiply", + "op": "callsub multiply", + "defined_out": [ + "bit_i#0", + "result#0", + "result#10", + "tmp%3#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%3#0" + ] + }, + "1003": { + "op": "frame_dig -2", + "defined_out": [ + "bit_i#0", + "mod#0 (copy)", + "result#0", + "result#10", + "tmp%3#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%3#0", + "mod#0 (copy)" + ] + }, + "1005": { + "op": "frame_dig -1", + "defined_out": [ + "bit_i#0", + "mod#0 (copy)", + "precomputed_factor#0 (copy)", + "result#0", + "result#10", + "tmp%3#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "tmp%3#0", + "mod#0 (copy)", + "precomputed_factor#0 (copy)" + ] + }, + "1007": { + "callsub": "puya_bignumber.bignumber._calc_mod_barrett_reduce", + "op": "callsub _calc_mod_barrett_reduce", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#10" + ] + }, + "1010": { + "op": "frame_bury 3", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ] + }, + "1012": { + "block": "modexp_barrett_reduce_post_validation_after_if_else@4", + "stack_in": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ], + "op": "frame_dig 3", + "defined_out": [ + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0" + ] + }, + "1014": { + "op": "dup", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0", + "result#0" + ] + }, + "1015": { + "op": "frame_bury 1", + "defined_out": [ + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0" + ] + }, + "1017": { + "op": "frame_dig -4", + "defined_out": [ + "base#0 (copy)", + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0", + "base#0 (copy)" + ] + }, + "1019": { + "op": "dup", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0", + "base#0 (copy)", + "base#0 (copy)" + ] + }, + "1020": { + "callsub": "puya_bignumber.bignumber.multiply", + "op": "callsub multiply", + "defined_out": [ + "result#0", + "tmp%4#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0", + "tmp%4#0" + ] + }, + "1023": { + "op": "frame_dig -2", + "defined_out": [ + "mod#0 (copy)", + "result#0", + "tmp%4#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0", + "tmp%4#0", + "mod#0 (copy)" + ] + }, + "1025": { + "op": "frame_dig -1", + "defined_out": [ + "mod#0 (copy)", + "precomputed_factor#0 (copy)", + "result#0", + "tmp%4#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0", + "tmp%4#0", + "mod#0 (copy)", + "precomputed_factor#0 (copy)" + ] + }, + "1027": { + "callsub": "puya_bignumber.bignumber._calc_mod_barrett_reduce", + "op": "callsub _calc_mod_barrett_reduce", + "defined_out": [ + "base#0", + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0", + "base#0" + ] + }, + "1030": { + "op": "frame_bury -4", + "defined_out": [ + "result#0", + "result#10" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#10" + ] + }, + "1032": { + "op": "frame_bury 3", + "defined_out": [ + "result#0", + "result#10" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ] + }, + "1034": { + "op": "frame_dig 0", + "defined_out": [ + "bit_i#0", + "result#0", + "result#10" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "bit_i#0" + ] + }, + "1036": { + "op": "bz modexp_barrett_reduce_post_validation_after_for@7", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ] + }, + "1039": { + "op": "frame_dig 0", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "bit_i#0" + ] + }, + "1041": { + "op": "intc_0 // 1", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "bit_i#0", + "1" + ] + }, + "1042": { + "op": "-", + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "bit_i#0" + ] + }, + "1043": { + "op": "frame_bury 0", + "defined_out": [ + "bit_i#0", + "result#0", + "result#10" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ] + }, + "1045": { + "op": "b modexp_barrett_reduce_post_validation_for_body@2" + }, + "1048": { + "block": "modexp_barrett_reduce_post_validation_after_for@7", + "stack_in": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10" + ], + "op": "frame_dig 3", + "defined_out": [ + "result#0" + ], + "stack_out": [ + "bit_i#0", + "result#0", + "tmp%1#0", + "result#10", + "result#0" + ] + }, + "1050": { + "op": "frame_bury 0" + }, + "1052": { + "retsub": true, + "op": "retsub" + }, + "1053": { + "subroutine": "puya_bignumber.bignumber._calc_mod_barrett_reduce", + "params": { + "a#0": "bytes", + "mod#0": "bytes", + "precomputed_factor#0": "bytes" + }, + "block": "_calc_mod_barrett_reduce", + "stack_in": [], + "op": "proto 3 1" + }, + "1056": { + "op": "frame_dig -2", + "defined_out": [ + "mod#0 (copy)" + ], + "stack_out": [ + "mod#0 (copy)" + ] + }, + "1058": { + "op": "len", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0" + ] + }, + "1059": { + "op": "dup", + "defined_out": [ + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "tmp%0#0" + ] + }, + "1060": { + "op": "intc_3 // 2", + "defined_out": [ + "2", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "tmp%0#0", + "2" + ] + }, + "1061": { + "op": "*", + "defined_out": [ + "shift#0", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "shift#0" + ] + }, + "1062": { + "op": "frame_dig -3", + "defined_out": [ + "a#0 (copy)", + "shift#0", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "shift#0", + "a#0 (copy)" + ] + }, + "1064": { + "op": "frame_dig -1", + "defined_out": [ + "a#0 (copy)", + "precomputed_factor#0 (copy)", + "shift#0", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "shift#0", + "a#0 (copy)", + "precomputed_factor#0 (copy)" + ] + }, + "1066": { + "callsub": "puya_bignumber.bignumber.multiply", + "op": "callsub multiply", + "defined_out": [ + "a_factor#0", + "shift#0", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "shift#0", + "a_factor#0" + ] + }, + "1069": { + "op": "dup", + "defined_out": [ + "a_factor#0", + "a_factor#0 (copy)", + "shift#0", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "shift#0", + "a_factor#0", + "a_factor#0 (copy)" + ] + }, + "1070": { + "op": "len", + "defined_out": [ + "a_factor#0", + "shift#0", + "tmp%0#0", + "tmp%1#0" + ], + "stack_out": [ + "tmp%0#0", + "shift#0", + "a_factor#0", + "tmp%1#0" + ] + }, + "1071": { + "op": "uncover 2", + "stack_out": [ + "tmp%0#0", + "a_factor#0", + "tmp%1#0", + "shift#0" + ] + }, + "1073": { + "op": "-", + "defined_out": [ + "a_factor#0", + "tmp%0#0", + "tmp%2#0" + ], + "stack_out": [ + "tmp%0#0", + "a_factor#0", + "tmp%2#0" + ] + }, + "1074": { + "op": "intc_2 // 0" + }, + "1075": { + "op": "swap", + "stack_out": [ + "tmp%0#0", + "a_factor#0", + "0", + "tmp%2#0" + ] + }, + "1076": { + "op": "extract3", + "defined_out": [ + "q#0", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "q#0" + ] + }, + "1077": { + "op": "frame_dig -2", + "stack_out": [ + "tmp%0#0", + "q#0", + "mod#0 (copy)" + ] + }, + "1079": { + "callsub": "puya_bignumber.bignumber.multiply", + "op": "callsub multiply", + "defined_out": [ + "tmp%0#0", + "tmp%3#0" + ], + "stack_out": [ + "tmp%0#0", + "tmp%3#0" + ] + }, + "1082": { + "op": "frame_dig -3", + "stack_out": [ + "tmp%0#0", + "tmp%3#0", + "a#0 (copy)" + ] + }, + "1084": { + "op": "swap", + "stack_out": [ + "tmp%0#0", + "a#0 (copy)", + "tmp%3#0" + ] + }, + "1085": { + "callsub": "puya_bignumber.bignumber.subtract", + "op": "callsub subtract", + "defined_out": [ + "r#0", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0" + ] + }, + "1088": { + "op": "dupn 2", + "defined_out": [ + "r#0", + "r#0 (copy)", + "tmp%0#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#0", + "r#0 (copy)" + ] + }, + "1090": { + "op": "frame_dig -2", + "stack_out": [ + "tmp%0#0", + "r#0", + "r#0", + "r#0 (copy)", + "mod#0 (copy)" + ] + }, + "1092": { + "callsub": "puya_bignumber.bignumber.less_than", + "op": "callsub less_than", + "defined_out": [ + "r#0", + "r#5", + "tmp%0#0", + "tmp%4#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "tmp%4#0" + ] + }, + "1095": { + "op": "bnz _calc_mod_barrett_reduce_after_if_else@2", + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5" + ] + }, + "1098": { + "op": "frame_dig 1", + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0" + ] + }, + "1100": { + "op": "frame_dig -2", + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0", + "mod#0 (copy)" + ] + }, + "1102": { + "callsub": "puya_bignumber.bignumber.subtract", + "op": "callsub subtract", + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#5" + ] + }, + "1105": { + "op": "frame_bury 2", + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5" + ] + }, + "1107": { + "block": "_calc_mod_barrett_reduce_after_if_else@2", + "stack_in": [ + "tmp%0#0", + "r#0", + "r#5" + ], + "op": "frame_dig 2", + "defined_out": [ + "r#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0" + ] + }, + "1109": { + "op": "dup", + "defined_out": [ + "r#0", + "r#0 (copy)" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0", + "r#0 (copy)" + ] + }, + "1110": { + "op": "len", + "defined_out": [ + "r#0", + "tmp%5#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0", + "tmp%5#0" + ] + }, + "1111": { + "op": "frame_dig 0", + "defined_out": [ + "r#0", + "tmp%0#0", + "tmp%5#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0", + "tmp%5#0", + "tmp%0#0" + ] + }, + "1113": { + "op": "dup", + "defined_out": [ + "r#0", + "tmp%0#0", + "tmp%0#0 (copy)", + "tmp%5#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0", + "tmp%5#0", + "tmp%0#0 (copy)", + "tmp%0#0 (copy)" + ] + }, + "1114": { + "op": "cover 2", + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0", + "tmp%0#0", + "tmp%5#0", + "tmp%0#0 (copy)" + ] + }, + "1116": { + "op": "-", + "defined_out": [ + "r#0", + "tmp%0#0", + "tmp%7#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0", + "tmp%0#0", + "tmp%7#0" + ] + }, + "1117": { + "op": "swap", + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "r#0", + "tmp%7#0", + "tmp%0#0" + ] + }, + "1118": { + "op": "extract3", + "defined_out": [ + "r#0", + "tmp%0#0", + "tmp%9#0" + ], + "stack_out": [ + "tmp%0#0", + "r#0", + "r#5", + "tmp%9#0" + ] + }, + "1119": { + "op": "frame_bury 0" + }, + "1121": { + "retsub": true, + "op": "retsub" + }, + "1122": { + "subroutine": "_puya_lib.util.ensure_budget", + "params": { + "required_budget#0": "uint64", + "fee_source#0": "uint64" + }, + "block": "ensure_budget", + "stack_in": [], + "op": "proto 2 0" + }, + "1125": { + "op": "frame_dig -2", + "defined_out": [ + "required_budget#0 (copy)" + ], + "stack_out": [ + "required_budget#0 (copy)" + ] + }, + "1127": { + "op": "pushint 10 // 10", + "defined_out": [ + "10", + "required_budget#0 (copy)" + ], + "stack_out": [ + "required_budget#0 (copy)", + "10" + ] + }, + "1129": { + "op": "+", + "defined_out": [ + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1130": { + "block": "ensure_budget_while_top@1", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "op": "frame_dig 0" + }, + "1132": { + "op": "global OpcodeBudget", + "defined_out": [ + "required_budget_with_buffer#0", + "tmp%0#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "required_budget_with_buffer#0", + "tmp%0#0" + ] + }, + "1134": { + "op": ">", + "defined_out": [ + "required_budget_with_buffer#0", + "tmp%1#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "tmp%1#0" + ] + }, + "1135": { + "op": "bz ensure_budget_after_while@7", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1138": { + "op": "itxn_begin" + }, + "1139": { + "op": "pushint 6 // appl", + "defined_out": [ + "appl", + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "appl" + ] + }, + "1141": { + "op": "itxn_field TypeEnum", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1143": { + "op": "pushint 5 // DeleteApplication", + "defined_out": [ + "DeleteApplication", + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "DeleteApplication" + ] + }, + "1145": { + "op": "itxn_field OnCompletion", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1147": { + "op": "bytec_1 // 0x068101", + "defined_out": [ + "0x068101", + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "0x068101" + ] + }, + "1148": { + "op": "itxn_field ApprovalProgram", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1150": { + "op": "bytec_1 // 0x068101", + "stack_out": [ + "required_budget_with_buffer#0", + "0x068101" + ] + }, + "1151": { + "op": "itxn_field ClearStateProgram", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1153": { + "op": "frame_dig -1", + "defined_out": [ + "fee_source#0 (copy)", + "required_budget_with_buffer#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "fee_source#0 (copy)" + ] + }, + "1155": { + "op": "switch ensure_budget_switch_case_0@3 ensure_budget_switch_case_1@4", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1161": { + "op": "b ensure_budget_switch_case_next@6" + }, + "1164": { + "block": "ensure_budget_switch_case_0@3", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "op": "intc_2 // 0", + "defined_out": [ + "0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "0" + ] + }, + "1165": { + "op": "itxn_field Fee", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1167": { + "op": "b ensure_budget_switch_case_next@6" + }, + "1170": { + "block": "ensure_budget_switch_case_1@4", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "op": "global MinTxnFee", + "defined_out": [ + "tmp%2#0" + ], + "stack_out": [ + "required_budget_with_buffer#0", + "tmp%2#0" + ] + }, + "1172": { + "op": "itxn_field Fee", + "stack_out": [ + "required_budget_with_buffer#0" + ] + }, + "1174": { + "block": "ensure_budget_switch_case_next@6", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "op": "itxn_submit" + }, + "1175": { + "op": "b ensure_budget_while_top@1" + }, + "1178": { + "block": "ensure_budget_after_while@7", + "stack_in": [ + "required_budget_with_buffer#0" + ], + "retsub": true, + "op": "retsub" + } + } +} diff --git a/sampleWorkspace/puya_third_parties/contract.py b/sampleWorkspace/puya_third_parties/contract.py new file mode 100644 index 0000000..afe6352 --- /dev/null +++ b/sampleWorkspace/puya_third_parties/contract.py @@ -0,0 +1,16 @@ +from algopy import Bytes, OpUpFeeSource, arc4, ensure_budget +from puya_rsa import pkcs1_v15_verify + + +class RSATester(arc4.ARC4Contract): + @arc4.abimethod() + def pkcs1_v15_verify( + self, + msg_digest_info: Bytes, + s: Bytes, + n: Bytes, + e: Bytes, + barrett_reduction_factor: Bytes, + ) -> None: + ensure_budget(20000, fee_source=OpUpFeeSource.GroupCredit) + pkcs1_v15_verify(msg_digest_info, s, n, e, barrett_reduction_factor) diff --git a/sampleWorkspace/puya_third_parties/simulate-response.json b/sampleWorkspace/puya_third_parties/simulate-response.json new file mode 100644 index 0000000..e7cb988 --- /dev/null +++ b/sampleWorkspace/puya_third_parties/simulate-response.json @@ -0,0 +1,161432 @@ +{ + "eval-overrides": { + "allow-empty-signatures": true, + "max-log-calls": 2048, + "max-log-size": 65536 + }, + "exec-trace-config": { + "enable": true, + "scratch-change": true, + "stack-change": true + }, + "last-round": 12, + "txn-groups": [ + { + "app-budget-added": 21000, + "app-budget-consumed": 17792, + "failed-at": [0], + "failure-message": "transaction P3P4VSRY4AFU26FME2IHNGV23JOQ2NT7FWTRHPH6SPKR7PRIV57A: logic eval error: assert failed pc=169. Details: app=1013, pc=169, opcodes=dig 3; <=; assert", + "txn-results": [ + { + "app-budget-consumed": 17792, + "exec-trace": { + "approval-program-hash": "sHHTmOJCdECH2FtRp7ukCKBX/bhw3MhiwEVLw5lakig=", + "approval-program-trace": [ + { + "pc": 1 + }, + { + "pc": 7 + }, + { + "pc": 14 + }, + { + "pc": 18 + }, + { + "pc": 21, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 23, + "stack-pop-count": 1 + }, + { + "pc": 26, + "stack-additions": [ + { + "bytes": "BkVrVw==", + "type": 1 + } + ] + }, + { + "pc": 32, + "stack-additions": [ + { + "bytes": "BkVrVw==", + "type": 1 + } + ] + }, + { + "pc": 35, + "stack-pop-count": 2 + }, + { + "pc": 41, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 43, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 44, + "stack-pop-count": 1 + }, + { + "pc": 45, + "stack-additions": [ + { + "type": 2, + "uint": 1013 + } + ] + }, + { + "pc": 47, + "stack-pop-count": 1 + }, + { + "pc": 48, + "stack-additions": [ + { + "bytes": "AAFh", + "type": 1 + } + ] + }, + { + "pc": 51, + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 54, + "stack-additions": [ + { + "bytes": "AAFi", + "type": 1 + } + ] + }, + { + "pc": 57, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 60, + "stack-additions": [ + { + "bytes": "AAFj", + "type": 1 + } + ] + }, + { + "pc": 63, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 66, + "stack-additions": [ + { + "bytes": "AAFk", + "type": 1 + } + ] + }, + { + "pc": 69, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 72, + "stack-additions": [ + { + "bytes": "AAFl", + "type": 1 + } + ] + }, + { + "pc": 75, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 78 + }, + { + "pc": 96 + }, + { + "pc": 99, + "stack-additions": [ + { + "type": 2, + "uint": 20000 + } + ] + }, + { + "pc": 103, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 104 + }, + { + "pc": 1122 + }, + { + "pc": 1125, + "stack-additions": [ + { + "type": 2, + "uint": 20000 + } + ] + }, + { + "pc": 1127, + "stack-additions": [ + { + "type": 2, + "uint": 10 + } + ] + }, + { + "pc": 1129, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 665 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [0], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 1344 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [1], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 2023 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [2], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 2702 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [3], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 3381 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [4], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 4060 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [5], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 4739 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [6], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 5418 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [7], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 6097 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [8], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 6776 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [9], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 7455 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [10], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 8134 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [11], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 8813 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [12], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 9492 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [13], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 10171 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [14], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 10850 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [15], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 11529 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [16], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 12208 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [17], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 12887 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [18], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 13566 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [19], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 14245 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [20], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 14924 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [21], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 15603 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [22], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 16282 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [23], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 16961 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [24], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 17640 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [25], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 18319 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [26], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 18998 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [27], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 19677 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1138 + }, + { + "pc": 1139, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1141, + "stack-pop-count": 1 + }, + { + "pc": 1143, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1145, + "stack-pop-count": 1 + }, + { + "pc": 1147, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1148, + "stack-pop-count": 1 + }, + { + "pc": 1150, + "stack-additions": [ + { + "bytes": "BoEB", + "type": 1 + } + ] + }, + { + "pc": 1151, + "stack-pop-count": 1 + }, + { + "pc": 1153, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1155, + "stack-pop-count": 1 + }, + { + "pc": 1164, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1165, + "stack-pop-count": 1 + }, + { + "pc": 1167 + }, + { + "pc": 1174, + "spawned-inners": [28], + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 20000 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1175 + }, + { + "pc": 1130, + "stack-additions": [ + { + "type": 2, + "uint": 20010 + } + ] + }, + { + "pc": 1132, + "stack-additions": [ + { + "type": 2, + "uint": 20356 + } + ] + }, + { + "pc": 1134, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1135, + "stack-pop-count": 1 + }, + { + "pc": 1178, + "stack-pop-count": 3 + }, + { + "pc": 107, + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + } + ] + }, + { + "pc": 109, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 111, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 113, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 115, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 117 + }, + { + "pc": 121 + }, + { + "pc": 124, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 126, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 127, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 129, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 130, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 132, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 133, + "stack-pop-count": 1 + }, + { + "pc": 134, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 136, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 138 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 284, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 285, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 287, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 141, + "stack-pop-count": 1 + }, + { + "pc": 142, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 144, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 146, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 148, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 150 + }, + { + "pc": 369 + }, + { + "pc": 372, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 374, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 376 + }, + { + "pc": 391 + }, + { + "pc": 394, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 396, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 397 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "Jkk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "Jkk=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "Jkk=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 400, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 402, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Jkk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 403 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Jkk=", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 327, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 329, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Jkk=", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Jkk=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Jkk=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Jkk=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 284, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 285, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmSQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 287, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 406, + "stack-pop-count": 1 + }, + { + "pc": 407, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 408, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 409, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 411, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 413 + }, + { + "pc": 915 + }, + { + "pc": 918, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 920, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 921, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 923, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 924 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 327, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 329, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 927, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 929, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 931 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 7 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAGM=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAGM=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 934, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 936, + "stack-additions": [ + { + "bytes": "AAAAAAAAAGM=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 938 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 941, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 942, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 416, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 417, + "stack-pop-count": 1 + }, + { + "pc": 418, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 419, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 420, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 422, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 423 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 327, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 329, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + }, + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + }, + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP////////////////////////////////////////////////////////////////////////////////////8=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "/////////////////////////////////////////////////////////////////////////////////////w==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 426, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 428, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 429, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 430 + }, + { + "pc": 915 + }, + { + "pc": 918, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 920, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 921, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 923, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 924 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 927, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 929, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 931 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 934, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 936, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 938 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 941, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 942, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 433, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 434, + "stack-pop-count": 1 + }, + { + "pc": 435, + "stack-pop-count": 2 + }, + { + "pc": 379, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 381, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 383, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 385, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 387 + }, + { + "pc": 943 + }, + { + "pc": 946, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 947, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 948, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 949, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 950, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 952, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 954, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 956 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "Jqo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "Jqo=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "Jqo=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "Jqo=", + "type": 1 + }, + { + "bytes": "Jqo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "Jqo=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 327, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 329, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 859, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 861, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 863, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 284, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 285, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 287, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 959, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 961, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 963, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 964, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 966, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 967, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 968, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 970, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 971, + "stack-pop-count": 1 + }, + { + "pc": 974, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 976, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 977, + "stack-additions": [ + { + "type": 2, + "uint": 7 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 978, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 979, + "stack-additions": [ + { + "type": 2, + "uint": 7 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 980, + "stack-additions": [ + { + "type": 2, + "uint": 7 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 982, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 984, + "stack-additions": [ + { + "type": 2, + "uint": 7 + } + ] + }, + { + "pc": 986, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 987, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 988, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 989, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 991, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 993, + "stack-pop-count": 1 + }, + { + "pc": 1012, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 1014, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1015, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1017, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 1019, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "bytes": "Yg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1020 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYg==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1023, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1025, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1027 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "Ds0U", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "Ds0U", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "Ds0U", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "Ds0U", + "type": 1 + }, + { + "bytes": "Ds0U", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "Ds0U", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "Dg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Dg==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Dg==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Dg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Dg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "BWo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "BWo=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "BWo=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + }, + { + "bytes": "BWo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "BWo=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "BWo=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "JYQ=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "BWo=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "bytes": "BWo=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "BWo=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "BWo=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFag==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFag==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+pY=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "IBo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "IBo=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "IBo=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlhA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6lg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "H7c=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "H7c=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "H7c=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7c=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAftw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1030, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 7 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 1032, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1034, + "stack-additions": [ + { + "type": 2, + "uint": 7 + } + ] + }, + { + "pc": 1036, + "stack-pop-count": 1 + }, + { + "pc": 1039, + "stack-additions": [ + { + "type": 2, + "uint": 7 + } + ] + }, + { + "pc": 1041, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1042, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1043, + "stack-additions": [ + { + "type": 2, + "uint": 6 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1045 + }, + { + "pc": 982, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 984, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 986, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 987, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 988, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 989, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 991, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 993, + "stack-pop-count": 1 + }, + { + "pc": 1012, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 1014, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1015, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1017, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 1019, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + }, + { + "bytes": "tw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1020 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtw==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1023, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1025, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1027 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "M5x1", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "M5x1", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "M5x1", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "M5x1", + "type": 1 + }, + { + "bytes": "M5x1", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "M5x1", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "Mw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Mw==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Mw==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Mw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Mw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMw==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "E7k=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "E7k=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "E7k=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + }, + { + "bytes": "E7k=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "E7k=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "E7k=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "gtE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "E7k=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "bytes": "E7k=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "E7k=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "E7k=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATuQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATuQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ec=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "bxg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "bxg=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "bxg=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACC0Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sRw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbxg=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "brU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "brU=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "brU=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbrU=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAButQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1030, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 6 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 1032, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1034, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1036, + "stack-pop-count": 1 + }, + { + "pc": 1039, + "stack-additions": [ + { + "type": 2, + "uint": 6 + } + ] + }, + { + "pc": 1041, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1042, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1043, + "stack-additions": [ + { + "type": 2, + "uint": 5 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1045 + }, + { + "pc": 982, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 984, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 986, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 987, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 988, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 989, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 991, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 993, + "stack-pop-count": 1 + }, + { + "pc": 996, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 998, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 1000 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1003, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1005, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1007 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "R2k=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "R2k=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "R2k=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "R2k=", + "type": 1 + }, + { + "bytes": "R2k=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "R2k=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 327, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 329, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 859, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 861, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 863, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "bytes": "tQ==", + "type": 1 + }, + { + "bytes": "tQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFI=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "tQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1010, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1012, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 1014, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1015, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1017, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 1019, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "bytes": "tQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1020 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQ==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1023, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1025, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1027 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "Mn09", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "Mn09", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "Mn09", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "Mn09", + "type": 1 + }, + { + "bytes": "Mn09", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "Mn09", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Mg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMg==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "E1Y=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "E1Y=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "E1Y=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + }, + { + "bytes": "E1Y=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "E1Y=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "E1Y=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "f/k=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "E1Y=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "bytes": "E1Y=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "E1Y=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "E1Y=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATVg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATVg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////7Ko=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "bKM=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "bKM=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "bKM=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/+Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////sqg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbKM=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "bEA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "bEA=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "bEA=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbEA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsow==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsQA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1030, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 5 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 1032, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1034, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1036, + "stack-pop-count": 1 + }, + { + "pc": 1039, + "stack-additions": [ + { + "type": 2, + "uint": 5 + } + ] + }, + { + "pc": 1041, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1042, + "stack-additions": [ + { + "type": 2, + "uint": 4 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1043, + "stack-additions": [ + { + "type": 2, + "uint": 4 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1045 + }, + { + "pc": 982, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 984, + "stack-additions": [ + { + "type": 2, + "uint": 4 + } + ] + }, + { + "pc": 986, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 987, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 988, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 989, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 991, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 993, + "stack-pop-count": 1 + }, + { + "pc": 1012, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 1014, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1015, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1017, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 1019, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + }, + { + "bytes": "QA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1020 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "QA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1023, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1025, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1027 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "BlAA", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "BlAA", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "BlAA", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "BlAA", + "type": 1 + }, + { + "bytes": "BlAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "BlAA", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + }, + { + "bytes": "AlI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "EAA=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "bytes": "AlI=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "Da4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Da4=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Da4=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADa4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "DUs=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "DUs=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "DUs=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUs=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANrg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1030, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 4 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 1032, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1034, + "stack-additions": [ + { + "type": 2, + "uint": 4 + } + ] + }, + { + "pc": 1036, + "stack-pop-count": 1 + }, + { + "pc": 1039, + "stack-additions": [ + { + "type": 2, + "uint": 4 + } + ] + }, + { + "pc": 1041, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1042, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1043, + "stack-additions": [ + { + "type": 2, + "uint": 3 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1045 + }, + { + "pc": 982, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 984, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 986, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 987, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 988, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 989, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 991, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 993, + "stack-pop-count": 1 + }, + { + "pc": 1012, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 1014, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1015, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1017, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 1019, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + }, + { + "bytes": "Sw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1020 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Sw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASw==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1023, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1025, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1027 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "CKs9", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "CKs9", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "CKs9", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "CKs9", + "type": 1 + }, + { + "bytes": "CKs9", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "CKs9", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "CA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "CA==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "CA==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "CA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "CA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "Axg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "Axg=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "Axg=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + }, + { + "bytes": "Axg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Axg=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Axg=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Ffk=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Axg=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "bytes": "Axg=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Axg=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Axg=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////Og=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////85w==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "EuE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "EuE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "EuE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV+Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////86A==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEuE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "En4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "En4=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "En4=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEn4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS4Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASfg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1030, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 1032, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1034, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 1036, + "stack-pop-count": 1 + }, + { + "pc": 1039, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ] + }, + { + "pc": 1041, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1042, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1043, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "Ug==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1045 + }, + { + "pc": 982, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 984, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 986, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 987, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 988, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 989, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 991, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 993, + "stack-pop-count": 1 + }, + { + "pc": 996, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 998, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 1000 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Ug==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUg==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1003, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1005, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1007 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "D+xM", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "D+xM", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "D+xM", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "D+xM", + "type": 1 + }, + { + "bytes": "D+xM", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "D+xM", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "Dw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Dw==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Dw==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Dw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Dw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "Bc0=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "Bc0=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "Bc0=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + }, + { + "bytes": "Bc0=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Bc0=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Bc0=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "KFw=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Bc0=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "bytes": "Bc0=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Bc0=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Bc0=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFzQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFzQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+jM=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "Io8=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Io8=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Io8=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoXA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////6Mw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIo8=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "Iiw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Iiw=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Iiw=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAijw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiLA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1010, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1012, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ] + }, + { + "pc": 1014, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + }, + { + "bytes": "LA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1015, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "LA==", + "type": 1 + }, + { + "bytes": "LA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1017, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 1019, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + }, + { + "bytes": "fg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1020 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "fg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfg==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1023, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1025, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1027 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "GHeU", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "GHeU", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "GHeU", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "GHeU", + "type": 1 + }, + { + "bytes": "GHeU", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "GHeU", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "GA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "GA==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "GA==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "GA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "GA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "CUg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "CUg=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "CUg=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + }, + { + "bytes": "CUg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "CUg=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "CUg=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "PgQ=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "CUg=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "bytes": "CUg=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "CUg=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "CUg=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJSA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJSA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////9rg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2tw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "NLw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "NLw=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "NLw=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////2uA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANLw=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "NFk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "NFk=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "NFk=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANFk=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0vA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0WQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1030, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "LA==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "LA==", + "type": 1 + }, + { + "bytes": "LA==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 1032, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1034, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1036, + "stack-pop-count": 1 + }, + { + "pc": 1039, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1041, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1042, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1043, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "LA==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "LA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1045 + }, + { + "pc": 982, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 984, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 986, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 987, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 988, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 989, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ] + }, + { + "pc": 991, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 993, + "stack-pop-count": 1 + }, + { + "pc": 996, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ] + }, + { + "pc": 998, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 1000 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "LA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1003, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1005, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1007 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "Bgj8", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "Bgj8", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "Bgj8", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "Bgj8", + "type": 1 + }, + { + "bytes": "Bgj8", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "Bgj8", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Bg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABg==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + }, + { + "bytes": "AlI=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "D0w=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "bytes": "AlI=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AlI=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////a4=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "DPo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "DPo=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "DPo=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPTA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////9rg==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "DJc=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "DJc=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "DJc=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADJc=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM+g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMlw==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1010, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1012, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ] + }, + { + "pc": 1014, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1015, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1017, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 1019, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + }, + { + "bytes": "WQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1020 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "WQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQ==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1023, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1025, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1027 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "DDUV", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "DDUV", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "DDUV", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "DDUV", + "type": 1 + }, + { + "bytes": "DDUV", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "DDUV", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "DA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "DA==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "DA==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "DA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "DA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "BKQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "BKQ=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "BKQ=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + }, + { + "bytes": "BKQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "BKQ=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "BKQ=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "HvE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "BKQ=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "bytes": "BKQ=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "BKQ=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "BKQ=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEpA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEpA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////+1w=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7Ww==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "Gk0=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Gk0=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Gk0=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8Q==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////7XA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "Geo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Geo=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Geo=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGeo=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6g==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1030, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "lw==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 1032, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1034, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1036, + "stack-pop-count": 1 + }, + { + "pc": 1039, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1041, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1042, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1043, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "lw==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1045 + }, + { + "pc": 982, + "stack-additions": [ + { + "bytes": "ZA==", + "type": 1 + } + ] + }, + { + "pc": 984, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 986, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 987, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 988, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 989, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ] + }, + { + "pc": 991, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 993, + "stack-pop-count": 1 + }, + { + "pc": 1012, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ] + }, + { + "pc": 1014, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1015, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1017, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 1019, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + }, + { + "bytes": "6g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1020 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "6g==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6g==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1023, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1025, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1027 + }, + { + "pc": 1053 + }, + { + "pc": 1056, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1058, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1059, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1060, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 1061, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1062, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 1064, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 1066 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "ZQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "VGL0", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "VGL0", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "VGL0", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1069, + "stack-additions": [ + { + "bytes": "VGL0", + "type": 1 + }, + { + "bytes": "VGL0", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1070, + "stack-additions": [ + { + "type": 2, + "uint": 3 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1071, + "stack-additions": [ + { + "bytes": "VGL0", + "type": 1 + }, + { + "type": 2, + "uint": 3 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1073, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1074, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1075, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1076, + "stack-additions": [ + { + "bytes": "VA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1077, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1079 + }, + { + "pc": 436 + }, + { + "pc": 439, + "stack-additions": [ + { + "bytes": "VA==", + "type": 1 + } + ] + }, + { + "pc": 441, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 442, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 444, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 445 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 448, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 449 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 452, + "stack-additions": [ + { + "bytes": "VA==", + "type": 1 + } + ] + }, + { + "pc": 454, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 456 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "VA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "VA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 459, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 460, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 462, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 464, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 465 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 468, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 469, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 470, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 471, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 473, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 474, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 475, + "stack-pop-count": 1 + }, + { + "pc": 478, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVA==", + "type": 1 + } + ] + }, + { + "pc": 480, + "stack-additions": [ + { + "bytes": "IHw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 481, + "stack-additions": [ + { + "bytes": "IHw=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 483, + "stack-additions": [ + { + "bytes": "IHw=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1082, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 1084, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + }, + { + "bytes": "IHw=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1085 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "IHw=", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + }, + { + "bytes": "AAA=", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "IHw=", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AAA=", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "1eQ=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "IHw=", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "bytes": "IHw=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "IHw=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 62 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "IHw=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgfA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgfA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP//////////////////////////////////////////////////////////////////////////////////34Q=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fgw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "tWg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tWg=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tWg=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADV5A==", + "type": 1 + }, + { + "bytes": "///////////////////////////////////////////////////////////////////////////////////fhA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtWg=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1088, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1090, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1092 + }, + { + "pc": 197 + }, + { + "pc": 200, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 201, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 202, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 204, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 205, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 207, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 208 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 211, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 212 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 215, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 217, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 219 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 222, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 223, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 225, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 227, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 228 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 231, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 232, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 234, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 235, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 236, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 237, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 238, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 239, + "stack-pop-count": 1 + }, + { + "pc": 240, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 241, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 242, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 243, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 244, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 245, + "stack-pop-count": 1 + }, + { + "pc": 246, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 247, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 248, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 249, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 251, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 253, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 254, + "stack-pop-count": 1 + }, + { + "pc": 257, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 259, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 260, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 261, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 263, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 265, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 266, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 267, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 268, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 270, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 272, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 274, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 275, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 276, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 277, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 278, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 280, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 281, + "stack-pop-count": 1 + }, + { + "pc": 288, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 290, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ] + }, + { + "pc": 292, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 293, + "stack-pop-count": 1 + }, + { + "pc": 296, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 297, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 299, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 1095, + "stack-pop-count": 1 + }, + { + "pc": 1098, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 1100, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 1102 + }, + { + "pc": 813 + }, + { + "pc": 816, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 817, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 818, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 820, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 821, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 822, + "stack-pop-count": 1 + }, + { + "pc": 825, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 827, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 828, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 829, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 831, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 832, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 833, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 835, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 837, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 838, + "stack-pop-count": 1 + }, + { + "pc": 846, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 848, + "stack-pop-count": 1 + }, + { + "pc": 851, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 853, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ] + }, + { + "pc": 855, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 856, + "stack-pop-count": 1 + }, + { + "pc": 864, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 866, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 868 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 871, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 872 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 875, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 877, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 879 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 882, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 884, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 886 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "Yw==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYw==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 889, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 890, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 891, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 892 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 8 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 8 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 56 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AP///////////////////////////////////////////////////////////////////////////////////50=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 796, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 798, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 800, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 895 + }, + { + "pc": 613 + }, + { + "pc": 616, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 617, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 619, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 620, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 622, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 623 + }, + { + "pc": 313 + }, + { + "pc": 316, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 318, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 320, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 321, + "stack-pop-count": 1 + }, + { + "pc": 324, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 326, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 626, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 627 + }, + { + "pc": 330 + }, + { + "pc": 333, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 335, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 337, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 338, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 340, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 341, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 342, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 344, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 345, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 347, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 348, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 630, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 632, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 634 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 637, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 638, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 640, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 642, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 643 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 646, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 647, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 648, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 649, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 650, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 651, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 652, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 653, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 655, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 656, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 657, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 659, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 661, + "stack-additions": [ + { + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 663, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 664, + "stack-pop-count": 1 + }, + { + "pc": 667, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 669, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 670, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 671, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 672, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 673, + "stack-additions": [ + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 675, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 677, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 678, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 679, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 680, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ] + }, + { + "pc": 682, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 684, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 685, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 686, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ] + }, + { + "pc": 688, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 690, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ] + }, + { + "pc": 691, + "stack-additions": [ + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 692, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 693, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 695 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 698, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 699, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 702, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 703, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ] + }, + { + "pc": 705, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 706, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 707, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 709, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 710, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 711, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 713, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 715, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 716, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 718, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 719, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 721, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 722, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 724, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAA=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 725, + "stack-additions": [ + { + "bytes": "tQU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 726, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 728 + }, + { + "pc": 349 + }, + { + "pc": 352, + "stack-additions": [ + { + "bytes": "tQU=", + "type": 1 + } + ] + }, + { + "pc": 354, + "stack-additions": [ + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 355, + "stack-additions": [ + { + "type": 2, + "uint": 2 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 356, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 358, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 359, + "stack-pop-count": 1 + }, + { + "pc": 360, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 362, + "stack-additions": [ + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 363, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 364, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 365, + "stack-additions": [ + { + "bytes": "tQU=", + "type": 1 + } + ] + }, + { + "pc": 367, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 368, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 731, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 732, + "stack-additions": [ + { + "bytes": "AA==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 735, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 736, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ] + }, + { + "pc": 738, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 739, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 740, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 742, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 743, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 744, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 746, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 748, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 749, + "stack-additions": [ + { + "type": 2 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 751, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 752, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 754, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 755, + "stack-additions": [ + { + "type": 1 + } + ] + }, + { + "pc": 757, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 758, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 759, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 761, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 762, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 764, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 765, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 766, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 1 + }, + { + "type": 2 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 7 + }, + { + "pc": 768, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 770, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 772, + "stack-pop-count": 1 + }, + { + "pc": 784, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ] + }, + { + "pc": 786, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 788, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 790, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 791, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 793, + "stack-pop-count": 1 + }, + { + "pc": 801, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 803, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAE=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 804, + "stack-additions": [ + { + "bytes": "AQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 807, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ] + }, + { + "pc": 809, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 810, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "////////////////////////////////////////////////////////////////////////////////////nQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 9 + }, + { + "pc": 812, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 898, + "stack-additions": [ + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + }, + { + "bytes": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQU=", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 899, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 900, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 901, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 903, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 904, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 905, + "stack-additions": [ + { + "type": 2, + "uint": 65 + } + ] + }, + { + "pc": 907, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + }, + { + "type": 2 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 909, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 910, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 65 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 911, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 912, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 914, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1105, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1107, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ] + }, + { + "pc": 1109, + "stack-additions": [ + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1110, + "stack-additions": [ + { + "type": 2, + "uint": 64 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1111, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 1113, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 1114, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 64 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1116, + "stack-additions": [ + { + "type": 2, + "uint": 63 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1117, + "stack-additions": [ + { + "type": 2, + "uint": 63 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1118, + "stack-additions": [ + { + "bytes": "BQ==", + "type": 1 + } + ], + "stack-pop-count": 3 + }, + { + "pc": 1119, + "stack-additions": [ + { + "bytes": "BQ==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1aA==", + "type": 1 + }, + { + "bytes": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1BQ==", + "type": 1 + } + ], + "stack-pop-count": 4 + }, + { + "pc": 1121, + "stack-additions": [ + { + "bytes": "BQ==", + "type": 1 + } + ], + "stack-pop-count": 6 + }, + { + "pc": 1030, + "stack-additions": [ + { + "bytes": "BQ==", + "type": 1 + }, + { + "bytes": "ZA==", + "type": 1 + }, + { + "bytes": "Yw==", + "type": 1 + }, + { + "bytes": "ZQ==", + "type": 1 + }, + { + "type": 2 + }, + { + "bytes": "lw==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 10 + }, + { + "pc": 1032, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 1034, + "stack-additions": [ + { + "type": 2 + } + ] + }, + { + "pc": 1036, + "stack-pop-count": 1 + }, + { + "pc": 1048, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ] + }, + { + "pc": 1050, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "lw==", + "type": 1 + }, + { + "type": 2, + "uint": 8 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 1052, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 8 + }, + { + "pc": 390, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 5 + }, + { + "pc": 153, + "stack-additions": [ + { + "bytes": "lw==", + "type": 1 + }, + { + "bytes": "lw==", + "type": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 154, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 155, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 157, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 158, + "stack-pop-count": 1 + }, + { + "pc": 159, + "stack-additions": [ + { + "bytes": "YQ==", + "type": 1 + } + ] + }, + { + "pc": 161, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 162, + "stack-additions": [ + { + "type": 2, + "uint": 1 + }, + { + "type": 2, + "uint": 1 + } + ], + "stack-pop-count": 1 + }, + { + "pc": 163, + "stack-additions": [ + { + "type": 2, + "uint": 11 + } + ] + }, + { + "pc": 165, + "stack-additions": [ + { + "type": 2, + "uint": 12 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 166, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + }, + { + "pc": 168, + "stack-additions": [ + { + "type": 2 + } + ], + "stack-pop-count": 2 + }, + { + "pc": 169, + "stack-pop-count": 1 + } + ], + "inner-trace": [ + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + }, + { + "approval-program-hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=", + "approval-program-trace": [ + { + "pc": 1, + "stack-additions": [ + { + "type": 2, + "uint": 1 + } + ] + } + ] + } + ] + }, + "txn-result": { + "inner-txns": [ + { + "application-index": 1015, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1016, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1017, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1018, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1019, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1020, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1021, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1022, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1023, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1024, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1025, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1026, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1027, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1028, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1029, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1030, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1031, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1032, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1033, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1034, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1035, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1036, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1037, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1038, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1039, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1040, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1041, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1042, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + }, + { + "application-index": 1043, + "pool-error": "", + "txn": { + "txn": { + "apan": 5, + "apap": "BoEB", + "apsu": "BoEB", + "fv": 12, + "lv": 1012, + "snd": "VGTDTOTY4PTTSGEJRRMHTWWAH2CZF6Q24TFUQ62QXWSLLDSTIZQLNAHBG4", + "type": "appl" + } + } + } + ], + "pool-error": "", + "txn": { + "sig": "zr7Q2p8G+/mPYRmIwiy1ytQtYQIuUGvGyYsGNjc1OKllOEgtgwVxwoF5sXyXYk9abex9Bof2DZfQxLM5R6bODQ==", + "txn": { + "apaa": ["BkVrVw==", "AAFh", "AAFi", "AAFj", "AAFk", "AAFl"], + "apid": 1013, + "fee": 30000, + "fv": 12, + "gen": "dockernet-v1", + "gh": "AALs+uPsWsDMTUSwKjHSlIU2vmMuyZov9L0B4hGne0M=", + "lv": 1012, + "snd": "RGEVLLQ2JBD3FETDMA3QCD26O5RBHRKC66GO4QGJDBDQ6GTLLMB2LLJQDU", + "type": "appl" + } + } + } + } + ] + } + ], + "version": 2 +} diff --git a/sampleWorkspace/puya_third_parties/sources.json b/sampleWorkspace/puya_third_parties/sources.json new file mode 100644 index 0000000..8a59eaa --- /dev/null +++ b/sampleWorkspace/puya_third_parties/sources.json @@ -0,0 +1,12 @@ +{ + "txn-group-sources": [ + { + "sourcemap-location": "RSATester.approval.puya.map", + "hash": "sHHTmOJCdECH2FtRp7ukCKBX/bhw3MhiwEVLw5lakig=" + }, + { + "sourcemap-location": ".algokit/sources/opup/approval.teal.map", + "hash": "p0zHRDBy7V/S2TDcAaXYEd2OF8KSxV/1y0ceYEL6qxU=" + } + ] +} diff --git a/src/common/debugSession.ts b/src/common/debugSession.ts index a3d41d9..b666bfe 100644 --- a/src/common/debugSession.ts +++ b/src/common/debugSession.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ import { DebugSession, InitializedEvent, @@ -17,7 +18,14 @@ import { AvmRuntime, IRuntimeBreakpoint } from './runtime'; import { Subject } from 'await-notify'; import * as algosdk from 'algosdk'; import { FileAccessor } from './fileAccessor'; -import { AvmDebuggingAssets, utf8Decode, limitArray } from './utils'; +import { + AvmDebuggingAssets, + utf8Decode, + limitArray, + ProgramSourceEntryFile, + prefixPotentialError, +} from './utils'; +import { ProgramState } from './traceReplayEngine'; const GENERIC_ERROR_ID = 9999; @@ -42,7 +50,11 @@ export interface ILaunchRequestArguments /** An absolute path to the simulate response to debug. */ simulateTraceFile: string; /** An absolute path to the file which maps programs to source maps. */ - programSourcesDescriptionFile: string; + programSourcesDescriptionFile?: string; + /** JSON encoded content of the program sources description file. */ + programSourcesDescription?: ProgramSourceEntryFile; + /** The folder containing the program sources description file (when using programSourcesDescription). */ + programSourcesDescriptionFolder?: string; /** Automatically stop target after launch. If not specified, target does not stop. */ stopOnEntry?: boolean; } @@ -57,6 +69,9 @@ export class AvmDebugSession extends DebugSession { // txn group walker runtime for walking txn group. private _runtime: AvmRuntime; + // cache to allow cross scope variable references + private _expandedAvmValueCache = new Map(); + private _variableHandles = new Handles< | ProgramStateScope | OnChainStateScope @@ -190,10 +205,33 @@ export class AvmDebugSession extends DebugSession { args: ILaunchRequestArguments, ) { try { + let programSourcesDescription: ProgramSourceEntryFile; + let folder: string; + if (args.programSourcesDescription !== undefined) { + programSourcesDescription = args.programSourcesDescription; + folder = args.programSourcesDescriptionFolder || ''; + } else if (args.programSourcesDescriptionFile !== undefined) { + // earlier versions of avm-debugger passed program source information via a file/ + folder = args.programSourcesDescriptionFile; + const sourcesDescriptionBytes = await prefixPotentialError( + this.fileAccessor.readFile(args.programSourcesDescriptionFile), + 'Could not read program sources description file', + ); + const sourcesDescriptionText = new TextDecoder().decode( + sourcesDescriptionBytes, + ); + programSourcesDescription = JSON.parse( + sourcesDescriptionText, + ) as ProgramSourceEntryFile; + } else { + throw Error('missing programSources'); + } + const debugAssets = await AvmDebuggingAssets.loadFromFiles( this.fileAccessor, args.simulateTraceFile, - args.programSourcesDescriptionFile, + programSourcesDescription, + folder, ); await this._runtime.onLaunch(debugAssets); @@ -397,14 +435,22 @@ export class AvmDebugSession extends DebugSession { const scopes: DebugProtocol.Scope[] = []; if (frame !== undefined) { - scopes.push( - new Scope( - 'Locals', - this._variableHandles.create(new PuyaScope(args.frameId)), - false, - ), - ); - const state = this.getProgramState(args.frameId); + if (this._runtime.isPuyaFrame(frame)) { + scopes.push( + new Scope( + 'Locals', + this._variableHandles.create(new PuyaScope(args.frameId)), + false, + ), + ); + } + + let state: ProgramState | undefined; + try { + state = this.getProgramState(args.frameId); + } catch { + state = undefined; + } if (state !== undefined) { const programScope = new ProgramStateScope(args.frameId); let scopeName = 'Program State'; @@ -420,6 +466,7 @@ export class AvmDebugSession extends DebugSession { ), ); } + scopes.push( new Scope( 'On-chain State', @@ -443,6 +490,7 @@ export class AvmDebugSession extends DebugSession { ): Promise { try { let variables: DebugProtocol.Variable[] = []; + this._expandedAvmValueCache.clear(); const v = this._variableHandles.get(args.variablesReference); @@ -457,13 +505,17 @@ export class AvmDebugSession extends DebugSession { variablesReference: 0, evaluateName: 'pc', }, - { - name: 'op', - value: state.op || 'unknown', - type: 'string', - variablesReference: 0, - evaluateName: 'op', - }, + ...(state.op !== undefined + ? [ + { + name: 'op', + value: state.op, + type: 'string', + variablesReference: 0, + evaluateName: 'op', + }, + ] + : []), { name: 'stack', value: state.stack.length === 0 ? '[]' : '[...]', @@ -514,12 +566,7 @@ export class AvmDebugSession extends DebugSession { variables = state.variables.map((variable) => { const name = variable[0]; const avmValue = variable[1]; - return { - name: name, - value: variableToString(avmValue), - type: avmValue.type === 1 ? 'byte[]' : 'uint64', - variablesReference: 0, - }; + return this.convertAvmValue(v, avmValue, name); }); } else if (v === 'chain') { const appIDs = this._runtime.getAppStateReferences(); @@ -552,7 +599,7 @@ export class AvmDebugSession extends DebugSession { variablesReference: this._variableHandles.create( new AppSpecificStateScope({ scope: 'global', appID: v.appID }), ), - namedVariables: 1, // TODO + namedVariables: 1, }, { name: 'local', @@ -561,7 +608,7 @@ export class AvmDebugSession extends DebugSession { variablesReference: this._variableHandles.create( new AppSpecificStateScope({ scope: 'local', appID: v.appID }), ), - namedVariables: 1, // TODO + namedVariables: 1, }, { name: 'box', @@ -570,7 +617,7 @@ export class AvmDebugSession extends DebugSession { variablesReference: this._variableHandles.create( new AppSpecificStateScope({ scope: 'box', appID: v.appID }), ), - namedVariables: 1, // TODO + namedVariables: 1, }, ]; } else if (v instanceof AppSpecificStateScope) { @@ -593,7 +640,7 @@ export class AvmDebugSession extends DebugSession { account, }), ), - namedVariables: 1, // TODO + namedVariables: 1, evaluateName: evaluateNameForScope(v, account), })); } else { @@ -607,19 +654,31 @@ export class AvmDebugSession extends DebugSession { .map((kv) => this.convertAvmKeyValue(v, kv)); } } else if (v instanceof AvmValueReference) { - if (v.scope instanceof ProgramStateScope) { + if ( + v.scope instanceof ProgramStateScope || + v.scope instanceof PuyaScope + ) { const state = this.getProgramState(v.scope.frameIndex); - let toExpand: algosdk.modelsv2.AvmValue; - if (v.scope.specificState === 'stack') { - toExpand = state.stack[v.key as number]; - } else if (v.scope.specificState === 'scratch') { - toExpand = - state.scratch.get(v.key as number) || - new algosdk.modelsv2.AvmValue({ type: 2 }); - } else { - throw new Error(`Unexpected AvmValueReference scope: ${v.scope}`); + let toExpand: algosdk.modelsv2.AvmValue | undefined; + + if (v.scope instanceof ProgramStateScope) { + if (v.scope.specificState === 'stack') { + toExpand = state.stack[v.key as number]; + } else if (v.scope.specificState === 'scratch') { + toExpand = + state.scratch.get(v.key as number) || + new algosdk.modelsv2.AvmValue({ type: 2 }); + } + } else if (v.scope instanceof PuyaScope) { + const variable = state.variables.find(([name]) => name === v.key); + if (variable) { + toExpand = variable[1]; + } + } + + if (toExpand) { + variables = this.expandAvmValue(toExpand, args.filter); } - variables = this.expandAvmValue(toExpand, args.filter); } else if ( v.scope instanceof AppSpecificStateScope && typeof v.key === 'string' && @@ -984,7 +1043,7 @@ export class AvmDebugSession extends DebugSession { //---- helpers private convertAvmValue( - scope: AvmValueScope, + scope: AvmValueScope | PuyaScope, avmValue: algosdk.modelsv2.AvmValue, key: number | string, overrideVariableReference?: boolean, @@ -993,7 +1052,8 @@ export class AvmDebugSession extends DebugSession { let indexedVariables: number | undefined = undefined; let presentationHint: DebugProtocol.VariablePresentationHint | undefined = undefined; - let makeVariableReference = false; + let variablesReference = 0; + if (avmValue.type === 1) { // byte array const bytes = avmValue.bytes || new Uint8Array(); @@ -1006,91 +1066,82 @@ export class AvmDebugSession extends DebugSession { kind: 'data', attributes: ['rawString'], }; - makeVariableReference = true; + variablesReference = this._variableHandles.create( + new AvmValueReference(scope, key), + ); } - if (typeof overrideVariableReference !== 'undefined') { - makeVariableReference = overrideVariableReference; + // For uint64 (type 2), variablesReference remains 0 + + if ( + avmValue.type !== 2 && + typeof overrideVariableReference !== 'undefined' && + overrideVariableReference + ) { + variablesReference = this._variableHandles.create( + new AvmValueReference(scope, key), + ); } + return { name: key.toString(), value: this.avmValueToString(avmValue), type: avmValue.type === 1 ? 'byte[]' : 'uint64', - variablesReference: makeVariableReference - ? this._variableHandles.create(new AvmValueReference(scope, key)) - : 0, + variablesReference, namedVariables, indexedVariables, presentationHint, - evaluateName: evaluateNameForScope(scope, key), + evaluateName: + scope instanceof PuyaScope + ? key.toString() + : evaluateNameForScope(scope, key), }; } private expandAvmValue( avmValue: algosdk.modelsv2.AvmValue, - filter?: DebugProtocol.VariablesArguments['filter'], + filter?: string, ): DebugProtocol.Variable[] { - if (avmValue.type !== 1) { - return []; - } - - const bytes = avmValue.bytes || new Uint8Array(); + const variables: DebugProtocol.Variable[] = []; - const values: DebugProtocol.Variable[] = []; - - if (filter !== 'indexed') { - values.push({ - name: 'hex', - type: 'string', - value: algosdk.bytesToHex(bytes), - variablesReference: 0, - }); - - values.push({ - name: 'base64', - type: 'string', - value: algosdk.bytesToBase64(bytes), - variablesReference: 0, - }); + if (avmValue.type === 1) { + // byte array + const bytes = avmValue.bytes || new Uint8Array(); + const baseKey = `${avmValue.type}-${Buffer.from(bytes).toString( + 'hex', + )}-${filter}`; + + const addVariable = (name: string, value: string, type: string) => { + const cacheKey = `${baseKey}-${name}`; + if (this._expandedAvmValueCache.has(cacheKey)) { + variables.push(this._expandedAvmValueCache.get(cacheKey)!); + } else { + const variable: DebugProtocol.Variable = { + name, + value, + type, + variablesReference: 0, + }; + this._expandedAvmValueCache.set(cacheKey, variable); + variables.push(variable); + } + }; - const utf8Value = utf8Decode(bytes); - if (typeof utf8Value !== 'undefined') { - values.push({ - name: 'utf-8', - type: 'string', - value: utf8Value, - variablesReference: 0, - }); - } + addVariable('length', bytes.length.toString(), 'number'); + addVariable('hex', `0x${Buffer.from(bytes).toString('hex')}`, 'string'); - if (bytes.length === 32) { - values.push({ - name: 'address', - type: 'string', - value: algosdk.encodeAddress(bytes), - variablesReference: 0, - }); + const utf8String = utf8Decode(bytes); + if (typeof utf8String !== 'undefined') { + addVariable('utf8', `"${utf8String}"`, 'string'); } - values.push({ - name: 'length', - type: 'int', - value: bytes.length.toString(), - variablesReference: 0, - }); - } - - if (filter !== 'named') { - for (let i = 0; i < bytes.length; i++) { - values.push({ - name: i.toString(), - type: 'uint8', - value: bytes[i].toString(), - variablesReference: 0, - }); + if (filter !== 'named') { + for (let i = 0; i < bytes.length; i++) { + addVariable(i.toString(), bytes[i].toString(), 'number'); + } } } - return values; + return variables; } private convertAvmKeyValue( @@ -1265,7 +1316,7 @@ type AvmValueScope = ProgramStateScope | AppSpecificStateScope; class AvmValueReference { constructor( - public readonly scope: AvmValueScope, + public readonly scope: AvmValueScope | PuyaScope, public readonly key: number | string, ) {} } @@ -1372,16 +1423,16 @@ function evaluateNameToScope(name: string): [AvmValueScope, number | string] { throw new Error(`Unexpected expression: ${name}`); } -function variableToString(avmValue: algosdk.modelsv2.AvmValue): string { - if (avmValue.type === 1) { - // byte array - const bytes = avmValue.bytes || new Uint8Array(); - const utf8 = utf8Decode(bytes); - return utf8 === undefined - ? '0x' + algosdk.bytesToHex(bytes) - : "'" + utf8 + "'"; - } - // uint64 - const uint = avmValue.uint || 0; - return uint.toString(); -} +// function variableToString(avmValue: algosdk.modelsv2.AvmValue): string { +// if (avmValue.type === 1) { +// // byte array +// const bytes = avmValue.bytes || new Uint8Array(); +// const utf8 = utf8Decode(bytes); +// return utf8 === undefined +// ? '0x' + algosdk.bytesToHex(bytes) +// : "'" + utf8 + "'"; +// } +// // uint64 +// const uint = avmValue.uint || 0; +// return uint.toString(); +// } diff --git a/src/common/index.ts b/src/common/index.ts index 06200ed..be9b335 100644 --- a/src/common/index.ts +++ b/src/common/index.ts @@ -1,2 +1,3 @@ export { AvmDebugSession, ILaunchRequestArguments } from './debugSession'; export { FileAccessor } from './fileAccessor'; +export { ProgramSourceEntryFile, ProgramSourceEntry } from './utils'; diff --git a/src/common/programReplay.ts b/src/common/programReplay.ts index ef0be91..4452dc4 100644 --- a/src/common/programReplay.ts +++ b/src/common/programReplay.ts @@ -3,12 +3,20 @@ import { SimulationOpcodeTraceUnit, } from 'algosdk/dist/types/client/v2/algod/models/types'; import { FrameSource, ProgramState } from './traceReplayEngine'; -import { PCEvent, ProgramSourceDescriptor } from './utils'; +import { + ByteArrayMap, + isPuyaSourceMap, + PCEvent, + ProgramSourceDescriptor, +} from './utils'; +import algosdk from 'algosdk'; +import { AppState } from './appState'; interface CallStack { readonly name: string; readonly source: FrameSource | undefined; readonly programState: ProgramState | undefined; + readonly isPuyaFrame: boolean; stackOffset: number; } const HIDE_VERSION = true; @@ -21,6 +29,7 @@ class MutableCallStack implements CallStack { private definedVariables: Record; private _paramVariables: string[]; private stack: string[]; + public isPuyaFrame: boolean = true; constructor( public readonly callEvent: PCEvent, @@ -121,7 +130,8 @@ export class ProgramReplay { public scratch: Map = new Map(); private traceIndex: number = 0; private _callStack: MutableCallStack[] = []; - private readonly sourceInfo: ProgramSourceDescriptor; + private readonly sourceInfo: ProgramSourceDescriptor | undefined; + private currentAppState: Map; constructor( private readonly programName: string, @@ -129,9 +139,17 @@ export class ProgramReplay { sourceInfo: ProgramSourceDescriptor | undefined, public readonly appId: bigint | undefined, traceIndex: number = 0, //index to the next opcode to execute + currentAppState: Map, ) { - this.sourceInfo = checkTraceMatchesSourceInfo(programTrace, sourceInfo); + if (isPuyaSourceMap(sourceInfo?.json)) { + this.sourceInfo = checkTraceMatchesSourceInfo(programTrace, sourceInfo); + } else { + // If value is undefined, we still set it given that this can signify that user + // wants to skip debugging for this particular program + this.sourceInfo = sourceInfo; + } + this.currentAppState = currentAppState; this.reset(); // advance internal state to match provided index while (traceIndex-- > 0) { @@ -146,6 +164,10 @@ export class ProgramReplay { } get nextOpTrace() { + if (this.traceIndex >= this.programTrace.length) { + return this.programTrace[this.programTrace.length - 1]; + } + return this.programTrace[this.traceIndex]; } @@ -155,12 +177,13 @@ export class ProgramReplay { get nextPcEvent(): PCEvent | undefined { if ( - this.sourceInfo === undefined || - this.sourceInfo.json.pc_events === undefined + this.nextPc === undefined && + (this.sourceInfo === undefined || + this.sourceInfo.json.pc_events === undefined) ) { return undefined; } - return this.sourceInfo.json.pc_events[this.nextPc.toString()]; + return this.sourceInfo?.json.pc_events?.[this.nextPc.toString()]; } get pcSource(): FrameSource | undefined { @@ -175,6 +198,7 @@ export class ProgramReplay { const column = location.column; const sourceIndex = location.sourceIndex; const source = this.sourceInfo.getFullSourcePath(sourceIndex); + return { name: source, path: source, @@ -200,6 +224,7 @@ export class ProgramReplay { return; } this.processOpExit(); + this.processUnit(this.nextOpTrace); this.traceIndex++; if (this.traceIndex < this.programTrace.length) { this.processOpEnter(); @@ -207,6 +232,42 @@ export class ProgramReplay { } } + public backward(): void { + if (this.traceIndex === 0) { + return; + } + + const currentSource = this.pcSource; + let previousSource: FrameSource | undefined; + + do { + this.traceIndex--; + this.processOpExit(); + if (this.traceIndex > 0) { + this.processOpEnter(); + this.updateSource(); + } + previousSource = this.pcSource; + } while ( + this.traceIndex > 0 && + !this.hasLocationChanged(currentSource, previousSource) + ); + } + + private hasLocationChanged( + from: FrameSource | undefined, + to: FrameSource | undefined, + ): boolean { + if (from === undefined || to === undefined) { + return from !== to; + } + return ( + from.path !== to.path || + from.line !== to.line || + from.column !== to.column + ); + } + public reset() { this.stack = []; this.scratch = new Map(); @@ -220,6 +281,56 @@ export class ProgramReplay { this._callStack[this._callStack.length - 1].source = this.pcSource; } + private processUnit(unit: algosdk.modelsv2.SimulationOpcodeTraceUnit) { + if (unit.stateChanges && unit.stateChanges.length !== 0) { + const appID = this.appId; + if (typeof appID === 'undefined') { + throw new Error('No appID'); + } + + const state = this.currentAppState.get(appID); + if (!state) { + throw new Error(`No state for appID ${appID}`); + } + + for (const stateChange of unit.stateChanges) { + switch (stateChange.appStateType) { + case 'g': + if (stateChange.operation === 'w') { + state.globalState.set(stateChange.key, stateChange.newValue!); + } else if (stateChange.operation === 'd') { + state.globalState.delete(stateChange.key); + } + break; + case 'l': + if (stateChange.operation === 'w') { + const accountAddress = stateChange.account!.toString(); + let accountState = state.localState.get(accountAddress); + if (!accountState) { + accountState = new ByteArrayMap(); + state.localState.set(accountAddress, accountState); + } + accountState.set(stateChange.key, stateChange.newValue!); + } else if (stateChange.operation === 'd') { + const accountState = state.localState.get( + stateChange.account!.toString(), + ); + if (accountState) { + accountState.delete(stateChange.key); + } + } + break; + case 'b': + if (stateChange.operation === 'w') { + state.boxState.set(stateChange.key, stateChange.newValue!); + } else if (stateChange.operation === 'd') { + state.boxState.delete(stateChange.key); + } + } + } + } + } + private processOpEnter() { const event = this.nextPcEvent; if (event !== undefined) { @@ -284,7 +395,8 @@ function checkTraceMatchesSourceInfo( if (sourceInfo === undefined) { throw Error('missing program source information'); } - const pcOffset = traces[sourceInfo.json.op_pc_offset || 0].pc; + const offset = sourceInfo.json.op_pc_offset || 0; + const pcOffset = offset === 0 ? offset : traces[offset].pc; let events = sourceInfo.json.pc_events; if (events === undefined) { throw Error('not a puya source map'); @@ -307,14 +419,15 @@ function checkTraceMatchesSourceInfo( pc_events: events, }; const sourcemap = { - sources: sourceInfo.sourcemap.sources, + ...sourceInfo.sourcemap, getLocationForPc: (pc) => { if (pc < pcOffset) { return undefined; } return sourceInfo?.sourcemap.getLocationForPc(pc - pcOffset); }, - }; + } as unknown as algosdk.ProgramSourceMap; + return new ProgramSourceDescriptor( sourceInfo.fileAccessor, sourceInfo.sourcemapFileLocation, diff --git a/src/common/runtime.ts b/src/common/runtime.ts index debb6b3..011a733 100644 --- a/src/common/runtime.ts +++ b/src/common/runtime.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ import { EventEmitter } from 'events'; import { RuntimeEvents } from './debugSession'; import { AppState } from './appState'; @@ -11,6 +12,7 @@ import { FileAccessor } from './fileAccessor'; import { AvmDebuggingAssets, ProgramSourceDescriptor, + isPuyaSourceMap, normalizePathAndCasing, } from './utils'; @@ -362,6 +364,7 @@ export class AvmRuntime extends EventEmitter { } } + // eslint-disable-next-line @typescript-eslint/no-explicit-any private sendEvent(event: string, ...args: any[]): void { setTimeout(() => { this.emit(event, ...args); @@ -412,4 +415,18 @@ export class AvmRuntime extends EventEmitter { return sourceDescriptors; } + + public isPuyaFrame(frame: TraceStackFrame): boolean { + if (frame && frame.source && frame.source.path) { + const sourceDescriptors = this.findSourceDescriptorsForPath( + frame.source.path, + ); + for (const { descriptor } of sourceDescriptors) { + if (isPuyaSourceMap(descriptor.json)) { + return true; + } + } + } + return false; + } } diff --git a/src/common/traceReplayEngine.ts b/src/common/traceReplayEngine.ts index 707d077..5385070 100644 --- a/src/common/traceReplayEngine.ts +++ b/src/common/traceReplayEngine.ts @@ -5,6 +5,7 @@ import { AvmDebuggingAssets, ProgramSourceDescriptor, ProgramSourceDescriptorRegistry, + isPuyaSourceMap, } from './utils'; import { ProgramReplay } from './programReplay'; import { AvmValue } from 'algosdk/dist/types/client/v2/algod/models/types'; @@ -272,6 +273,8 @@ export interface TraceStackFrame { readonly name: string; readonly source: FrameSource | undefined; readonly programState: ProgramState | undefined; + + readonly isPuyaFrame: boolean; } export interface ProgramState { @@ -287,12 +290,13 @@ export interface TraceReplayFrame { get callStack(): TraceStackFrame[]; forward(stack: TraceReplayFrame[]): ExceptionInfo | void; backward(stack: TraceReplayFrame[]): ExceptionInfo | void; + isPuyaFrame: boolean; } export class TopLevelTransactionGroupsFrame implements TraceReplayFrame { private index: number = 0; private txnGroupDone: boolean = false; - + public isPuyaFrame: boolean = false; constructor( private readonly engine: TraceReplayEngine, private readonly response: algosdk.modelsv2.SimulateResponse, @@ -434,6 +438,8 @@ export class TransactionGroupStackFrame implements TraceReplayFrame { private sourceContent: string; private sourceLocations: TransactionSourceLocation[] = []; + public isPuyaFrame: boolean = false; + constructor( private engine: TraceReplayEngine, private txnPath: number[], @@ -726,6 +732,8 @@ export class ProgramStackFrame implements TraceReplayFrame { private blockingException: ExceptionInfo | undefined; private programReplay: ProgramReplay; + public isPuyaFrame: boolean = false; + constructor( private readonly engine: TraceReplayEngine, private readonly txnPath: number[], @@ -749,11 +757,17 @@ export class ProgramStackFrame implements TraceReplayFrame { const lsigAccount = new algosdk.LogicSigAccount(lsigBytes); this.logicSigAddress = lsigAccount.address().toString(); } + + const sourceMapPath = this.engine.programHashToSource.get(programHash); + this.isPuyaFrame = isPuyaSourceMap(sourceMapPath?.json); + this.programReplay = new ProgramReplay( this.name, programTrace, - this.engine.programHashToSource.get(programHash), + sourceMapPath, this.currentAppID(), + undefined, + engine.currentAppState, ); } @@ -800,13 +814,7 @@ export class ProgramStackFrame implements TraceReplayFrame { return; } - this.programReplay.forward(); - // loop until location has advanced - again = !locationHasAdvanced(lastLocation, this.programReplay.pcSource); - const currentUnit = this.programTrace[this.index]; - this.processUnit(currentUnit); - const spawnedInners = currentUnit.spawnedInners; if ( !this.handledInnerTxns && @@ -845,6 +853,11 @@ export class ProgramStackFrame implements TraceReplayFrame { this.handledInnerTxns = true; return; } + this.programReplay.forward(); + // loop until location has advanced + again = this.isPuyaFrame + ? !locationHasAdvanced(lastLocation, this.programReplay.pcSource) + : false; this.index++; @@ -887,60 +900,6 @@ export class ProgramStackFrame implements TraceReplayFrame { } } - private processUnit(unit: algosdk.modelsv2.SimulationOpcodeTraceUnit) { - // TODO: move to ProgramReplay - if (unit.stateChanges && unit.stateChanges.length !== 0) { - const appID = this.currentAppID(); - if (typeof appID === 'undefined') { - throw new Error('No appID'); - } - - const state = this.engine.currentAppState.get(appID); - if (!state) { - throw new Error(`No state for appID ${appID}`); - } - - for (const stateChange of unit.stateChanges) { - switch (stateChange.appStateType) { - case 'g': - if (stateChange.operation === 'w') { - state.globalState.set(stateChange.key, stateChange.newValue!); - } else if (stateChange.operation === 'd') { - state.globalState.delete(stateChange.key); - } - break; - case 'l': - if (stateChange.operation === 'w') { - const accountState = state.localState.get( - stateChange.account!.toString(), - ); - if (!accountState) { - const newState = new ByteArrayMap(); - newState.set(stateChange.key, stateChange.newValue!); - state.localState.set(stateChange.account!.toString(), newState); - } else { - accountState.set(stateChange.key, stateChange.newValue!); - } - } else if (stateChange.operation === 'd') { - const accountState = state.localState.get( - stateChange.account!.toString(), - ); - if (accountState) { - accountState.delete(stateChange.key); - } - } - break; - case 'b': - if (stateChange.operation === 'w') { - state.boxState.set(stateChange.key, stateChange.newValue!); - } else if (stateChange.operation === 'd') { - state.boxState.delete(stateChange.key); - } - } - } - } - } - public backward(stack: TraceReplayFrame[]): ExceptionInfo | void { if (this.blockingException) { this.blockingException = undefined; diff --git a/src/common/utils.ts b/src/common/utils.ts index 9c0c901..f5220c8 100644 --- a/src/common/utils.ts +++ b/src/common/utils.ts @@ -125,13 +125,13 @@ export class ByteArrayMap { } } -interface ProgramSourceEntryFile { +export interface ProgramSourceEntryFile { 'txn-group-sources': ProgramSourceEntry[]; } -interface ProgramSourceEntry { +export interface ProgramSourceEntry { hash: string; - 'sourcemap-location': string; + 'sourcemap-location': string | null; } export interface PCEvent { @@ -155,17 +155,12 @@ interface ISourceMap { pc_events?: Record; } -interface IPcLocationMap { - sources: string[]; - getLocationForPc(pc: number): algosdk.SourceLocation | undefined; -} - export class ProgramSourceDescriptor { constructor( public readonly fileAccessor: FileAccessor, public readonly sourcemapFileLocation: string, public readonly json: ISourceMap, - public readonly sourcemap: IPcLocationMap, + public readonly sourcemap: algosdk.ProgramSourceMap, public readonly hash: Uint8Array, ) {} @@ -187,12 +182,12 @@ export class ProgramSourceDescriptor { static async fromJSONObj( fileAccessor: FileAccessor, - originFile: string, + originPath: string, data: ProgramSourceEntry, ): Promise { const sourcemapFileLocation = normalizePathAndCasing( fileAccessor, - fileAccessor.filePathRelativeTo(originFile, data['sourcemap-location']), + fileAccessor.filePathRelativeTo(originPath, data['sourcemap-location']!), ); const rawSourcemap = await prefixPotentialError( fileAccessor.readFile(sourcemapFileLocation), @@ -228,19 +223,12 @@ export class ProgramSourceDescriptorRegistry { return this.registry.get(hash); } - static async loadFromFile( + static async loadFromContent( fileAccessor: FileAccessor, - programSourcesDescriptionFilePath: string, + jsonSourcesDescription: ProgramSourceEntryFile, + originPath?: string, ): Promise { - const rawSourcesDescription = await prefixPotentialError( - fileAccessor.readFile(programSourcesDescriptionFilePath), - 'Could not read program sources description file', - ); - let jsonSourcesDescription: ProgramSourceEntryFile; try { - jsonSourcesDescription = JSON.parse( - new TextDecoder().decode(rawSourcesDescription), - ) as ProgramSourceEntryFile; if ( !Array.isArray(jsonSourcesDescription['txn-group-sources']) || !jsonSourcesDescription['txn-group-sources'].every( @@ -255,18 +243,22 @@ export class ProgramSourceDescriptorRegistry { } catch (e) { const err = e as Error; throw new Error( - `Could not parse program sources description file from '${programSourcesDescriptionFilePath}': ${err.message}`, + `Could not parse program sources description ${ + originPath ? `file from '${originPath}'` : 'content' + }: ${err.message}`, ); } + const programSources = jsonSourcesDescription['txn-group-sources'] .filter((source) => source['sourcemap-location'] !== null) .map((source) => ProgramSourceDescriptor.fromJSONObj( fileAccessor, - programSourcesDescriptionFilePath, + originPath || '', source, ), ); + return new ProgramSourceDescriptorRegistry({ txnGroupSources: await Promise.all(programSources), }); @@ -282,7 +274,8 @@ export class AvmDebuggingAssets { static async loadFromFiles( fileAccessor: FileAccessor, simulateTraceFilePath: string, - programSourcesDescriptionFilePath: string, + programSourcesDescription: ProgramSourceEntryFile, + programSourcesDescriptionFolder: string, ): Promise { const rawSimulateTrace = await prefixPotentialError( fileAccessor.readFile(simulateTraceFilePath), @@ -316,16 +309,24 @@ export class AvmDebuggingAssets { } const txnGroupDescriptorList = - await ProgramSourceDescriptorRegistry.loadFromFile( + await ProgramSourceDescriptorRegistry.loadFromContent( fileAccessor, - programSourcesDescriptionFilePath, + programSourcesDescription, + programSourcesDescriptionFolder, ); return new AvmDebuggingAssets(simulateResponse, txnGroupDescriptorList); } } -function prefixPotentialError(task: Promise, prefix: string): Promise { +export function isPuyaSourceMap(sourcemap: ISourceMap | undefined): boolean { + return sourcemap?.pc_events !== undefined; +} + +export function prefixPotentialError( + task: Promise, + prefix: string, +): Promise { return task.catch((error) => { throw new Error(`${prefix}: ${error.message}`); }); diff --git a/tests/adapter.test.ts b/tests/adapter.test.ts index 7912b4f..a2049e8 100644 --- a/tests/adapter.test.ts +++ b/tests/adapter.test.ts @@ -2563,3 +2563,130 @@ describe('Debug Adapter Tests', () => { await fixture.client.waitForEvent('terminated'); }); }); + +describe('Puya Debugging', () => { + const fixture = new TestFixture(); + + before(async () => await fixture.init()); + + afterEach(async () => { + await fixture.reset(); + }); + + after(async () => { + await fixture.stop(); + }); + + it('should correctly step through and inspect variables in a Puya program', async () => { + const simulateTraceFile = path.join( + DATA_ROOT, + 'puya/simulate-response.json', + ); + const programSourcesDescriptionFile = path.join( + DATA_ROOT, + 'puya/sources.json', + ); + const { client } = fixture; + + const program = normalizePathAndCasing( + nodeFileAccessor, + path.join(DATA_ROOT, 'puya/contract.py'), + ); + + await Promise.all([ + client.configurationSequence(), + client.launch({ + simulateTraceFile, + programSourcesDescriptionFile, + stopOnEntry: true, + }), + client.assertStoppedLocation('entry', {}), + ]); + + // Set breakpoint at the beginning of the claim_poa method + await client.setBreakpointsRequest({ + source: { path: program }, + breakpoints: [{ line: 98 }], + }); + + await client.continueRequest({ threadId: 1 }); + await client.assertStoppedLocation('breakpoint', { + path: program, + line: 98, + }); + + // Check variables at the start of the claim poa method + await assertVariables(client, { + pc: 700, + stack: [0, 0], + }); + + // Verify Puya-specific variables + const scopesResponse = await client.scopesRequest({ frameId: 0 }); + const localsScope = scopesResponse.body.scopes.find( + (s) => s.name === 'Locals', + ); + assert.ok(localsScope, 'Locals scope not found'); + + const variablesResponse = await client.variablesRequest({ + variablesReference: localsScope!.variablesReference, + }); + assert.deepStrictEqual( + variablesResponse.body.variables.find((v) => v.name === 'opt_in_txn'), + { + name: 'opt_in_txn', + value: '0', + type: 'uint64', + variablesReference: 0, + evaluateName: 'opt_in_txn', + }, + ); + + // Step through the method + await client.nextRequest({ threadId: 1 }); + await client.nextRequest({ threadId: 1 }); + await client.assertStoppedLocation('step', { path: program, line: 99 }); + + // Verify Puya-specific variables again + const scopesResponse2 = await client.scopesRequest({ frameId: 0 }); + const localsScope2 = scopesResponse2.body.scopes.find( + (s) => s.name === 'Locals', + ); + assert.ok(localsScope2, 'Locals scope not found'); + + const variablesResponse2 = await client.variablesRequest({ + variablesReference: localsScope2!.variablesReference, + }); + assert.deepStrictEqual( + variablesResponse2.body.variables.find((v) => v.name === 'opt_in_txn'), + { + name: 'opt_in_txn', + value: '0', + type: 'uint64', + variablesReference: 0, + evaluateName: 'opt_in_txn', + }, + ); + const poaIdVariable = variablesResponse2.body.variables.find( + (v) => v.name === 'poa_id', + ); + assert.strictEqual(poaIdVariable?.name, 'poa_id'); + assert.strictEqual(poaIdVariable?.value, '0x0000000000000411'); + assert.strictEqual(poaIdVariable?.type, 'byte[]'); + assert.ok(typeof poaIdVariable?.variablesReference === 'number'); + assert.deepStrictEqual( + variablesResponse2.body.variables.find((v) => v.name === 'exists'), + { + name: 'exists', + value: '1', + type: 'uint64', + variablesReference: 0, + evaluateName: 'exists', + }, + ); + + // Continue to the end + await client.continueRequest({ threadId: 1 }); + await client.waitForEvent('terminated'); + }); +});