From 5a9f675068abbfec73a71af821955f9d3aa8552d Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Tue, 5 Sep 2023 19:28:15 -0500 Subject: [PATCH 01/44] Change parallelization so that subproofs are added to a task queue --- kevm-pyk/src/kevm_pyk/utils.py | 2 + kevm-pyk/src/kontrol/foundry.py | 83 +++++++++++++++++++++++++++------ 2 files changed, 72 insertions(+), 13 deletions(-) diff --git a/kevm-pyk/src/kevm_pyk/utils.py b/kevm-pyk/src/kevm_pyk/utils.py index b85f875514..03cdceb911 100644 --- a/kevm-pyk/src/kevm_pyk/utils.py +++ b/kevm-pyk/src/kevm_pyk/utils.py @@ -82,6 +82,7 @@ def kevm_prove( break_on_calls: bool = True, extract_branches: Callable[[CTerm], Iterable[KInner]] | None = None, abstract_node: Callable[[CTerm], CTerm] | None = None, + max_branches: int | None = 1, ) -> bool: proof = proof terminal_rules = ['EVM.halt'] @@ -122,6 +123,7 @@ def kevm_prove( execute_depth=max_depth, terminal_rules=terminal_rules, cut_point_rules=cut_point_rules, + max_branches=max_branches, ) assert isinstance(proof, APRProof) if proof.passed: diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 8fdb8b711b..dc2aeb1582 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -1,5 +1,6 @@ from __future__ import annotations +import time import json import logging import os @@ -13,12 +14,13 @@ from typing import TYPE_CHECKING import tomlkit -from pathos.pools import ProcessPool # type: ignore from pyk.cterm import CTerm from pyk.kast.inner import KApply, KSequence, KSort, KToken, KVariable, Subst from pyk.kast.manip import free_vars, minimize_term from pyk.kast.outer import KDefinition, KFlatModule, KImport, KRequire from pyk.kcfg import KCFG +from pyk.kore.pool import KoreServerPool +from pyk.kore.rpc import kore_server from pyk.prelude.bytes import bytesToken from pyk.prelude.k import GENERATED_TOP_CELL from pyk.prelude.kbool import FALSE, notBool @@ -51,6 +53,8 @@ from pyk.kcfg import KCFGExplore from pyk.kcfg.kcfg import NodeIdLike from pyk.kcfg.tui import KCFGElem + from pyk.kore.pool import Future + from pyk.kore.rpc import KoreServer from pyk.proof.show import NodePrinter _LOGGER: Final = logging.getLogger(__name__) @@ -714,7 +718,7 @@ def foundry_prove( assert id is not None tests[i] = (test, id) - def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> tuple[bool, list[str] | None]: + def _init_and_run_proof(dummy: int, _init_problem: tuple[str, str, str | None]) -> tuple[bool, APRProof, list[str] | None]: contract_name, method_sig, id = _init_problem contract = foundry.contracts[contract_name] method = contract.method_by_sig[method_sig] @@ -761,7 +765,7 @@ def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> tuple[boo failure_log = None if not passed: failure_log = print_failure_info(proof, kcfg_explore, counterexample_info) - return passed, failure_log + return passed, proof, failure_log, def run_cfg_group( tests: list[tuple[str, str | None]] @@ -771,18 +775,71 @@ def _split_test(test: tuple[str, str | None]) -> tuple[str, str, str | None]: contract, method = test_name.split('.') return contract, method, id - init_problems = [_split_test(test) for test in tests] + llvm_definition_dir = foundry.llvm_library if use_booster else None - _apr_proofs: list[tuple[bool, list[str] | None]] - if workers > 1: - with ProcessPool(ncpus=workers) as process_pool: - _apr_proofs = process_pool.map(_init_and_run_proof, init_problems) - else: - _apr_proofs = [] - for init_problem in init_problems: - _apr_proofs.append(_init_and_run_proof(init_problem)) - apr_proofs = dict(zip(tests, _apr_proofs, strict=True)) + def create_server() -> KoreServer: + return kore_server( + definition_dir=foundry.kevm.definition_dir, + llvm_definition_dir=llvm_definition_dir, + module_name=foundry.kevm.main_module, + port=port, + command=kore_rpc_command, + bug_report=br, + smt_timeout=smt_timeout, + smt_retry_limit=smt_retry_limit, + ) + + results = {} + futures: dict[str, Future] = {} + with KoreServerPool(create_server=create_server, max_workers=workers) as pool: + + proofs = tests.copy() + + while len(proofs) > 0 or len(futures) > 0: + + if len(proofs) > 0: + proof = proofs.pop() + futures[proof[0]] = pool.submit(_init_and_run_proof, _split_test(proof)) + + if len(futures) > 0: + done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] + futures = {_proof: future for (_proof, future) in futures.items() if not future.done()} + for _proof, future in done_futures: + results[_proof] = future.result() + subproofs = results[_proof][1].subproofs + for subproof in subproofs: + proofs.append((subproof.id, None)) + + + print(f'proofs: {proofs}') + print(f'futures: {futures}') + print(f'results: {results}') + print('') + + time.sleep(1) + +# done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] +# for _proof, future in done_futures: +# results[_proof] = future.result() +# subproofs = results[_proof][1].subproofs +# for subproof in subproofs: +# proofs.append((subproof.id, None)) + + print(tests) + print(results.values()) + + +# _apr_proofs: list[tuple[bool, list[str] | None]] +# if workers > 1: +# with ProcessPool(ncpus=workers) as process_pool: +# _apr_proofs = process_pool.map(_init_and_run_proof, init_problems) +# else: +# _apr_proofs = [] +# for init_problem in init_problems: +# _apr_proofs.append(_init_and_run_proof(init_problem)) +# + apr_proofs = dict(zip(tests, [(result, logs) for result, _, logs in results.values()], strict=True)) return apr_proofs _LOGGER.info(f'Running setup functions in parallel: {list(setup_methods.values())}') From cd06fab83965a53c7642ccca5ef9247be9eca243 Mon Sep 17 00:00:00 2001 From: devops Date: Thu, 7 Sep 2023 22:57:44 +0000 Subject: [PATCH 02/44] Set Version: 1.0.290 --- kevm-pyk/pyproject.toml | 2 +- package/debian/changelog | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 9512696aee..3c424b7326 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.286" +version = "1.0.290" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/package/debian/changelog b/package/debian/changelog index 27122956db..ce342af9c9 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,4 +1,4 @@ -kevm (1.0.286) unstable; urgency=medium +kevm (1.0.290) unstable; urgency=medium * Initial Release. diff --git a/package/version b/package/version index c3ace87fe2..140bcfc2c1 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.286 +1.0.290 From 60df617ffb5f4676ad7cadb5e198173c1c446688 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Tue, 12 Sep 2023 20:55:08 -0500 Subject: [PATCH 03/44] Restructure tasks to use a shared KoreServer for all proofs for the same method --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__main__.py | 2 +- kevm-pyk/src/kontrol/foundry.py | 222 +++++++++++++----- .../tests/integration/test_foundry_prove.py | 19 +- 4 files changed, 172 insertions(+), 73 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 9512696aee..03253c0595 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -17,7 +17,7 @@ packages = [ [tool.poetry.dependencies] python = "^3.10" pathos = "*" -pyk = { git = "https://github.com/runtimeverification/pyk.git", tag="v0.1.431" } +pyk = { path = "/home/noah/dev/pyk", develop=true } tomlkit = "^0.11.6" [tool.poetry.group.dev.dependencies] diff --git a/kevm-pyk/src/kevm_pyk/__main__.py b/kevm-pyk/src/kevm_pyk/__main__.py index 35e20011e4..2294b68697 100644 --- a/kevm-pyk/src/kevm_pyk/__main__.py +++ b/kevm-pyk/src/kevm_pyk/__main__.py @@ -494,7 +494,7 @@ def exec_run( kore_pgm = kevm.kast_to_kore(kast_pgm, sort=KSort('EthereumSimulation')) kore_pattern = kore_pgm_to_kore(kore_pgm, SORT_ETHEREUM_SIMULATION, schedule, mode, chainid) - kevm.run_kore( + kevm.run( kore_pattern, depth=depth, term=True, diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index dc2aeb1582..be5b58eb43 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -1,17 +1,18 @@ from __future__ import annotations -import time import json import logging import os import re import shutil import sys +import time +from concurrent.futures import ThreadPoolExecutor from functools import cached_property from os import listdir from pathlib import Path from subprocess import CalledProcessError -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, Callable import tomlkit from pyk.cterm import CTerm @@ -19,7 +20,6 @@ from pyk.kast.manip import free_vars, minimize_term from pyk.kast.outer import KDefinition, KFlatModule, KImport, KRequire from pyk.kcfg import KCFG -from pyk.kore.pool import KoreServerPool from pyk.kore.rpc import kore_server from pyk.prelude.bytes import bytesToken from pyk.prelude.k import GENERATED_TOP_CELL @@ -415,10 +415,13 @@ def help_info() -> list[str]: return res_lines def proofs_with_test(self, test: str) -> list[Proof]: +# print([pid.split(':')[0] for pid in listdir(self.proofs_dir)]) +# print(single(self._escape_brackets([test]))) proofs = [ self.get_optional_proof(pid) for pid in listdir(self.proofs_dir) - if re.search(single(self._escape_brackets([test])), pid.split(':')[0]) +# if re.search(single(self._escape_brackets([test])), pid.split(':')[0]) + if test == pid.split(':')[0] ] return [proof for proof in proofs if proof is not None] @@ -634,7 +637,7 @@ def foundry_prove( trace_rewrites: bool = False, auto_abstract_gas: bool = False, port: int | None = None, -) -> dict[tuple[str, str | None], tuple[bool, list[str] | None]]: +) -> dict[str, tuple[bool, list[str] | None]]: if workers <= 0: raise ValueError(f'Must have at least one worker, found: --workers {workers}') if max_iterations is not None and max_iterations < 0: @@ -718,15 +721,63 @@ def foundry_prove( assert id is not None tests[i] = (test, id) - def _init_and_run_proof(dummy: int, _init_problem: tuple[str, str, str | None]) -> tuple[bool, APRProof, list[str] | None]: + def _run_proof(_init_problem: tuple[int, Proof]) -> tuple[bool, Proof, list[str] | None]: + port, proof = _init_problem + + llvm_definition_dir = foundry.llvm_library if use_booster else None + start_server = port is None + + with legacy_explore( + foundry.kevm, + kcfg_semantics=KEVMSemantics(auto_abstract_gas=auto_abstract_gas), + id=proof.id, + bug_report=br, + kore_rpc_command=kore_rpc_command, + llvm_definition_dir=llvm_definition_dir, + smt_timeout=smt_timeout, + smt_retry_limit=smt_retry_limit, + trace_rewrites=trace_rewrites, + start_server=start_server, + port=port, + ) as kcfg_explore: + passed = kevm_prove( + foundry.kevm, + proof, + kcfg_explore, + max_depth=max_depth, + max_iterations=max_iterations, + break_every_step=break_every_step, + break_on_jumpi=break_on_jumpi, + break_on_calls=break_on_calls, + ) + failure_log = None + if not passed: + failure_log = print_failure_info(proof, kcfg_explore, counterexample_info) + return ( + passed, + proof, + failure_log, + ) + + def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> tuple[bool, APRProof, list[str] | None]: contract_name, method_sig, id = _init_problem contract = foundry.contracts[contract_name] method = contract.method_by_sig[method_sig] - id = ':' + id if id is not None else '' - test_id = f'{contract_name}.{method_sig}{id}' + id_prefix = ':' + id if id is not None else '' + test_id = f'{contract_name}.{method_sig}{id_prefix}' + + print(f'test_id: {test_id}') + llvm_definition_dir = foundry.llvm_library if use_booster else None - start_server = port is None + # start_server = port is None + + def generate_subproof_name(node: int) -> str: + return ( + f'{contract.name}.{method.signature}_node_{node}:{id}' + if id + else f'{contract.name}.{method.signature}_node_{node}:{id}' + ) with legacy_explore( foundry.kevm, @@ -738,7 +789,7 @@ def _init_and_run_proof(dummy: int, _init_problem: tuple[str, str, str | None]) smt_timeout=smt_timeout, smt_retry_limit=smt_retry_limit, trace_rewrites=trace_rewrites, - start_server=start_server, + # start_server=start_server, port=port, ) as kcfg_explore: proof = _method_to_apr_proof( @@ -750,6 +801,7 @@ def _init_and_run_proof(dummy: int, _init_problem: tuple[str, str, str | None]) test_id, simplify_init=simplify_init, bmc_depth=bmc_depth, + generate_subproof_name=generate_subproof_name, ) passed = kevm_prove( @@ -765,81 +817,123 @@ def _init_and_run_proof(dummy: int, _init_problem: tuple[str, str, str | None]) failure_log = None if not passed: failure_log = print_failure_info(proof, kcfg_explore, counterexample_info) - return passed, proof, failure_log, + return ( + passed, + proof, + failure_log, + ) - def run_cfg_group( - tests: list[tuple[str, str | None]] - ) -> dict[tuple[str, str | None], tuple[bool, list[str] | None]]: - def _split_test(test: tuple[str, str | None]) -> tuple[str, str, str | None]: - test_name, id = test - contract, method = test_name.split('.') - return contract, method, id + def run_cfg_group(tests: list[tuple[str, str | None]]) -> dict[str, tuple[bool, list[str] | None]]: + # def _split_test(test: tuple[str, str | None]) -> tuple[int, str, str, str | None]: + # test_name, id = test + # contract, method = test_name.split('.') + # return contract, method, id llvm_definition_dir = foundry.llvm_library if use_booster else None - def create_server() -> KoreServer: return kore_server( definition_dir=foundry.kevm.definition_dir, llvm_definition_dir=llvm_definition_dir, module_name=foundry.kevm.main_module, - port=port, command=kore_rpc_command, bug_report=br, smt_timeout=smt_timeout, smt_retry_limit=smt_retry_limit, ) + class Task: + ... + + class CreateAndRunTask(Task): + _test: str + _id: str | None + + def __init__(self, test: str, id: str | None): + self._test = test + self._id = id + + class RunTask(Task): + _proof: Proof + _port: int + + def __init__(self, proof: Proof, port: int): + self._proof = proof + self._port = port + results = {} futures: dict[str, Future] = {} - with KoreServerPool(create_server=create_server, max_workers=workers) as pool: + executor = ThreadPoolExecutor(max_workers=workers) - proofs = tests.copy() + tasks: list[Task] = [CreateAndRunTask(test, id) for test, id in tests] + print('tasks:') + for task in tasks: + print(f'{task._test} {task._id}') + print('') - while len(proofs) > 0 or len(futures) > 0: + base_proofs = {test: test for test, _ in tests} - if len(proofs) > 0: - proof = proofs.pop() - futures[proof[0]] = pool.submit(_init_and_run_proof, _split_test(proof)) + servers = {} - if len(futures) > 0: - done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] - futures = {_proof: future for (_proof, future) in futures.items() if not future.done()} - for _proof, future in done_futures: - results[_proof] = future.result() - subproofs = results[_proof][1].subproofs - for subproof in subproofs: - proofs.append((subproof.id, None)) + for test, _ in tests: + servers[test] = create_server() + while len(tasks) > 0 or len(futures) > 0: + if len(tasks) > 0: + task = tasks.pop() - print(f'proofs: {proofs}') - print(f'futures: {futures}') - print(f'results: {results}') - print('') + if type(task) is CreateAndRunTask: + contract, method = task._test.split('.') - time.sleep(1) + futures[task._test] = executor.submit(_init_and_run_proof, (contract, method, task._id)) -# done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] -# for _proof, future in done_futures: -# results[_proof] = future.result() -# subproofs = results[_proof][1].subproofs -# for subproof in subproofs: -# proofs.append((subproof.id, None)) - - print(tests) - print(results.values()) + elif type(task) is RunTask: + futures[task._proof.id] = executor.submit(_run_proof, (task._port, task._proof)) + + if len(futures) > 0: + done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] + futures = {_proof: future for (_proof, future) in futures.items() if not future.done()} + for _proof, future in done_futures: + results[_proof] = future.result() + proof = results[_proof][1] + + subproofs = proof.subproofs + print(f'subproofs: {subproofs}') + for subproof in subproofs: + base_proofs[subproof.id] = base_proofs[_proof] + port = servers[base_proofs[subproof.id]].port + tasks.append(RunTask(subproof, port)) + + print(f'tasks: {tasks}') + print(f'futures: {futures}') + print(f'results: {results}') + print('') + time.sleep(1) + executor.shutdown() -# _apr_proofs: list[tuple[bool, list[str] | None]] -# if workers > 1: -# with ProcessPool(ncpus=workers) as process_pool: -# _apr_proofs = process_pool.map(_init_and_run_proof, init_problems) -# else: -# _apr_proofs = [] -# for init_problem in init_problems: -# _apr_proofs.append(_init_and_run_proof(init_problem)) -# - apr_proofs = dict(zip(tests, [(result, logs) for result, _, logs in results.values()], strict=True)) + # done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] + # for _proof, future in done_futures: + # results[_proof] = future.result() + # subproofs = results[_proof][1].subproofs + # for subproof in subproofs: + # proofs.append((subproof.id, None)) + + result_keys = results.keys() + print(result_keys) + print(results.values()) + + # _apr_proofs: list[tuple[bool, list[str] | None]] + # if workers > 1: + # with ProcessPool(ncpus=workers) as process_pool: + # _apr_proofs = process_pool.map(_init_and_run_proof, init_problems) + # else: + # _apr_proofs = [] + # for init_problem in init_problems: + # _apr_proofs.append(_init_and_run_proof(init_problem)) + # + # return results + apr_proofs = {key: (result, logs) for (key, (result, _, logs)) in results.items()} return apr_proofs _LOGGER.info(f'Running setup functions in parallel: {list(setup_methods.values())}') @@ -1227,6 +1321,7 @@ def _method_to_apr_proof( test_id: str, simplify_init: bool = True, bmc_depth: int | None = None, + generate_subproof_name: Callable[[int], str] | None = None, ) -> APRProof | APRBMCProof: contract_name = contract.name method_sig = method.signature @@ -1276,7 +1371,16 @@ def _method_to_apr_proof( proof_dir=save_directory, ) else: - apr_proof = APRProof(test_id, kcfg, [], init_node_id, target_node_id, {}, proof_dir=save_directory) + apr_proof = APRProof( + test_id, + kcfg, + [], + init_node_id, + target_node_id, + {}, + proof_dir=save_directory, + generate_subproof_name=generate_subproof_name, + ) apr_proof.write_proof_data() return apr_proof diff --git a/kevm-pyk/src/tests/integration/test_foundry_prove.py b/kevm-pyk/src/tests/integration/test_foundry_prove.py index bc3cfd348b..f77017b862 100644 --- a/kevm-pyk/src/tests/integration/test_foundry_prove.py +++ b/kevm-pyk/src/tests/integration/test_foundry_prove.py @@ -309,25 +309,19 @@ def test_foundry_remove_node(foundry_root: Path, update_expected_output: bool, s assert_pass(test, prove_res) -def assert_pass(test: str, prove_res: dict[tuple[str, str | None], tuple[bool, list[str] | None]]) -> None: - id = id_for_test(test, prove_res) - passed, log = prove_res[(test, id)] +def assert_pass(test: str, prove_res: dict[str, tuple[bool, list[str] | None]]) -> None: + passed, log = prove_res[test] if not passed: assert log pytest.fail('\n'.join(log)) -def assert_fail(test: str, prove_res: dict[tuple[str, str | None], tuple[bool, list[str] | None]]) -> None: - id = id_for_test(test, prove_res) - passed, log = prove_res[test, id] +def assert_fail(test: str, prove_res: dict[str, tuple[bool, list[str] | None]]) -> None: + passed, log = prove_res[test] assert not passed assert log -def id_for_test(test: str, prove_res: dict[tuple[str, str | None], tuple[bool, list[str] | None]]) -> str: - return single(_id for _test, _id in prove_res.keys() if _test == test and _id is not None) - - def assert_or_update_show_output(show_res: str, expected_file: Path, *, update: bool) -> None: assert expected_file.is_file() @@ -357,15 +351,16 @@ def test_foundry_resume_proof(foundry_root: Path, update_expected_output: bool, foundry = Foundry(foundry_root) test = 'AssumeTest.test_assume_false(uint256,uint256)' + id = '1' + prove_res = foundry_prove( foundry_root, - tests=[(test, None)], + tests=[(test, id)], auto_abstract_gas=True, max_iterations=4, reinit=True, port=server.port, ) - id = id_for_test(test, prove_res) proof = foundry.get_apr_proof(f'{test}:{id}') assert proof.pending From f60c1bc4e56bcdb574d3d70bc20c790926f04b1b Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Thu, 14 Sep 2023 20:11:42 -0500 Subject: [PATCH 04/44] Fix failure reporting to work with split proof --- kevm-pyk/src/kevm_pyk/utils.py | 2 +- kevm-pyk/src/kontrol/__main__.py | 35 ++++++++++++--- kevm-pyk/src/kontrol/foundry.py | 45 +++++++++---------- .../tests/integration/test_foundry_prove.py | 13 +++--- tests/foundry/test/Simple.t.sol | 19 ++++++++ 5 files changed, 76 insertions(+), 38 deletions(-) diff --git a/kevm-pyk/src/kevm_pyk/utils.py b/kevm-pyk/src/kevm_pyk/utils.py index 03cdceb911..01de383de3 100644 --- a/kevm-pyk/src/kevm_pyk/utils.py +++ b/kevm-pyk/src/kevm_pyk/utils.py @@ -82,7 +82,7 @@ def kevm_prove( break_on_calls: bool = True, extract_branches: Callable[[CTerm], Iterable[KInner]] | None = None, abstract_node: Callable[[CTerm], CTerm] | None = None, - max_branches: int | None = 1, + max_branches: int | None = None, ) -> bool: proof = proof terminal_rules = ['EVM.halt'] diff --git a/kevm-pyk/src/kontrol/__main__.py b/kevm-pyk/src/kontrol/__main__.py index 402b0ea57f..c4714fcaf5 100644 --- a/kevm-pyk/src/kontrol/__main__.py +++ b/kevm-pyk/src/kontrol/__main__.py @@ -9,6 +9,7 @@ from typing import TYPE_CHECKING from pyk.cli.utils import file_path +from pyk.proof.proof import ProofStatus from pyk.proof.tui import APRProofViewer from kevm_pyk.cli import KEVMCLIArgs, node_id_like @@ -164,6 +165,7 @@ def exec_foundry_prove( counterexample_info: bool = False, trace_rewrites: bool = False, auto_abstract_gas: bool = False, + max_branches: int | None = None, **kwargs: Any, ) -> None: _ignore_arg(kwargs, 'main_module', f'--main-module: {kwargs["main_module"]}') @@ -200,20 +202,32 @@ def exec_foundry_prove( smt_retry_limit=smt_retry_limit, trace_rewrites=trace_rewrites, auto_abstract_gas=auto_abstract_gas, + max_branches=max_branches, ) failed = 0 - for pid, r in results.items(): - passed, failure_log = r - if passed: - print(f'PROOF PASSED: {pid}') - else: - failed += 1 - print(f'PROOF FAILED: {pid}') + for proof, failure_log in results: + if proof.passed: + print(f'PROOF PASSED: {proof.id}') + elif proof.status == ProofStatus.PENDING: + print(f'PROOF PENDING: {proof.id}') + elif proof.failed: + print(f'PROOF FAILED: {proof.id}') if failure_info and failure_log is not None: failure_log += Foundry.help_info() for line in failure_log: print(line) + # passed, failure_log = r + # if passed: + # print(f'PROOF PASSED: {pid}') + # else: + # failed += 1 + # print(f'PROOF FAILED: {pid}') + # if failure_info and failure_log is not None: + # failure_log += Foundry.help_info() + # for line in failure_log: + # print(line) + sys.exit(failed) @@ -519,6 +533,13 @@ def _parse_test_id_tuple(value: str) -> tuple[str, str | None]: type=int, help='Enables bounded model checking. Specifies the maximum depth to unroll all loops to.', ) + foundry_prove_args.add_argument( + '--max-branches', + dest='max_branches', + default=None, + type=int, + help='Enables subproof splitting when the number of pending nodes exceeds max_branches', + ) foundry_prove_args.add_argument( '--use-booster', dest='use_booster', diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index be5b58eb43..f95e5d028d 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -415,12 +415,12 @@ def help_info() -> list[str]: return res_lines def proofs_with_test(self, test: str) -> list[Proof]: -# print([pid.split(':')[0] for pid in listdir(self.proofs_dir)]) -# print(single(self._escape_brackets([test]))) + # print([pid.split(':')[0] for pid in listdir(self.proofs_dir)]) + # print(single(self._escape_brackets([test]))) proofs = [ self.get_optional_proof(pid) for pid in listdir(self.proofs_dir) -# if re.search(single(self._escape_brackets([test])), pid.split(':')[0]) + # if re.search(single(self._escape_brackets([test])), pid.split(':')[0]) if test == pid.split(':')[0] ] return [proof for proof in proofs if proof is not None] @@ -637,7 +637,8 @@ def foundry_prove( trace_rewrites: bool = False, auto_abstract_gas: bool = False, port: int | None = None, -) -> dict[str, tuple[bool, list[str] | None]]: + max_branches: int | None = None, +) -> list[tuple[Proof, list[str] | None]]: if workers <= 0: raise ValueError(f'Must have at least one worker, found: --workers {workers}') if max_iterations is not None and max_iterations < 0: @@ -721,7 +722,7 @@ def foundry_prove( assert id is not None tests[i] = (test, id) - def _run_proof(_init_problem: tuple[int, Proof]) -> tuple[bool, Proof, list[str] | None]: + def _run_proof(_init_problem: tuple[int, Proof]) -> tuple[Proof, list[str] | None]: port, proof = _init_problem llvm_definition_dir = foundry.llvm_library if use_booster else None @@ -749,17 +750,17 @@ def _run_proof(_init_problem: tuple[int, Proof]) -> tuple[bool, Proof, list[str] break_every_step=break_every_step, break_on_jumpi=break_on_jumpi, break_on_calls=break_on_calls, + max_branches=max_branches, ) failure_log = None if not passed: failure_log = print_failure_info(proof, kcfg_explore, counterexample_info) return ( - passed, proof, failure_log, ) - def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> tuple[bool, APRProof, list[str] | None]: + def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> tuple[APRProof, list[str] | None]: contract_name, method_sig, id = _init_problem contract = foundry.contracts[contract_name] method = contract.method_by_sig[method_sig] @@ -813,17 +814,17 @@ def generate_subproof_name(node: int) -> str: break_every_step=break_every_step, break_on_jumpi=break_on_jumpi, break_on_calls=break_on_calls, + max_branches=max_branches, ) failure_log = None if not passed: failure_log = print_failure_info(proof, kcfg_explore, counterexample_info) return ( - passed, proof, failure_log, ) - def run_cfg_group(tests: list[tuple[str, str | None]]) -> dict[str, tuple[bool, list[str] | None]]: + def run_cfg_group(tests: list[tuple[str, str | None]]) -> list[tuple[Proof, list[str] | None]]: # def _split_test(test: tuple[str, str | None]) -> tuple[int, str, str, str | None]: # test_name, id = test # contract, method = test_name.split('.') @@ -861,18 +862,12 @@ def __init__(self, proof: Proof, port: int): self._proof = proof self._port = port - results = {} + results = [] futures: dict[str, Future] = {} executor = ThreadPoolExecutor(max_workers=workers) tasks: list[Task] = [CreateAndRunTask(test, id) for test, id in tests] - print('tasks:') - for task in tasks: - print(f'{task._test} {task._id}') - print('') - base_proofs = {test: test for test, _ in tests} - servers = {} for test, _ in tests: @@ -894,8 +889,9 @@ def __init__(self, proof: Proof, port: int): done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] futures = {_proof: future for (_proof, future) in futures.items() if not future.done()} for _proof, future in done_futures: - results[_proof] = future.result() - proof = results[_proof][1] + result = future.result() + results.append(result) + proof = result[0] subproofs = proof.subproofs print(f'subproofs: {subproofs}') @@ -919,9 +915,7 @@ def __init__(self, proof: Proof, port: int): # for subproof in subproofs: # proofs.append((subproof.id, None)) - result_keys = results.keys() - print(result_keys) - print(results.values()) + print(results) # _apr_proofs: list[tuple[bool, list[str] | None]] # if workers > 1: @@ -932,13 +926,14 @@ def __init__(self, proof: Proof, port: int): # for init_problem in init_problems: # _apr_proofs.append(_init_and_run_proof(init_problem)) # - # return results - apr_proofs = {key: (result, logs) for (key, (result, _, logs)) in results.items()} - return apr_proofs + return results + + # apr_proofs = {key: (result, logs) for (key, (result, _, logs)) in results.items()} + # return apr_proofs _LOGGER.info(f'Running setup functions in parallel: {list(setup_methods.values())}') results = run_cfg_group([(method, None) for method in setup_methods.values()]) - failed = [setup_cfg for setup_cfg, passed in results.items() if not passed] + failed = [proof.id for proof, _ in results if not proof.passed] if failed: raise ValueError(f'Running setUp method failed for {len(failed)} contracts: {failed}') diff --git a/kevm-pyk/src/tests/integration/test_foundry_prove.py b/kevm-pyk/src/tests/integration/test_foundry_prove.py index f77017b862..12c228502b 100644 --- a/kevm-pyk/src/tests/integration/test_foundry_prove.py +++ b/kevm-pyk/src/tests/integration/test_foundry_prove.py @@ -27,6 +27,7 @@ from typing import Final from pyk.kore.rpc import KoreServer + from pyk.proof.proof import Proof from pytest import TempPathFactory @@ -309,15 +310,17 @@ def test_foundry_remove_node(foundry_root: Path, update_expected_output: bool, s assert_pass(test, prove_res) -def assert_pass(test: str, prove_res: dict[str, tuple[bool, list[str] | None]]) -> None: - passed, log = prove_res[test] - if not passed: +def assert_pass(test: str, prove_res: list[tuple[Proof, list[str] | None]]) -> None: + proof_dict = {proof.id: (proof, failure_info) for proof, failure_info in prove_res} + proof, log = proof_dict[test] + if not proof.passed: assert log pytest.fail('\n'.join(log)) -def assert_fail(test: str, prove_res: dict[str, tuple[bool, list[str] | None]]) -> None: - passed, log = prove_res[test] +def assert_fail(test: str, prove_res: list[tuple[Proof, list[str] | None]]) -> None: + proof_dict = {proof.id: (proof, failure_info) for proof, failure_info in prove_res} + passed, log = proof_dict[test] assert not passed assert log diff --git a/tests/foundry/test/Simple.t.sol b/tests/foundry/test/Simple.t.sol index 1787b54f39..e7f5677d1f 100644 --- a/tests/foundry/test/Simple.t.sol +++ b/tests/foundry/test/Simple.t.sol @@ -17,6 +17,25 @@ contract AssertTest is Test, KEVMCheats { assert(true); } + function test_many_branches(uint x) public { + if (x < 1) { + y = 3; + } else if (x < 2) { + y = 3; + } else if (x < 3) { + y = 3; + } else if (x < 4) { + y = 3; + } else if (x < 5) { + y = 3; + } else if (x < 6) { + y = 3; + } else if (x < 7) { + y = 3; + } + assert(y == 3); + } + function test_assert_true_branch(uint x) public { if (x < 3) { y = x; From 25bf2ad0f1150d3a1b1d16ce7ff2bc467eaf820b Mon Sep 17 00:00:00 2001 From: devops Date: Fri, 15 Sep 2023 01:16:15 +0000 Subject: [PATCH 05/44] Set Version: 1.0.292 --- kevm-pyk/pyproject.toml | 2 +- package/debian/changelog | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 007096c12b..5ae63c2b33 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.291" +version = "1.0.292" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/package/debian/changelog b/package/debian/changelog index 6adae6f8ca..36f8fe7f0f 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,4 +1,4 @@ -kevm (1.0.291) unstable; urgency=medium +kevm (1.0.292) unstable; urgency=medium * Initial Release. diff --git a/package/version b/package/version index a2aba55638..3c89422dbd 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.291 +1.0.292 From cb3dad8c7933293e9821ba7adfc2d578318b6f85 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Thu, 14 Sep 2023 20:16:24 -0500 Subject: [PATCH 06/44] Fix merge --- kevm-pyk/src/kontrol/foundry.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 15b1493c0a..4f9ee92364 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -732,7 +732,7 @@ def _run_proof(_init_problem: tuple[int, Proof]) -> tuple[Proof, list[str] | Non foundry.kevm, kcfg_semantics=KEVMSemantics(auto_abstract_gas=auto_abstract_gas), id=proof.id, - bug_report=br, + bug_report=bug_report, kore_rpc_command=kore_rpc_command, llvm_definition_dir=llvm_definition_dir, smt_timeout=smt_timeout, @@ -838,7 +838,7 @@ def create_server() -> KoreServer: llvm_definition_dir=llvm_definition_dir, module_name=foundry.kevm.main_module, command=kore_rpc_command, - bug_report=br, + bug_report=bug_report, smt_timeout=smt_timeout, smt_retry_limit=smt_retry_limit, ) From 269dddc6e731c3b76d44f585cdc3aef41b052c53 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 16:22:52 -0500 Subject: [PATCH 07/44] Fix subproofs overwriting each other --- kevm-pyk/src/kontrol/foundry.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 4f9ee92364..0e0f500527 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -773,11 +773,14 @@ def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> tuple[APR # start_server = port is None - def generate_subproof_name(node: int) -> str: + def generate_subproof_name(proof: APRProof, node: int) -> str: + + id_without_version = proof.id.split(':')[0] + return ( - f'{contract.name}.{method.signature}_node_{node}:{id}' + f'{id_without_version}_node_{node}:{id}' if id - else f'{contract.name}.{method.signature}_node_{node}:{id}' + else f'{id_without_version}_node_{node}:{id}' ) with legacy_explore( @@ -1312,7 +1315,7 @@ def _method_to_apr_proof( test_id: str, simplify_init: bool = True, bmc_depth: int | None = None, - generate_subproof_name: Callable[[int], str] | None = None, + generate_subproof_name: Callable[[APRProof, int], str] | None = None, ) -> APRProof | APRBMCProof: contract_name = contract.name method_sig = method.signature From 3be4c85668895ae1d3f1bc00ed64601d93b68065 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 16:27:16 -0500 Subject: [PATCH 08/44] Fix formatting --- kevm-pyk/src/kontrol/foundry.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 0e0f500527..78f5ac67d7 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -774,14 +774,9 @@ def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> tuple[APR # start_server = port is None def generate_subproof_name(proof: APRProof, node: int) -> str: - id_without_version = proof.id.split(':')[0] - return ( - f'{id_without_version}_node_{node}:{id}' - if id - else f'{id_without_version}_node_{node}:{id}' - ) + return f'{id_without_version}_node_{node}:{id}' if id else f'{id_without_version}_node_{node}:{id}' with legacy_explore( foundry.kevm, From e3e38072854c578fe5291ecbb238c2615dc5bb4f Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 16:28:35 -0500 Subject: [PATCH 09/44] Make test have 2 long branches --- tests/foundry/test/Simple.t.sol | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/tests/foundry/test/Simple.t.sol b/tests/foundry/test/Simple.t.sol index e7f5677d1f..0c64a23d61 100644 --- a/tests/foundry/test/Simple.t.sol +++ b/tests/foundry/test/Simple.t.sol @@ -20,20 +20,15 @@ contract AssertTest is Test, KEVMCheats { function test_many_branches(uint x) public { if (x < 1) { y = 3; - } else if (x < 2) { - y = 3; - } else if (x < 3) { - y = 3; - } else if (x < 4) { - y = 3; - } else if (x < 5) { - y = 3; - } else if (x < 6) { - y = 3; - } else if (x < 7) { - y = 3; + assert(true); + } else { + y = 4; + assert(true); + } + for(uint i=0; i<10; i++){ + y = y + 1; } - assert(y == 3); + assert(y >= 13); } function test_assert_true_branch(uint x) public { From 2f8422be5069a5703bb7e20ffc19bf727fd15cc4 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 19:03:01 -0500 Subject: [PATCH 10/44] Remove passing around of failure log --- kevm-pyk/src/kontrol/__main__.py | 16 ++-------- kevm-pyk/src/kontrol/foundry.py | 30 ++++++------------- .../tests/integration/test_foundry_prove.py | 21 +++++++------ 3 files changed, 22 insertions(+), 45 deletions(-) diff --git a/kevm-pyk/src/kontrol/__main__.py b/kevm-pyk/src/kontrol/__main__.py index 3e3e8ed657..0babe0667e 100644 --- a/kevm-pyk/src/kontrol/__main__.py +++ b/kevm-pyk/src/kontrol/__main__.py @@ -206,29 +206,19 @@ def exec_foundry_prove( max_branches=max_branches, ) failed = 0 - for proof, failure_log in results: + for proof in results: if proof.passed: print(f'PROOF PASSED: {proof.id}') elif proof.status == ProofStatus.PENDING: print(f'PROOF PENDING: {proof.id}') elif proof.failed: print(f'PROOF FAILED: {proof.id}') - if failure_info and failure_log is not None: + if failure_info and proof.failure_info is not None: + failure_log = proof.failure_info.print() failure_log += Foundry.help_info() for line in failure_log: print(line) - # passed, failure_log = r - # if passed: - # print(f'PROOF PASSED: {pid}') - # else: - # failed += 1 - # print(f'PROOF FAILED: {pid}') - # if failure_info and failure_log is not None: - # failure_log += Foundry.help_info() - # for line in failure_log: - # print(line) - sys.exit(failed) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 78f5ac67d7..5d48eeae41 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -639,7 +639,7 @@ def foundry_prove( auto_abstract_gas: bool = False, port: int | None = None, max_branches: int | None = None, -) -> list[tuple[Proof, list[str] | None]]: +) -> list[APRProof]: if workers <= 0: raise ValueError(f'Must have at least one worker, found: --workers {workers}') if max_iterations is not None and max_iterations < 0: @@ -722,7 +722,7 @@ def foundry_prove( assert id is not None tests[i] = (test, id) - def _run_proof(_init_problem: tuple[int, Proof]) -> tuple[Proof, list[str] | None]: + def _run_proof(_init_problem: tuple[int, Proof]) -> Proof: port, proof = _init_problem llvm_definition_dir = foundry.llvm_library if use_booster else None @@ -741,7 +741,7 @@ def _run_proof(_init_problem: tuple[int, Proof]) -> tuple[Proof, list[str] | Non start_server=start_server, port=port, ) as kcfg_explore: - passed = kevm_prove( + kevm_prove( foundry.kevm, proof, kcfg_explore, @@ -752,15 +752,9 @@ def _run_proof(_init_problem: tuple[int, Proof]) -> tuple[Proof, list[str] | Non break_on_calls=break_on_calls, max_branches=max_branches, ) - failure_log = None - if not passed: - failure_log = print_failure_info(proof, kcfg_explore, counterexample_info) - return ( - proof, - failure_log, - ) + return proof - def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> tuple[APRProof, list[str] | None]: + def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> APRProof: contract_name, method_sig, id = _init_problem contract = foundry.contracts[contract_name] method = contract.method_by_sig[method_sig] @@ -803,7 +797,7 @@ def generate_subproof_name(proof: APRProof, node: int) -> str: generate_subproof_name=generate_subproof_name, ) - passed = kevm_prove( + kevm_prove( foundry.kevm, proof, kcfg_explore, @@ -814,15 +808,9 @@ def generate_subproof_name(proof: APRProof, node: int) -> str: break_on_calls=break_on_calls, max_branches=max_branches, ) - failure_log = None - if not passed: - failure_log = print_failure_info(proof, kcfg_explore, counterexample_info) - return ( - proof, - failure_log, - ) + return proof - def run_cfg_group(tests: list[tuple[str, str | None]]) -> list[tuple[Proof, list[str] | None]]: + def run_cfg_group(tests: list[tuple[str, str | None]]) -> list[APRProof]: # def _split_test(test: tuple[str, str | None]) -> tuple[int, str, str, str | None]: # test_name, id = test # contract, method = test_name.split('.') @@ -931,7 +919,7 @@ def __init__(self, proof: Proof, port: int): _LOGGER.info(f'Running setup functions in parallel: {list(setup_methods.values())}') results = run_cfg_group([(method, None) for method in setup_methods.values()]) - failed = [proof.id for proof, _ in results if not proof.passed] + failed = [proof.id for proof in results if not proof.passed] if failed: raise ValueError(f'Running setUp method failed for {len(failed)} contracts: {failed}') diff --git a/kevm-pyk/src/tests/integration/test_foundry_prove.py b/kevm-pyk/src/tests/integration/test_foundry_prove.py index add6af0256..ae8e8d9c94 100644 --- a/kevm-pyk/src/tests/integration/test_foundry_prove.py +++ b/kevm-pyk/src/tests/integration/test_foundry_prove.py @@ -27,7 +27,6 @@ from typing import Final from pyk.kore.rpc import KoreServer - from pyk.proof.proof import Proof from pyk.utils import BugReport from pytest import TempPathFactory @@ -333,19 +332,19 @@ def test_foundry_remove_node( assert_pass(test, prove_res) -def assert_pass(test: str, prove_res: list[tuple[Proof, list[str] | None]]) -> None: - proof_dict = {proof.id: (proof, failure_info) for proof, failure_info in prove_res} - proof, log = proof_dict[test] +def assert_pass(test: str, prove_res: list[APRProof]) -> None: + proof_dict = {proof.id: proof for proof in prove_res} + proof = proof_dict[test] if not proof.passed: - assert log - pytest.fail('\n'.join(log)) + assert proof.failure_info is not None + pytest.fail('\n'.join(proof.failure_info.print())) -def assert_fail(test: str, prove_res: list[tuple[Proof, list[str] | None]]) -> None: - proof_dict = {proof.id: (proof, failure_info) for proof, failure_info in prove_res} - passed, log = proof_dict[test] - assert not passed - assert log +def assert_fail(test: str, prove_res: list[APRProof]) -> None: + proof_dict = {proof.id: proof for proof in prove_res} + proof = proof_dict[test] + assert not proof.passed + assert proof.failure_info is not None def assert_or_update_show_output(show_res: str, expected_file: Path, *, update: bool) -> None: From eb6c48bb7513e42cff2659caf89785431e484d5b Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 19:04:20 -0500 Subject: [PATCH 11/44] Remove unused parameter --- kevm-pyk/src/kontrol/foundry.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 5d48eeae41..bf585b5419 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -633,7 +633,6 @@ def foundry_prove( use_booster: bool = False, smt_timeout: int | None = None, smt_retry_limit: int | None = None, - failure_info: bool = True, counterexample_info: bool = False, trace_rewrites: bool = False, auto_abstract_gas: bool = False, From 55c2331800c1d33bdcd613dfe3319a30aebad431 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 19:05:16 -0500 Subject: [PATCH 12/44] Remove commented lines --- kevm-pyk/src/kontrol/foundry.py | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index bf585b5419..25ed9cf271 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -810,11 +810,6 @@ def generate_subproof_name(proof: APRProof, node: int) -> str: return proof def run_cfg_group(tests: list[tuple[str, str | None]]) -> list[APRProof]: - # def _split_test(test: tuple[str, str | None]) -> tuple[int, str, str, str | None]: - # test_name, id = test - # contract, method = test_name.split('.') - # return contract, method, id - llvm_definition_dir = foundry.llvm_library if use_booster else None def create_server() -> KoreServer: @@ -893,29 +888,10 @@ def __init__(self, proof: Proof, port: int): time.sleep(1) executor.shutdown() - # done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] - # for _proof, future in done_futures: - # results[_proof] = future.result() - # subproofs = results[_proof][1].subproofs - # for subproof in subproofs: - # proofs.append((subproof.id, None)) - print(results) - # _apr_proofs: list[tuple[bool, list[str] | None]] - # if workers > 1: - # with ProcessPool(ncpus=workers) as process_pool: - # _apr_proofs = process_pool.map(_init_and_run_proof, init_problems) - # else: - # _apr_proofs = [] - # for init_problem in init_problems: - # _apr_proofs.append(_init_and_run_proof(init_problem)) - # return results - # apr_proofs = {key: (result, logs) for (key, (result, _, logs)) in results.items()} - # return apr_proofs - _LOGGER.info(f'Running setup functions in parallel: {list(setup_methods.values())}') results = run_cfg_group([(method, None) for method in setup_methods.values()]) failed = [proof.id for proof in results if not proof.passed] From e598e6c2125935b44feba7e155b6435337df163f Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 19:05:44 -0500 Subject: [PATCH 13/44] Remove commented lines --- kevm-pyk/src/kontrol/foundry.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 25ed9cf271..f70bb4b011 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -764,8 +764,6 @@ def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> APRProof: llvm_definition_dir = foundry.llvm_library if use_booster else None - # start_server = port is None - def generate_subproof_name(proof: APRProof, node: int) -> str: id_without_version = proof.id.split(':')[0] @@ -781,7 +779,6 @@ def generate_subproof_name(proof: APRProof, node: int) -> str: smt_timeout=smt_timeout, smt_retry_limit=smt_retry_limit, trace_rewrites=trace_rewrites, - # start_server=start_server, port=port, ) as kcfg_explore: proof = _method_to_apr_proof( From 17fbcc8c30e7aace6aae003c600cf7cc470484f4 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 19:39:54 -0500 Subject: [PATCH 14/44] Use wait() instead of sleep, remove print statements --- kevm-pyk/src/kontrol/foundry.py | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index f70bb4b011..6ef120d122 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -6,8 +6,7 @@ import re import shutil import sys -import time -from concurrent.futures import ThreadPoolExecutor +from concurrent.futures import ThreadPoolExecutor, wait from functools import cached_property from os import listdir from pathlib import Path @@ -760,8 +759,6 @@ def _init_and_run_proof(_init_problem: tuple[str, str, str | None]) -> APRProof: id_prefix = ':' + id if id is not None else '' test_id = f'{contract_name}.{method_sig}{id_prefix}' - print(f'test_id: {test_id}') - llvm_definition_dir = foundry.llvm_library if use_booster else None def generate_subproof_name(proof: APRProof, node: int) -> str: @@ -866,27 +863,18 @@ def __init__(self, proof: Proof, port: int): done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] futures = {_proof: future for (_proof, future) in futures.items() if not future.done()} for _proof, future in done_futures: - result = future.result() - results.append(result) - proof = result[0] + proof = future.result() + results.append(proof) subproofs = proof.subproofs - print(f'subproofs: {subproofs}') for subproof in subproofs: base_proofs[subproof.id] = base_proofs[_proof] port = servers[base_proofs[subproof.id]].port tasks.append(RunTask(subproof, port)) - print(f'tasks: {tasks}') - print(f'futures: {futures}') - print(f'results: {results}') - print('') - - time.sleep(1) + wait(futures.values()) executor.shutdown() - print(results) - return results _LOGGER.info(f'Running setup functions in parallel: {list(setup_methods.values())}') @@ -1364,7 +1352,6 @@ def _method_to_cfg( def get_final_accounts_cell(proof_id: str, proof_dir: Path) -> tuple[KInner, Iterable[KInner]]: - print(proof_id, proof_dir) apr_proof = APRProof.read_proof_data(proof_dir, proof_id) target = apr_proof.kcfg.node(apr_proof.target) target_states = apr_proof.kcfg.covers(target_id=target.id) From ac7e38f0702dd1a48b8b68a5a9b571c13639ab54 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 15 Sep 2023 21:00:54 -0500 Subject: [PATCH 15/44] Fix reporting as failing when pending --- kevm-pyk/src/kevm_pyk/utils.py | 3 +++ kevm-pyk/src/kontrol/__main__.py | 3 +-- kevm-pyk/src/tests/integration/test_foundry_prove.py | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/kevm-pyk/src/kevm_pyk/utils.py b/kevm-pyk/src/kevm_pyk/utils.py index 01de383de3..c35e7ba89a 100644 --- a/kevm-pyk/src/kevm_pyk/utils.py +++ b/kevm-pyk/src/kevm_pyk/utils.py @@ -129,6 +129,9 @@ def kevm_prove( if proof.passed: _LOGGER.info(f'Proof passed: {proof.id}') return True + elif proof.is_pending: + _LOGGER.info(f'Proof pending: {proof.id}') + return True else: _LOGGER.error(f'Proof failed: {proof.id}') return False diff --git a/kevm-pyk/src/kontrol/__main__.py b/kevm-pyk/src/kontrol/__main__.py index 0babe0667e..3951101627 100644 --- a/kevm-pyk/src/kontrol/__main__.py +++ b/kevm-pyk/src/kontrol/__main__.py @@ -9,7 +9,6 @@ from typing import TYPE_CHECKING from pyk.cli.utils import file_path -from pyk.proof.proof import ProofStatus from pyk.proof.tui import APRProofViewer from kevm_pyk.cli import KEVMCLIArgs, node_id_like @@ -209,7 +208,7 @@ def exec_foundry_prove( for proof in results: if proof.passed: print(f'PROOF PASSED: {proof.id}') - elif proof.status == ProofStatus.PENDING: + elif proof.is_pending: print(f'PROOF PENDING: {proof.id}') elif proof.failed: print(f'PROOF FAILED: {proof.id}') diff --git a/kevm-pyk/src/tests/integration/test_foundry_prove.py b/kevm-pyk/src/tests/integration/test_foundry_prove.py index ae8e8d9c94..3fe0606631 100644 --- a/kevm-pyk/src/tests/integration/test_foundry_prove.py +++ b/kevm-pyk/src/tests/integration/test_foundry_prove.py @@ -321,7 +321,7 @@ def test_foundry_remove_node( proof = single(foundry.proofs_with_test(test)) assert type(proof) is APRProof - assert proof.pending + assert proof.is_pending prove_res = foundry_prove( foundry_root, @@ -391,7 +391,7 @@ def test_foundry_resume_proof( ) proof = foundry.get_apr_proof(f'{test}:{id}') - assert proof.pending + assert proof.is_pending prove_res = foundry_prove( foundry_root, From 4f92dfca1b45c371a8d20f2c12113f60d272349d Mon Sep 17 00:00:00 2001 From: devops Date: Mon, 18 Sep 2023 23:07:37 +0000 Subject: [PATCH 16/44] Set Version: 1.0.294 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/debian/changelog | 2 +- package/version | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 3176dc9300..d4cb75dafe 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.293" +version = "1.0.294" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index 676cf0a922..84536090ea 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.293' +VERSION: Final = '1.0.294' diff --git a/package/debian/changelog b/package/debian/changelog index 8f516a82a6..eea2d9932f 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,4 +1,4 @@ -kevm (1.0.293) unstable; urgency=medium +kevm (1.0.294) unstable; urgency=medium * Initial Release. diff --git a/package/version b/package/version index f941baf156..d1deb38b8b 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.293 \ No newline at end of file +1.0.294 From 2653909ace995212d74b3076476868bc407916db Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Mon, 18 Sep 2023 18:30:12 -0500 Subject: [PATCH 17/44] Change name of proof pending function --- kevm-pyk/src/kevm_pyk/utils.py | 2 +- kevm-pyk/src/kontrol/__main__.py | 2 +- kevm-pyk/src/tests/integration/test_foundry_prove.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kevm-pyk/src/kevm_pyk/utils.py b/kevm-pyk/src/kevm_pyk/utils.py index c35e7ba89a..d080133b56 100644 --- a/kevm-pyk/src/kevm_pyk/utils.py +++ b/kevm-pyk/src/kevm_pyk/utils.py @@ -129,7 +129,7 @@ def kevm_prove( if proof.passed: _LOGGER.info(f'Proof passed: {proof.id}') return True - elif proof.is_pending: + elif proof.is_proof_pending: _LOGGER.info(f'Proof pending: {proof.id}') return True else: diff --git a/kevm-pyk/src/kontrol/__main__.py b/kevm-pyk/src/kontrol/__main__.py index 1067008c31..4f7c8d93ac 100644 --- a/kevm-pyk/src/kontrol/__main__.py +++ b/kevm-pyk/src/kontrol/__main__.py @@ -205,7 +205,7 @@ def exec_foundry_prove( for proof in results: if proof.passed: print(f'PROOF PASSED: {proof.id}') - elif proof.is_pending: + elif proof.is_proof_pending: print(f'PROOF PENDING: {proof.id}') elif proof.failed: print(f'PROOF FAILED: {proof.id}') diff --git a/kevm-pyk/src/tests/integration/test_foundry_prove.py b/kevm-pyk/src/tests/integration/test_foundry_prove.py index 3fe0606631..7a64dab9fe 100644 --- a/kevm-pyk/src/tests/integration/test_foundry_prove.py +++ b/kevm-pyk/src/tests/integration/test_foundry_prove.py @@ -321,7 +321,7 @@ def test_foundry_remove_node( proof = single(foundry.proofs_with_test(test)) assert type(proof) is APRProof - assert proof.is_pending + assert proof.is_proof_pending prove_res = foundry_prove( foundry_root, @@ -391,7 +391,7 @@ def test_foundry_resume_proof( ) proof = foundry.get_apr_proof(f'{test}:{id}') - assert proof.is_pending + assert proof.is_proof_pending prove_res = foundry_prove( foundry_root, From 255b03ae2b4f429cca8b4d3605f696c20e484822 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Mon, 18 Sep 2023 18:54:29 -0500 Subject: [PATCH 18/44] Switch to using git branch pyk version --- kevm-pyk/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index d4cb75dafe..2418c48a35 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -18,6 +18,7 @@ packages = [ python = "^3.10" pathos = "*" pyk = { path = "/home/noah/dev/pyk", develop=true } +pyk = { git = "https://github.com/runtimeverification/pyk.git", tag="noah/subproof-split" } tomlkit = "^0.11.6" xdg-base-dirs = "^6.0.0" From d3fa77793a2195d65a56af280756bd01b452a5ae Mon Sep 17 00:00:00 2001 From: Noah Watson <107630091+nwatson22@users.noreply.github.com> Date: Mon, 18 Sep 2023 19:24:07 -0500 Subject: [PATCH 19/44] Update kevm-pyk/pyproject.toml --- kevm-pyk/pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 2418c48a35..967e474e9b 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -17,7 +17,6 @@ packages = [ [tool.poetry.dependencies] python = "^3.10" pathos = "*" -pyk = { path = "/home/noah/dev/pyk", develop=true } pyk = { git = "https://github.com/runtimeverification/pyk.git", tag="noah/subproof-split" } tomlkit = "^0.11.6" xdg-base-dirs = "^6.0.0" From f73470a417ac0888f6b91d94ecb81a3dff000cb2 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Mon, 18 Sep 2023 19:43:13 -0500 Subject: [PATCH 20/44] Fix pyproject file --- kevm-pyk/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 967e474e9b..2a35a94407 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -17,7 +17,7 @@ packages = [ [tool.poetry.dependencies] python = "^3.10" pathos = "*" -pyk = { git = "https://github.com/runtimeverification/pyk.git", tag="noah/subproof-split" } +pyk = { git = "https://github.com/runtimeverification/pyk.git", branch="noah/subproof-split" } tomlkit = "^0.11.6" xdg-base-dirs = "^6.0.0" From 0d38413fe1a918e4517d635e435eefb10713406d Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Mon, 18 Sep 2023 19:46:03 -0500 Subject: [PATCH 21/44] update poetry.lock --- kevm-pyk/poetry.lock | 171 +++++++++++++++++++++++++++++-------------- 1 file changed, 116 insertions(+), 55 deletions(-) diff --git a/kevm-pyk/poetry.lock b/kevm-pyk/poetry.lock index eecb57cb72..f65aba73f6 100644 --- a/kevm-pyk/poetry.lock +++ b/kevm-pyk/poetry.lock @@ -1,9 +1,10 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. [[package]] name = "attrs" version = "23.1.0" description = "Classes Without Boilerplate" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -22,6 +23,7 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte name = "autoflake" version = "2.2.1" description = "Removes unused imports and unused variables" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -35,33 +37,34 @@ tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} [[package]] name = "black" -version = "23.7.0" +version = "23.9.1" description = "The uncompromising code formatter." +category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, - {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, - {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, - {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, - {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, - {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, - {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, - {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, - {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, - {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, - {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, - {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, - {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, - {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, - {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, - {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, - {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, - {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, - {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, - {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, - {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, - {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, ] [package.dependencies] @@ -71,6 +74,7 @@ packaging = ">=22.0" pathspec = ">=0.9.0" platformdirs = ">=2" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} [package.extras] colorama = ["colorama (>=0.4.3)"] @@ -82,6 +86,7 @@ uvloop = ["uvloop (>=0.15.2)"] name = "classify-imports" version = "4.2.0" description = "Utilities for refactoring imports in python-like syntax." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -93,6 +98,7 @@ files = [ name = "click" version = "8.1.7" description = "Composable command line interface toolkit" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -107,6 +113,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "cmd2" version = "2.4.3" description = "cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -129,6 +136,7 @@ validate = ["flake8", "mypy", "types-pkg-resources"] name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." +category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -140,6 +148,7 @@ files = [ name = "coloredlogs" version = "15.0.1" description = "Colored terminal output for Python's logging module" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -157,6 +166,7 @@ cron = ["capturer (>=2.4)"] name = "coverage" version = "7.3.1" description = "Code coverage measurement for Python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -224,6 +234,7 @@ toml = ["tomli"] name = "dill" version = "0.3.7" description = "serialize all of Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -238,6 +249,7 @@ graph = ["objgraph (>=1.7.2)"] name = "exceptiongroup" version = "1.1.3" description = "Backport of PEP 654 (exception groups)" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -252,6 +264,7 @@ test = ["pytest (>=6)"] name = "execnet" version = "2.0.2" description = "execnet: rapid multi-Python deployment" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -264,26 +277,26 @@ testing = ["hatch", "pre-commit", "pytest", "tox"] [[package]] name = "filelock" -version = "3.12.3" +version = "3.12.4" description = "A platform independent file lock." +category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "filelock-3.12.3-py3-none-any.whl", hash = "sha256:f067e40ccc40f2b48395a80fcbd4728262fab54e232e090a4063ab804179efeb"}, - {file = "filelock-3.12.3.tar.gz", hash = "sha256:0ecc1dd2ec4672a10c8550a8182f1bd0c0a5088470ecd5a125e45f49472fac3d"}, + {file = "filelock-3.12.4-py3-none-any.whl", hash = "sha256:08c21d87ded6e2b9da6728c3dff51baf1dcecf973b768ef35bcbc3447edb9ad4"}, + {file = "filelock-3.12.4.tar.gz", hash = "sha256:2e6f249f1f3654291606e046b09f1fd5eac39b360664c27f5aad072012f8bcbd"}, ] -[package.dependencies] -typing-extensions = {version = ">=4.7.1", markers = "python_version < \"3.11\""} - [package.extras] docs = ["furo (>=2023.7.26)", "sphinx (>=7.1.2)", "sphinx-autodoc-typehints (>=1.24)"] testing = ["covdefaults (>=2.3)", "coverage (>=7.3)", "diff-cover (>=7.7)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)", "pytest-timeout (>=2.1)"] +typing = ["typing-extensions (>=4.7.1)"] [[package]] name = "flake8" version = "6.1.0" description = "the modular source code checker: pep8 pyflakes and co" +category = "dev" optional = false python-versions = ">=3.8.1" files = [ @@ -298,13 +311,14 @@ pyflakes = ">=3.1.0,<3.2.0" [[package]] name = "flake8-bugbear" -version = "23.7.10" +version = "23.9.16" description = "A plugin for flake8 finding likely bugs and design problems in your program. Contains warnings that don't belong in pyflakes and pycodestyle." +category = "dev" optional = false python-versions = ">=3.8.1" files = [ - {file = "flake8-bugbear-23.7.10.tar.gz", hash = "sha256:0ebdc7d8ec1ca8bd49347694562381f099f4de2f8ec6bda7a7dca65555d9e0d4"}, - {file = "flake8_bugbear-23.7.10-py3-none-any.whl", hash = "sha256:d99d005114020fbef47ed5e4aebafd22f167f9a0fbd0d8bf3c9e90612cb25c34"}, + {file = "flake8-bugbear-23.9.16.tar.gz", hash = "sha256:90cf04b19ca02a682feb5aac67cae8de742af70538590509941ab10ae8351f71"}, + {file = "flake8_bugbear-23.9.16-py3-none-any.whl", hash = "sha256:b182cf96ea8f7a8595b2f87321d7d9b28728f4d9c3318012d896543d19742cb5"}, ] [package.dependencies] @@ -318,6 +332,7 @@ dev = ["coverage", "hypothesis", "hypothesmith (>=0.2)", "pre-commit", "pytest", name = "flake8-comprehensions" version = "3.14.0" description = "A flake8 plugin to help you write better list/set/dict comprehensions." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -332,6 +347,7 @@ flake8 = ">=3.0,<3.2.0 || >3.2.0" name = "flake8-quotes" version = "3.3.2" description = "Flake8 lint for quotes." +category = "dev" optional = false python-versions = "*" files = [ @@ -345,6 +361,7 @@ flake8 = "*" name = "flake8-type-checking" version = "2.4.1" description = "A flake8 plugin for managing type-checking imports & forward references" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -360,6 +377,7 @@ flake8 = "*" name = "graphviz" version = "0.20.1" description = "Simple Python interface for Graphviz" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -376,6 +394,7 @@ test = ["coverage", "mock (>=4)", "pytest (>=7)", "pytest-cov", "pytest-mock (>= name = "humanfriendly" version = "10.0" description = "Human friendly output for text interfaces using Python" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -390,6 +409,7 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve name = "importlib-metadata" version = "6.8.0" description = "Read metadata from Python packages" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -409,6 +429,7 @@ testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -420,6 +441,7 @@ files = [ name = "isort" version = "5.12.0" description = "A Python utility / library to sort Python imports." +category = "dev" optional = false python-versions = ">=3.8.0" files = [ @@ -437,6 +459,7 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "linkify-it-py" version = "2.0.2" description = "Links recognition library with FULL unicode support." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -457,6 +480,7 @@ test = ["coverage", "pytest", "pytest-cov"] name = "markdown-it-py" version = "2.2.0" description = "Python port of markdown-it. Markdown parsing, done right!" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -483,6 +507,7 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] name = "mccabe" version = "0.7.0" description = "McCabe checker, plugin for flake8" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -494,6 +519,7 @@ files = [ name = "mdit-py-plugins" version = "0.4.0" description = "Collection of plugins for markdown-it-py" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -513,6 +539,7 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] name = "mdurl" version = "0.1.2" description = "Markdown URL utilities" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -524,6 +551,7 @@ files = [ name = "multiprocess" version = "0.70.15" description = "better multiprocessing and multithreading in Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -552,6 +580,7 @@ dill = ">=0.3.7" name = "mypy" version = "1.5.1" description = "Optional static typing for Python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -598,6 +627,7 @@ reports = ["lxml"] name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." +category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -609,6 +639,7 @@ files = [ name = "packaging" version = "23.1" description = "Core utilities for Python packages" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -620,6 +651,7 @@ files = [ name = "pathos" version = "0.3.1" description = "parallel graph management and execution in heterogeneous computing" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -637,6 +669,7 @@ ppft = ">=1.7.6.7" name = "pathspec" version = "0.11.2" description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -648,6 +681,7 @@ files = [ name = "pep8-naming" version = "0.13.3" description = "Check PEP-8 naming conventions, plugin for flake8" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -662,6 +696,7 @@ flake8 = ">=5.0.0" name = "platformdirs" version = "3.10.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -677,6 +712,7 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-co name = "pluggy" version = "1.3.0" description = "plugin and hook calling mechanisms for python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -692,6 +728,7 @@ testing = ["pytest", "pytest-benchmark"] name = "pox" version = "0.3.3" description = "utilities for filesystem exploration and automated builds" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -703,6 +740,7 @@ files = [ name = "ppft" version = "1.7.6.7" description = "distributed and parallel Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -717,6 +755,7 @@ dill = ["dill (>=0.3.7)"] name = "psutil" version = "5.9.5" description = "Cross-platform lib for process and system monitoring in Python." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -743,6 +782,7 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] name = "pybind11" version = "2.11.1" description = "Seamless operability between C++11 and Python" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -757,6 +797,7 @@ global = ["pybind11-global (==2.11.1)"] name = "pycodestyle" version = "2.11.0" description = "Python style guide checker" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -768,6 +809,7 @@ files = [ name = "pyflakes" version = "3.1.0" description = "passive checker of Python programs" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -779,6 +821,7 @@ files = [ name = "pygments" version = "2.16.1" description = "Pygments is a syntax highlighting package written in Python." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -791,8 +834,9 @@ plugins = ["importlib-metadata"] [[package]] name = "pyk" -version = "0.1.434" +version = "0.1.446" description = "" +category = "main" optional = false python-versions = "^3.10" files = [] @@ -811,13 +855,14 @@ tomli = "^2.0.1" [package.source] type = "git" url = "https://github.com/runtimeverification/pyk.git" -reference = "v0.1.434" -resolved_reference = "e16401475cf16636e48cbd4e41b9fc85d2b614ef" +reference = "noah/subproof-split" +resolved_reference = "0d95e58bcfa01b5f71109194225769dd97a36425" [[package]] name = "pyperclip" version = "1.8.2" description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" +category = "main" optional = false python-versions = "*" files = [ @@ -828,6 +873,7 @@ files = [ name = "pyreadline3" version = "3.4.1" description = "A python implementation of GNU readline." +category = "main" optional = false python-versions = "*" files = [ @@ -837,13 +883,14 @@ files = [ [[package]] name = "pytest" -version = "7.4.1" +version = "7.4.2" description = "pytest: simple powerful testing with Python" +category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.4.1-py3-none-any.whl", hash = "sha256:460c9a59b14e27c602eb5ece2e47bec99dc5fc5f6513cf924a7d03a578991b1f"}, - {file = "pytest-7.4.1.tar.gz", hash = "sha256:2f2301e797521b23e4d2585a0a3d7b5e50fdddaaf7e7d6773ea26ddb17c213ab"}, + {file = "pytest-7.4.2-py3-none-any.whl", hash = "sha256:1d881c6124e08ff0a1bb75ba3ec0bfd8b5354a01c194ddd5a0a870a48d99b002"}, + {file = "pytest-7.4.2.tar.gz", hash = "sha256:a766259cfab564a2ad52cb1aae1b881a75c3eb7e34ca3779697c23ed47c47069"}, ] [package.dependencies] @@ -861,6 +908,7 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no name = "pytest-cov" version = "4.1.0" description = "Pytest plugin for measuring coverage." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -879,6 +927,7 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-mock" version = "3.11.1" description = "Thin-wrapper around the mock package for easier use with pytest" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -896,6 +945,7 @@ dev = ["pre-commit", "pytest-asyncio", "tox"] name = "pytest-xdist" version = "3.3.1" description = "pytest xdist plugin for distributed testing, most importantly across multiple CPUs" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -914,13 +964,14 @@ testing = ["filelock"] [[package]] name = "pyupgrade" -version = "3.10.1" +version = "3.11.0" description = "A tool to automatically upgrade syntax for newer versions." +category = "dev" optional = false python-versions = ">=3.8.1" files = [ - {file = "pyupgrade-3.10.1-py2.py3-none-any.whl", hash = "sha256:f565b4d26daa46ed522e98746834e77e444269103f8bc04413d77dad95169a24"}, - {file = "pyupgrade-3.10.1.tar.gz", hash = "sha256:1d8d138c2ccdd3c42b1419230ae036d5607dc69465a26feacc069642fc8d1b90"}, + {file = "pyupgrade-3.11.0-py2.py3-none-any.whl", hash = "sha256:7bd8b83bc1a61b3a4c8fea5e16313b7b29e5cdf1be6184f8c6c467557e9cfab3"}, + {file = "pyupgrade-3.11.0.tar.gz", hash = "sha256:1d0bf0dbadf179ff8952d92d52759a5984526597a055d1626884397c46f94003"}, ] [package.dependencies] @@ -928,13 +979,14 @@ tokenize-rt = ">=5.2.0" [[package]] name = "rich" -version = "13.5.2" +version = "13.5.3" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +category = "main" optional = false python-versions = ">=3.7.0" files = [ - {file = "rich-13.5.2-py3-none-any.whl", hash = "sha256:146a90b3b6b47cac4a73c12866a499e9817426423f57c5a66949c086191a8808"}, - {file = "rich-13.5.2.tar.gz", hash = "sha256:fb9d6c0a0f643c99eed3875b5377a184132ba9be4d61516a55273d3554d75a39"}, + {file = "rich-13.5.3-py3-none-any.whl", hash = "sha256:9257b468badc3d347e146a4faa268ff229039d4c2d176ab0cffb4c4fbc73d5d9"}, + {file = "rich-13.5.3.tar.gz", hash = "sha256:87b43e0543149efa1253f485cd845bb7ee54df16c9617b8a893650ab84b4acb6"}, ] [package.dependencies] @@ -948,6 +1000,7 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"] name = "textual" version = "0.27.0" description = "Modern Text User Interface framework" +category = "main" optional = false python-versions = ">=3.7,<4.0" files = [ @@ -968,6 +1021,7 @@ dev = ["aiohttp (>=3.8.1)", "click (>=8.1.2)", "msgpack (>=1.0.3)"] name = "tokenize-rt" version = "5.2.0" description = "A wrapper around the stdlib `tokenize` which roundtrips." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -979,6 +1033,7 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -990,6 +1045,7 @@ files = [ name = "tomlkit" version = "0.11.8" description = "Style preserving TOML library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -999,19 +1055,21 @@ files = [ [[package]] name = "typing-extensions" -version = "4.7.1" -description = "Backported and Experimental Type Hints for Python 3.7+" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, - {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, ] [[package]] name = "uc-micro-py" version = "1.0.2" description = "Micro subset of unicode data files for linkify-it-py projects." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1026,6 +1084,7 @@ test = ["coverage", "pytest", "pytest-cov"] name = "wcwidth" version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" +category = "main" optional = false python-versions = "*" files = [ @@ -1037,6 +1096,7 @@ files = [ name = "xdg-base-dirs" version = "6.0.0" description = "Variables defined by the XDG Base Directory Specification" +category = "main" optional = false python-versions = ">=3.10,<4.0" files = [ @@ -1046,20 +1106,21 @@ files = [ [[package]] name = "zipp" -version = "3.16.2" +version = "3.17.0" description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.16.2-py3-none-any.whl", hash = "sha256:679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0"}, - {file = "zipp-3.16.2.tar.gz", hash = "sha256:ebc15946aa78bd63458992fc81ec3b6f7b1e92d51c35e6de1c3804e73b799147"}, + {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, + {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "da9b9790aea17d6ee39ef26decf96bd82e8c6f84ad67901506879875f07c131d" +content-hash = "2ce6ea88c2c827280f3651543e2a8693354faf46534a8ea6b4c9cee69d07dc70" From 430762cbfdd79cb1cb4862cdcbb03cdedbba5ea8 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Mon, 18 Sep 2023 19:51:03 -0500 Subject: [PATCH 22/44] Fix formatting --- kevm-pyk/src/kontrol/foundry.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index bd4dc6435e..13821ab9d2 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -11,7 +11,7 @@ from os import listdir from pathlib import Path from subprocess import CalledProcessError -from typing import TYPE_CHECKING, Callable +from typing import TYPE_CHECKING import tomlkit from pyk.cterm import CTerm @@ -46,7 +46,7 @@ from .solc_to_k import Contract, contract_to_main_module, contract_to_verification_module if TYPE_CHECKING: - from collections.abc import Iterable + from collections.abc import Callable, Iterable from typing import Any, Final from pyk.kast.inner import KInner From 91ca5ba0dcc3ae2d8c6a26d8d631ed97b54a7fe6 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Tue, 19 Sep 2023 15:29:16 -0500 Subject: [PATCH 23/44] Address comments --- kevm-pyk/src/kontrol/foundry.py | 87 +++++++++++++++++++-------------- 1 file changed, 50 insertions(+), 37 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 13821ab9d2..3f7a69ccf1 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -6,7 +6,9 @@ import re import shutil import sys +from abc import ABC, abstractmethod from concurrent.futures import ThreadPoolExecutor, wait +from dataclasses import dataclass from functools import cached_property from os import listdir from pathlib import Path @@ -818,62 +820,73 @@ def create_server() -> KoreServer: smt_retry_limit=smt_retry_limit, ) - class Task: - ... + class Task(ABC): + @property + @abstractmethod + def name(self) -> str: + ... + + @abstractmethod + def submit(self, executor: ThreadPoolExecutor) -> Future: + ... + + @dataclass(frozen=True) class CreateAndRunTask(Task): - _test: str - _id: str | None + test: str + id: str | None - def __init__(self, test: str, id: str | None): - self._test = test - self._id = id + def submit(self, executor: ThreadPoolExecutor) -> Future: + contract, method = self.test.split('.') + return executor.submit(_init_and_run_proof, (contract, method, self.id)) + @property + def name(self) -> str: + return self.test + + @dataclass(frozen=True) class RunTask(Task): - _proof: Proof - _port: int + proof: Proof + port: int + + def submit(self, executor: ThreadPoolExecutor) -> Future: + return executor.submit(_run_proof, (self.port, self.proof)) - def __init__(self, proof: Proof, port: int): - self._proof = proof - self._port = port + @property + def name(self) -> str: + return self.proof.id results = [] - futures: dict[str, Future] = {} executor = ThreadPoolExecutor(max_workers=workers) - tasks: list[Task] = [CreateAndRunTask(test, id) for test, id in tests] + pending_futures: dict[str, Future] = {} + task: Task + for test, id in tests: + task = CreateAndRunTask(test, id) + pending_futures[task.name] = task.submit(executor) + base_proofs = {test: test for test, _ in tests} servers = {} for test, _ in tests: servers[test] = create_server() - while len(tasks) > 0 or len(futures) > 0: - if len(tasks) > 0: - task = tasks.pop() - - if type(task) is CreateAndRunTask: - contract, method = task._test.split('.') - - futures[task._test] = executor.submit(_init_and_run_proof, (contract, method, task._id)) - - elif type(task) is RunTask: - futures[task._proof.id] = executor.submit(_run_proof, (task._port, task._proof)) + while pending_futures: + done_futures = [(_proof, future) for (_proof, future) in pending_futures.items() if future.done()] + pending_futures = {_proof: future for (_proof, future) in pending_futures.items() if not future.done()} - if len(futures) > 0: - done_futures = [(_proof, future) for (_proof, future) in futures.items() if future.done()] - futures = {_proof: future for (_proof, future) in futures.items() if not future.done()} - for _proof, future in done_futures: - proof = future.result() - results.append(proof) + for _proof, future in done_futures: + proof = future.result() + results.append(proof) - subproofs = proof.subproofs - for subproof in subproofs: - base_proofs[subproof.id] = base_proofs[_proof] - port = servers[base_proofs[subproof.id]].port - tasks.append(RunTask(subproof, port)) + subproofs = proof.subproofs + for subproof in subproofs: + base_proofs[subproof.id] = base_proofs[_proof] + port = servers[base_proofs[subproof.id]].port + task = RunTask(subproof, port) + pending_futures[task.name] = task.submit(executor) - wait(futures.values()) + wait(pending_futures.values(), return_when='FIRST_COMPLETED') executor.shutdown() return results From 0870782b30232b23c2278ce92064baf7353b056d Mon Sep 17 00:00:00 2001 From: devops Date: Tue, 19 Sep 2023 20:33:35 +0000 Subject: [PATCH 24/44] Set Version: 1.0.296 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/debian/changelog | 2 +- package/version | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 1f366aadbd..8dff9ae232 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.295" +version = "1.0.296" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index db0aca2a46..cd26398c31 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.295' +VERSION: Final = '1.0.296' diff --git a/package/debian/changelog b/package/debian/changelog index dbd4a80691..b705d4003b 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,4 +1,4 @@ -kevm (1.0.295) unstable; urgency=medium +kevm (1.0.296) unstable; urgency=medium * Initial Release. diff --git a/package/version b/package/version index bec7541038..b5d581ae64 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.295 \ No newline at end of file +1.0.296 From 6df851923f793aea660ace319da38648ef2ef22f Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Tue, 19 Sep 2023 15:36:39 -0500 Subject: [PATCH 25/44] Remove comment lines and revert proofs_with_test to use regex rather than exact match --- kevm-pyk/src/kontrol/foundry.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 3f7a69ccf1..474f52c449 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -418,13 +418,10 @@ def help_info() -> list[str]: return res_lines def proofs_with_test(self, test: str) -> list[Proof]: - # print([pid.split(':')[0] for pid in listdir(self.proofs_dir)]) - # print(single(self._escape_brackets([test]))) proofs = [ self.get_optional_proof(pid) for pid in listdir(self.proofs_dir) - # if re.search(single(self._escape_brackets([test])), pid.split(':')[0]) - if test == pid.split(':')[0] + if re.search(single(self._escape_brackets([test])), pid.split(':')[0]) ] return [proof for proof in proofs if proof is not None] From 4679bd62b95606eb70dd5e6583a09ec6bdbb9f5d Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Tue, 19 Sep 2023 15:44:30 -0500 Subject: [PATCH 26/44] Fix formatting --- kevm-pyk/src/kontrol/foundry.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kevm-pyk/src/kontrol/foundry.py b/kevm-pyk/src/kontrol/foundry.py index 474f52c449..e8ddc736ba 100644 --- a/kevm-pyk/src/kontrol/foundry.py +++ b/kevm-pyk/src/kontrol/foundry.py @@ -818,7 +818,6 @@ def create_server() -> KoreServer: ) class Task(ABC): - @property @abstractmethod def name(self) -> str: From 4eb0e8c2ad7b5fd5ab409199c6f3ff4943fef6db Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Tue, 19 Sep 2023 17:58:06 -0500 Subject: [PATCH 27/44] Update foundry-show test data --- .../AssertTest.setUp()/kcfg/kcfg.json | 2 +- .../AssertTest.setUp()/kcfg/nodes/1.json | 2 +- .../AssertTest.setUp()/kcfg/nodes/2.json | 2 +- .../AssertTest.setUp()/kcfg/nodes/3.json | 2 +- .../AssertTest.setUp()/kcfg/nodes/4.json | 2 +- .../AssertTest.setUp()/kcfg/nodes/5.json | 2 +- .../apr_proofs/AssertTest.setUp()/proof.json | 2 +- .../kcfg/kcfg.json | 2 +- .../kcfg/nodes/1.json | 2 +- .../kcfg/nodes/2.json | 2 +- .../kcfg/nodes/3.json | 2 +- .../kcfg/nodes/4.json | 2 +- .../kcfg/nodes/5.json | 2 +- .../proof.json | 2 +- .../kcfg/kcfg.json | 2 +- .../kcfg/nodes/1.json | 2 +- .../kcfg/nodes/2.json | 2 +- .../kcfg/nodes/3.json | 2 +- .../kcfg/nodes/4.json | 2 +- .../kcfg/nodes/5.json | 2 +- .../proof.json | 2 +- .../kcfg/kcfg.json | 2 +- .../kcfg/nodes/1.json | 2 +- .../kcfg/nodes/2.json | 2 +- .../kcfg/nodes/3.json | 2 +- .../kcfg/nodes/4.json | 2 +- .../kcfg/nodes/5.json | 2 +- .../proof.json | 2 +- .../kcfg/kcfg.json | 2 +- .../kcfg/nodes/1.json | 2 +- .../kcfg/nodes/2.json | 2 +- .../kcfg/nodes/3.json | 2 +- .../kcfg/nodes/4.json | 2 +- .../kcfg/nodes/5.json | 2 +- .../proof.json | 2 +- .../foundry-list/foundry-list.expected | 22 ++++++++++++++----- 36 files changed, 51 insertions(+), 41 deletions(-) diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/kcfg.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/kcfg.json index 1ea89c3855..de95ede98d 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/kcfg.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/kcfg.json @@ -1 +1 @@ -{"next": 6, "nodes": [1, 2, 3, 4, 5], "edges": [{"source": 1, "target": 3, "depth": 238}, {"source": 3, "target": 4, "depth": 1}, {"source": 4, "target": 5, "depth": 2}], "covers": [{"source": 5, "target": 2, "csubst": {"subst": {"ACCESSEDACCOUNTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCESSEDSTORAGE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCOUNTS_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".AccountCellMap", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_BALANCE_FINAL": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_NONCE_FINAL": {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_ORIGSTORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACTIVE_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ADDRESSSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "BASEFEE_CELL": {"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "BLOCKHASHES_CELL": {"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "BLOCKNONCE_CELL": {"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "CALLDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}, "CALLDEPTH_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CALLER_CELL_5d410f2a": {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "CALLGAS_CELL": {"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}, "CALLSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "CALLVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CHAINID_CELL": {"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "CHEATCODE_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "CHECKEDDATA_CELL": {"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, "CHECKEDTOPICS_CELL": {"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "COINBASE_CELL": {"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "DEPTH_CELL": {"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "DIFFICULTY_CELL": {"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "EXIT_CODE_CELL_5d410f2a": {"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "EXPECTEDADDRESS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "EXPECTEDDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}, "EXPECTEDDEPTH_CELL": {"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "EXPECTEDEVENTADDRESS_CELL": {"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}, "EXPECTEDREASON_CELL": {"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}, "EXPECTEDVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "EXTRADATA_CELL": {"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}, "GAS_CELL_5d410f2a": {"node": "KToken", "token": "9223372036854775686", "sort": {"node": "KSort", "name": "Int"}}, "GASLIMIT_CELL": {"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "GASPRICE_CELL": {"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "GASUSED_CELL": {"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}, "GENERATEDCOUNTER_CELL": {"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "INTERIMSTATES_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "ISCALLWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISEVENTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISOPCODEEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISREVERTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISSTORAGEWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "JUMPDESTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, "LOCALMEM_CELL_5d410f2a": {"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}, "LOG_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "LOGSBLOOM_CELL": {"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}, "MEMORYUSED_CELL_5d410f2a": {"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, "MESSAGES_CELL": {"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}, "MIXHASH_CELL": {"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "MODE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NUMBER_CELL": {"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "OMMERBLOCKHEADERS_CELL": {"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}, "OMMERSHASH_CELL": {"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "OPCODETYPE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}, "ORIGIN_CELL_5d410f2a": {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "OUTPUT_CELL_5d410f2a": {"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}, "PC_CELL_5d410f2a": {"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}, "PREVCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PREVIOUSHASH_CELL": {"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "PREVORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PROGRAM_CELL_5d410f2a": {"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}, "RECEIPTSROOT_CELL": {"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "RECORDEVENT_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "REFUND_CELL": {"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "SCHEDULE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, "SELFDESTRUCT_CELL": {"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}, "SINGLECALL_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATEROOT_CELL": {"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "STATIC_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATUSCODE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}, "STORAGESLOTSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "TIMESTAMP_CELL": {"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "TOUCHEDACCOUNTS_CELL": {"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}, "TRANSACTIONSROOT_CELL": {"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "TXORDER_CELL": {"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "TXPENDING_CELL": {"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "WORDSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "177362148", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}}, "constraints": []}}], "splits": [], "ndbranches": [], "stuck": [], "aliases": {}} \ No newline at end of file +{"next": 6, "nodes": [1, 2, 3, 4, 5], "edges": [{"source": 1, "target": 3, "depth": 272}, {"source": 3, "target": 4, "depth": 1}, {"source": 4, "target": 5, "depth": 2}], "covers": [{"source": 5, "target": 2, "csubst": {"subst": {"ACCESSEDACCOUNTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCESSEDSTORAGE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCOUNTS_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".AccountCellMap", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_BALANCE_FINAL": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_NONCE_FINAL": {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_ORIGSTORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACTIVE_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ADDRESSSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "BASEFEE_CELL": {"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "BLOCKHASHES_CELL": {"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "BLOCKNONCE_CELL": {"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "CALLDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}, "CALLDEPTH_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CALLER_CELL_5d410f2a": {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, "CALLGAS_CELL": {"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}, "CALLSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "CALLVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CHAINID_CELL": {"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "CHEATCODE_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "CHECKEDDATA_CELL": {"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}, "CHECKEDTOPICS_CELL": {"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "COINBASE_CELL": {"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "DEPTH_CELL": {"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "DIFFICULTY_CELL": {"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "EXIT_CODE_CELL_5d410f2a": {"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}, "EXPECTEDADDRESS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "EXPECTEDDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}, "EXPECTEDDEPTH_CELL": {"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "EXPECTEDEVENTADDRESS_CELL": {"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}, "EXPECTEDREASON_CELL": {"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "EXPECTEDVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "EXTRADATA_CELL": {"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "GAS_CELL_5d410f2a": {"node": "KToken", "token": "9223372036854775663", "sort": {"node": "KSort", "name": "Int"}}, "GASLIMIT_CELL": {"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "GASPRICE_CELL": {"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "GASUSED_CELL": {"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}, "GENERATEDCOUNTER_CELL": {"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "INTERIMSTATES_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "ISCALLWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISEVENTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISOPCODEEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISREVERTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISSTORAGEWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "JUMPDESTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, "LOCALMEM_CELL_5d410f2a": {"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}, "LOG_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "LOGSBLOOM_CELL": {"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "MEMORYUSED_CELL_5d410f2a": {"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, "MESSAGES_CELL": {"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "MessageCellMap"}}, "MIXHASH_CELL": {"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "MODE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NUMBER_CELL": {"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "OMMERBLOCKHEADERS_CELL": {"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "JSON"}}, "OMMERSHASH_CELL": {"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "OPCODETYPE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}, "ORIGIN_CELL_5d410f2a": {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}, "OUTPUT_CELL_5d410f2a": {"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}, "PC_CELL_5d410f2a": {"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}, "PREVCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PREVIOUSHASH_CELL": {"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "PREVORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PROGRAM_CELL_5d410f2a": {"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}, "RECEIPTSROOT_CELL": {"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "RECORDEVENT_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "REFUND_CELL": {"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "SCHEDULE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, "SELFDESTRUCT_CELL": {"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}, "SINGLECALL_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATEROOT_CELL": {"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "STATIC_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATUSCODE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}, "STORAGESLOTSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "TIMESTAMP_CELL": {"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "TOUCHEDACCOUNTS_CELL": {"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}, "TRANSACTIONSROOT_CELL": {"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "TXORDER_CELL": {"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "TXPENDING_CELL": {"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "WITHDRAWALSROOT_CELL": {"node": "KVariable", "name": "WITHDRAWALSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "WORDSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "177362148", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}}, "constraints": []}}], "splits": [], "ndbranches": [], "vacuous": [], "stuck": [], "aliases": {}} \ No newline at end of file diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/nodes/1.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/nodes/1.json index b1a7bde789..c58dc1e528 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/nodes/1.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/nodes/1.json @@ -1 +1 @@ -{"id": 1, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Mode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Schedule"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "WordStack"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "AccountCellMap"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "OpcodeType"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": []}} \ No newline at end of file +{"id": 2, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Mode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Schedule"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "WordStack"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "OpcodeType"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": []}} \ No newline at end of file diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/nodes/3.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/nodes/3.json index 4ef2f76f99..ce1b188fdd 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/nodes/3.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.setUp()/kcfg/nodes/3.json @@ -1 +1 @@ -{"id": 3, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "177362148", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775686", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "177362148", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775663", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "177362148", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775686", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "177362148", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775663", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "177362148", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775686", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\n\\x92T\\xe4\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "177362148", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775663", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}, "RECEIPTSROOT_CELL": {"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "RECORDEVENT_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "REFUND_CELL": {"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "SCHEDULE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, "SELFDESTRUCT_CELL": {"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}, "SINGLECALL_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATEROOT_CELL": {"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "STATIC_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATUSCODE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}, "STORAGESLOTSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "TIMESTAMP_CELL": {"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "TOUCHEDACCOUNTS_CELL": {"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}, "TRANSACTIONSROOT_CELL": {"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "TXORDER_CELL": {"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "TXPENDING_CELL": {"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "WORDSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}}, "constraints": []}}], "splits": [], "ndbranches": [], "stuck": [], "aliases": {}} \ No newline at end of file +{"next": 6, "nodes": [1, 2, 3, 4, 5], "edges": [{"source": 1, "target": 3, "depth": 438}, {"source": 3, "target": 4, "depth": 1}, {"source": 4, "target": 5, "depth": 2}], "covers": [{"source": 5, "target": 2, "csubst": {"subst": {"ACCESSEDACCOUNTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCESSEDSTORAGE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCOUNTS_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".AccountCellMap", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_BALANCE_FINAL": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_NONCE_FINAL": {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_ORIGSTORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACTIVE_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ADDRESSSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "BASEFEE_CELL": {"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "BLOCKHASHES_CELL": {"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "BLOCKNONCE_CELL": {"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "CALLDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}, "CALLDEPTH_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CALLER_CELL_5d410f2a": {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, "CALLGAS_CELL": {"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}, "CALLSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "CALLVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CHAINID_CELL": {"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "CHEATCODE_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "CHECKEDDATA_CELL": {"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}, "CHECKEDTOPICS_CELL": {"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "COINBASE_CELL": {"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "DEPTH_CELL": {"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "DIFFICULTY_CELL": {"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "EXIT_CODE_CELL_5d410f2a": {"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}, "EXPECTEDADDRESS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "EXPECTEDDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}, "EXPECTEDDEPTH_CELL": {"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "EXPECTEDEVENTADDRESS_CELL": {"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}, "EXPECTEDREASON_CELL": {"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "EXPECTEDVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "EXTRADATA_CELL": {"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "GAS_CELL_5d410f2a": {"node": "KToken", "token": "9223372036854775560", "sort": {"node": "KSort", "name": "Int"}}, "GASLIMIT_CELL": {"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "GASPRICE_CELL": {"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "GASUSED_CELL": {"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}, "GENERATEDCOUNTER_CELL": {"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "INTERIMSTATES_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "ISCALLWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISEVENTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISOPCODEEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISREVERTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISSTORAGEWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "JUMPDESTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, "LOCALMEM_CELL_5d410f2a": {"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}, "LOG_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "LOGSBLOOM_CELL": {"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "MEMORYUSED_CELL_5d410f2a": {"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, "MESSAGES_CELL": {"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "MessageCellMap"}}, "MIXHASH_CELL": {"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "MODE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NUMBER_CELL": {"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "OMMERBLOCKHEADERS_CELL": {"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "JSON"}}, "OMMERSHASH_CELL": {"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "OPCODETYPE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}, "ORIGIN_CELL_5d410f2a": {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}, "OUTPUT_CELL_5d410f2a": {"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}, "PC_CELL_5d410f2a": {"node": "KToken", "token": "1321", "sort": {"node": "KSort", "name": "Int"}}, "PREVCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PREVIOUSHASH_CELL": {"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "PREVORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PROGRAM_CELL_5d410f2a": {"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}, "RECEIPTSROOT_CELL": {"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "RECORDEVENT_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "REFUND_CELL": {"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "SCHEDULE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, "SELFDESTRUCT_CELL": {"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}, "SINGLECALL_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATEROOT_CELL": {"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "STATIC_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATUSCODE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}, "STORAGESLOTSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "TIMESTAMP_CELL": {"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "TOUCHEDACCOUNTS_CELL": {"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}, "TRANSACTIONSROOT_CELL": {"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "TXORDER_CELL": {"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "TXPENDING_CELL": {"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "WITHDRAWALSROOT_CELL": {"node": "KVariable", "name": "WITHDRAWALSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "WORDSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}}, "constraints": []}}], "splits": [], "ndbranches": [], "vacuous": [], "stuck": [], "aliases": {}} \ No newline at end of file diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/1.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/1.json index b8974c6ab2..dd538e6d8e 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/1.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/1.json @@ -1 +1 @@ -{"id": 1, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Mode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Schedule"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "WordStack"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "AccountCellMap"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "OpcodeType"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file +{"id": 2, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Mode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Schedule"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "WordStack"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "OpcodeType"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/3.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/3.json index 9273bbcf1d..a2d6a40143 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/3.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/3.json @@ -1 +1 @@ -{"id": 3, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775582", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1321", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775560", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775582", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1321", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775560", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775582", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1321", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775560", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x18g]B\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x18g]B\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Mode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Schedule"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "WordStack"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "AccountCellMap"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "OpcodeType"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file +{"id": 2, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Mode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Schedule"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "WordStack"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "OpcodeType"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_true():0/kcfg/nodes/3.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_true():0/kcfg/nodes/3.json index ab85d74a2f..3ca3ab78db 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_true():0/kcfg/nodes/3.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_true():0/kcfg/nodes/3.json @@ -1 +1 @@ -{"id": 3, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x18g]B\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "409427266", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775664", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x18g]B\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "409427266", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775641", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x18g]B\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "409427266", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775664", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x18g]B\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "409427266", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775641", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x18g]B\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "409427266", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775664", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x18g]B\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "409427266", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775641", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"]\\xde\\xcb\\xfd\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"]\\xde\\xcb\\xfd\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Mode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Schedule"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "WordStack"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "AccountCellMap"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "OpcodeType"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file +{"id": 2, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Mode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Schedule"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "WordStack"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "OpcodeType"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_false():0/kcfg/nodes/3.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_false():0/kcfg/nodes/3.json index 30d83ff020..c9de78f12b 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_false():0/kcfg/nodes/3.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_false():0/kcfg/nodes/3.json @@ -1 +1 @@ -{"id": 3, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"]\\xde\\xcb\\xfd\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "1574882301", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775604", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"]\\xde\\xcb\\xfd\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "1574882301", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1321", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775604", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"]\\xde\\xcb\\xfd\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "1574882301", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775604", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"]\\xde\\xcb\\xfd\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "1574882301", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1321", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775604", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"]\\xde\\xcb\\xfd\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "1574882301", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775604", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"]\\xde\\xcb\\xfd\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "1574882301", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1321", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775604", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}, "RECEIPTSROOT_CELL": {"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "RECORDEVENT_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "REFUND_CELL": {"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "SCHEDULE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, "SELFDESTRUCT_CELL": {"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}, "SINGLECALL_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATEROOT_CELL": {"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "STATIC_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATUSCODE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}, "STORAGESLOTSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "TIMESTAMP_CELL": {"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "TOUCHEDACCOUNTS_CELL": {"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}, "TRANSACTIONSROOT_CELL": {"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "TXORDER_CELL": {"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "TXPENDING_CELL": {"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "WORDSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "906863826", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}}, "constraints": []}}], "splits": [], "ndbranches": [], "stuck": [], "aliases": {}} \ No newline at end of file +{"next": 6, "nodes": [1, 2, 3, 4, 5], "edges": [{"source": 1, "target": 3, "depth": 258}, {"source": 3, "target": 4, "depth": 1}, {"source": 4, "target": 5, "depth": 2}], "covers": [{"source": 5, "target": 2, "csubst": {"subst": {"ACCESSEDACCOUNTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCESSEDSTORAGE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCOUNTS_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".AccountCellMap", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_BALANCE_FINAL": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_NONCE_FINAL": {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_ORIGSTORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACTIVE_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ADDRESSSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "BASEFEE_CELL": {"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "BLOCKHASHES_CELL": {"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "BLOCKNONCE_CELL": {"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "CALLDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}, "CALLDEPTH_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CALLER_CELL_5d410f2a": {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, "CALLGAS_CELL": {"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}, "CALLSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "CALLVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CHAINID_CELL": {"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "CHEATCODE_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "CHECKEDDATA_CELL": {"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}, "CHECKEDTOPICS_CELL": {"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "COINBASE_CELL": {"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "DEPTH_CELL": {"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "DIFFICULTY_CELL": {"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "EXIT_CODE_CELL_5d410f2a": {"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}, "EXPECTEDADDRESS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "EXPECTEDDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}, "EXPECTEDDEPTH_CELL": {"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "EXPECTEDEVENTADDRESS_CELL": {"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}, "EXPECTEDREASON_CELL": {"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "EXPECTEDVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "EXTRADATA_CELL": {"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "GAS_CELL_5d410f2a": {"node": "KToken", "token": "9223372036854775664", "sort": {"node": "KSort", "name": "Int"}}, "GASLIMIT_CELL": {"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "GASPRICE_CELL": {"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "GASUSED_CELL": {"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}, "GENERATEDCOUNTER_CELL": {"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "INTERIMSTATES_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "ISCALLWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISEVENTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISOPCODEEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISREVERTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISSTORAGEWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "JUMPDESTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, "LOCALMEM_CELL_5d410f2a": {"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}, "LOG_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "LOGSBLOOM_CELL": {"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}, "MEMORYUSED_CELL_5d410f2a": {"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, "MESSAGES_CELL": {"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "MessageCellMap"}}, "MIXHASH_CELL": {"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "MODE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NUMBER_CELL": {"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "OMMERBLOCKHEADERS_CELL": {"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "JSON"}}, "OMMERSHASH_CELL": {"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "OPCODETYPE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}, "ORIGIN_CELL_5d410f2a": {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}, "OUTPUT_CELL_5d410f2a": {"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}, "PC_CELL_5d410f2a": {"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}, "PREVCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PREVIOUSHASH_CELL": {"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "PREVORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PROGRAM_CELL_5d410f2a": {"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}, "RECEIPTSROOT_CELL": {"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "RECORDEVENT_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "REFUND_CELL": {"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "SCHEDULE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, "SELFDESTRUCT_CELL": {"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}, "SINGLECALL_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATEROOT_CELL": {"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "STATIC_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATUSCODE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}, "STORAGESLOTSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "TIMESTAMP_CELL": {"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "TOUCHEDACCOUNTS_CELL": {"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}, "TRANSACTIONSROOT_CELL": {"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "TXORDER_CELL": {"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "TXPENDING_CELL": {"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}, "WITHDRAWALSROOT_CELL": {"node": "KVariable", "name": "WITHDRAWALSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}, "WORDSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "906863826", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}}, "constraints": []}}], "splits": [], "ndbranches": [], "vacuous": [], "stuck": [], "aliases": {}} \ No newline at end of file diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_true():0/kcfg/nodes/1.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_true():0/kcfg/nodes/1.json index f72e4e5a0d..bc46eb91b4 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_true():0/kcfg/nodes/1.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_true():0/kcfg/nodes/1.json @@ -1 +1 @@ -{"id": 1, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Mode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Schedule"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "WordStack"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "AccountCellMap"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "OpcodeType"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file +{"id": 2, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Mode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Schedule"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "sort": {"node": "KSort", "name": "WordStack"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "sort": {"node": "KSort", "name": "OpcodeType"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "sort": {"node": "KSort", "name": "StatusCode"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "sort": {"node": "KSort", "name": "Map"}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file diff --git a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_true():0/kcfg/nodes/3.json b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_true():0/kcfg/nodes/3.json index 1efd90f899..bb300493bb 100644 --- a/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_true():0/kcfg/nodes/3.json +++ b/kevm-pyk/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.test_assert_true():0/kcfg/nodes/3.json @@ -1 +1 @@ -{"id": 3, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "906863826", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775620", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "sort": {"node": "KSort", "name": "StatusCode"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "906863826", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775664", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "906863826", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775620", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "STOP_EVM_NullStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "906863826", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775664", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "906863826", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "213", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775620", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SHANGHAI_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "354", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1090", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "866", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "802", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1507", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1219", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1344", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1184", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1441", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "838", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "774", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1223", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "679", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "260", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1156", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1285", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1189", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1541", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "330", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1322", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "746", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "395", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1259", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1480", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "424", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1064", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "585", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "553", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "462", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "878", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "846", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "335", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1452", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "749", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1426", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1266", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "722", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1363", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "307", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "211", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1488", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1393", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "438", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "886", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1559", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1300", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1525", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "245", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "250", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "922", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "475", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "443", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "699", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "408", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "376", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1400", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1368", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1208", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "728", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1241", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "825", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "793", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "766", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "287", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1151", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "799", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1500", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "316", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "252", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1180", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "381", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "573", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"6\\r\\xa4\\xd2\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "906863826", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "251", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775664", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WITHDRAWALSROOT_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 18, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xf5W`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x97W\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01\\x90W\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\xa8W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01\\xbbW\\x80c\\xfav&\\xd4\\x14a\\x01\\xceW`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01bW\\x80cg8\\xbb\\xfa\\x14a\\x01jW\\x80cz\\xa9\\xcc\\xae\\x14a\\x01bW\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x01}W`\\x00\\x80\\xfd[\\x80c6\\r\\xa4\\xd2\\x11a\\x00\\xd3W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xfaW\\x80c:v\\x84c\\x14a\\x01\\x04W\\x80c;\\xa4\\xd9\\f\\x14a\\x01=`\\x00\\xfd[PPPPa\\x01\\xdba\\x05\\x14V[\\x7f\\x88\\\\\\xb6\\x92@\\xa95\\xd62\\xd7\\x9c1q\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-`\\x00\\x1c`\\x01`\\x01`\\xa0\\x1b\\x03\\x16c\\xed\\x9fsS`@Q\\x81c\\xff\\xff\\xff\\xff\\x16`\\xe0\\x1b\\x81R`\\x04\\x01`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x87\\x80;\\x15\\x80\\x15a\\x02\\xa7W`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x02\\xbbW=`\\x00\\x80>=`\\x00\\xfd[PPPP`\\n\\x81\\x10\\x15a\\x02\\xd2W`\\x00`\\x08Ua\\x02\\xd8V[`\\x01`\\x08U[`\\x02`\\x08T\\x10a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[PV[`d\\x81\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[a\\x01\\xdba\\x05\\x14V[`\\x01\\x81\\x10\\x15a\\x03\\x19W`\\x03`\\x08Ua\\x03\\x1fV[`\\x04`\\x08U[`\\x00[`\\n\\x81\\x10\\x15a\\x03NW`\\x08Ta\\x039\\x90`\\x01a\\x05@V[`\\x08U\\x80a\\x03F\\x81a\\x05XV[\\x91PPa\\x03\\\"V[P`\\r`\\x08T\\x10\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[\\x80\\x82\\x10\\x15a\\x03nWPPV[a\\x03va\\x05\\x14V[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x03\\x9aWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x04\\xa0W`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x04(\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x05\\xacV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x04B\\x91a\\x05\\xd0V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x04\\x7fW`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x04\\x84V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x04\\x9c\\x91\\x90a\\x05\\xe3V[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x04\\xb8W`\\x08\\x81\\x90Ua\\x04\\xc7V[a\\x04\\xc3`\\x01\\x82a\\x06\\x05V[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\xeaWa\\x02\\xeaa\\x05\\x14V[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04\\xebW`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x05\\x05W`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[cNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[`\\x00\\x82\\x19\\x82\\x11\\x15a\\x05SWa\\x05Sa\\x05*V[P\\x01\\x90V[`\\x00`\\x01\\x82\\x01a\\x05jWa\\x05ja\\x05*V[P`\\x01\\x01\\x90V[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x05\\x92W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x05xV[\\x81\\x81\\x11\\x15a\\x05\\xa1W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x05\\xc8`\\x04\\x83\\x01\\x84a\\x05qV[\\x94\\x93PPPPV[`\\x00a\\x05\\xdc\\x82\\x84a\\x05qV[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x05\\xf5W`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x05\\xdcW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x06\\x17Wa\\x06\\x17a\\x05*V[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 ,&\\x82C\\x05%\\xea\\xa0\\\\\\x10\\x80\\xb9\\xc0\\xf4\\xa5\\xdbr\\xb6\\x80B\\xeeo\\xa7\\x0fB\\x96\\xcb\\xf2\\x14\\xfb\\x8b\\xc6dsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "sort": {"node": "KSort", "name": "Account"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_ Date: Tue, 19 Sep 2023 22:59:33 +0000 Subject: [PATCH 28/44] Set Version: 1.0.297 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/debian/changelog | 2 +- package/version | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 136d7959f4..d8c89ca761 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.296" +version = "1.0.297" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index cd26398c31..bd357492fd 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.296' +VERSION: Final = '1.0.297' diff --git a/package/debian/changelog b/package/debian/changelog index b705d4003b..25d0c8897c 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,4 +1,4 @@ -kevm (1.0.296) unstable; urgency=medium +kevm (1.0.297) unstable; urgency=medium * Initial Release. diff --git a/package/version b/package/version index b5d581ae64..2bae0e18df 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.296 +1.0.297 From 455f4fb16494bb207ace263bc88a70725463aca8 Mon Sep 17 00:00:00 2001 From: devops Date: Wed, 20 Sep 2023 14:22:04 +0000 Subject: [PATCH 29/44] Set Version: 1.0.298 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index d8c89ca761..2c610d3c99 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.297" +version = "1.0.298" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index bd357492fd..79ab536777 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.297' +VERSION: Final = '1.0.298' diff --git a/package/version b/package/version index 2bae0e18df..ca94b4bd7d 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.297 +1.0.298 From ea7aef1f47c570a395143b19bca6b0b6a8c95383 Mon Sep 17 00:00:00 2001 From: devops Date: Wed, 20 Sep 2023 19:10:30 +0000 Subject: [PATCH 30/44] Set Version: 1.0.299 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 2c610d3c99..ddfaaaeb51 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.298" +version = "1.0.299" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index 79ab536777..1e62ca7792 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.298' +VERSION: Final = '1.0.299' diff --git a/package/version b/package/version index ca94b4bd7d..ea13f22270 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.298 +1.0.299 From 54d6b0822f9a36780242d1712b5dfff1ab307621 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Wed, 20 Sep 2023 18:37:22 -0500 Subject: [PATCH 31/44] Fix tests --- kevm-pyk/src/kontrolx/foundry.py | 4 +- .../show/LoopsTest.sum_N(uint256).expected | 5304 +---------------- .../tests/integration/test_foundry_prove.py | 6 +- tests/foundry/lemmas.k | 2 +- 4 files changed, 99 insertions(+), 5217 deletions(-) diff --git a/kevm-pyk/src/kontrolx/foundry.py b/kevm-pyk/src/kontrolx/foundry.py index 090404a926..a18fd92a60 100644 --- a/kevm-pyk/src/kontrolx/foundry.py +++ b/kevm-pyk/src/kontrolx/foundry.py @@ -311,7 +311,7 @@ def get_test_id(self, test: str, id: int | None) -> str: if id is None: if len(matching_proofs) > 1: raise ValueError( - f'Found {len(matching_proofs)} matching proofs for {test}. Use the --id flag to choose one.' + f'Found {len(matching_proofs)} matching proofs for {test}. Use the --version flag to choose one.' ) test_id = single(matching_proofs).id return test_id @@ -706,6 +706,7 @@ def _init_and_run_proof(_init_problem: tuple[str, str, int]) -> APRProof: id_prefix = ':' + str(id) if id is not None else '' test_id = f'{contract_name}.{method_sig}{id_prefix}' llvm_definition_dir = foundry.llvm_library if use_booster else None + start_server = port is None def generate_subproof_name(proof: APRProof, node: int) -> str: id_without_version = proof.id.split(':')[0] @@ -722,6 +723,7 @@ def generate_subproof_name(proof: APRProof, node: int) -> str: smt_timeout=smt_timeout, smt_retry_limit=smt_retry_limit, trace_rewrites=trace_rewrites, + start_server=start_server, port=port, ) as kcfg_explore: proof = _method_to_apr_proof( diff --git a/kevm-pyk/src/tests/integration/test-data/show/LoopsTest.sum_N(uint256).expected b/kevm-pyk/src/tests/integration/test-data/show/LoopsTest.sum_N(uint256).expected index 496fd7086f..5e5ad959fb 100644 --- a/kevm-pyk/src/tests/integration/test-data/show/LoopsTest.sum_N(uint256).expected +++ b/kevm-pyk/src/tests/integration/test-data/show/LoopsTest.sum_N(uint256).expected @@ -72,176 +72,22 @@ │ callDepth: 0 │ statusCode: STATUSCODE:StatusCode │ - │ (1 step) + │ (162 steps) ├─ 9 - │ k: JUMP 1569 ~> #pc [ JUMPI ] ~> #execute ~> CONTINUATION:K - │ pc: 1539 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (12 steps) - ├─ 11 - │ k: #access [ JUMPDEST , JUMPDEST ] ~> JUMPDEST ~> #pc [ JUMPDEST ] ~> #execute ~> C ... - │ pc: 1569 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (5 steps) - ├─ 13 - │ k: #execute ~> CONTINUATION:K - │ pc: 1571 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (2 steps) - ├─ 14 - │ k: #execute ~> CONTINUATION:K - │ pc: 1572 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (9 steps) - ├─ 15 - │ k: #access [ POP , POP 0 ] ~> POP 0 ~> #pc [ POP ] ~> #execute ~> CONTINUATION:K - │ pc: 1572 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (12 steps) - ├─ 16 - │ k: #access [ POP , POP 0 ] ~> POP 0 ~> #pc [ POP ] ~> #execute ~> CONTINUATION:K - │ pc: 1573 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (12 steps) - ├─ 17 - │ k: #access [ JUMP , JUMP 334 ] ~> JUMP 334 ~> #pc [ JUMP ] ~> #execute ~> CONTINUAT ... - │ pc: 1574 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (13 steps) - ├─ 18 - │ k: #access [ JUMPDEST , JUMPDEST ] ~> JUMPDEST ~> #pc [ JUMPDEST ] ~> #execute ~> C ... - │ pc: 334 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (5 steps) - ├─ 19 - │ k: #execute ~> CONTINUATION:K - │ pc: 337 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (12 steps) - ├─ 20 - │ k: #access [ MLOAD , MLOAD 64 ] ~> MLOAD 64 ~> #pc [ MLOAD ] ~> #execute ~> CONTINU ... - │ pc: 337 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (6 steps) - ├─ 21 - │ k: #execute ~> CONTINUATION:K - │ pc: 339 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (2 steps) - ├─ 22 - │ k: #execute ~> CONTINUATION:K - │ pc: 340 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (12 steps) - ├─ 23 - │ k: #access [ MSTORE , MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int + ... - │ pc: 340 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (5 steps) - ├─ 24 - │ k: #execute ~> CONTINUATION:K - │ pc: 343 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (2 steps) - ├─ 25 - │ k: #execute ~> CONTINUATION:K - │ pc: 344 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (9 steps) - ├─ 26 - │ k: #access [ JUMPDEST , JUMPDEST ] ~> JUMPDEST ~> #pc [ JUMPDEST ] ~> #execute ~> C ... - │ pc: 344 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (5 steps) - ├─ 27 - │ k: #execute ~> CONTINUATION:K - │ pc: 347 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (12 steps) - ├─ 28 - │ k: #access [ MLOAD , MLOAD 64 ] ~> MLOAD 64 ~> #pc [ MLOAD ] ~> #execute ~> CONTINU ... - │ pc: 347 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (6 steps) - ├─ 29 - │ k: #execute ~> CONTINUATION:K - │ pc: 349 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (2 steps) - ├─ 30 - │ k: #execute ~> CONTINUATION:K - │ pc: 350 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (2 steps) - ├─ 31 - │ k: #execute ~> CONTINUATION:K - │ pc: 351 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (2 steps) - ├─ 32 - │ k: #execute ~> CONTINUATION:K - │ pc: 352 - │ callDepth: 0 - │ statusCode: STATUSCODE:StatusCode - │ - │ (14 steps) - ├─ 33 │ k: #end EVMC_SUCCESS ~> #pc [ RETURN ] ~> #execute ~> CONTINUATION:K │ pc: 352 │ callDepth: 0 │ statusCode: STATUSCODE:StatusCode │ │ (1 step) - ├─ 34 + ├─ 11 │ k: #halt ~> #pc [ RETURN ] ~> #execute ~> CONTINUATION:K │ pc: 352 │ callDepth: 0 │ statusCode: EVMC_SUCCESS │ │ (2 steps) - ├─ 35 (terminal) + ├─ 13 (terminal) │ k: #halt ~> CONTINUATION:K │ pc: 352 │ callDepth: 0 @@ -1116,8 +962,9 @@ rule [BASIC-BLOCK-7-TO-9]: - ( JUMPI 1569 bool2Word ( VV0_n_114b9705:Int ==Int 0 ) => JUMP 1569 ) - ~> #pc [ JUMPI ] + ( JUMPI 1569 bool2Word ( VV0_n_114b9705:Int ==Int 0 ) + ~> #pc [ JUMPI ] => #end EVMC_SUCCESS + ~> #pc [ RETURN ] ) ~> #execute ~> _CONTINUATION @@ -1130,7 +977,7 @@ - b"" + ( b"" => #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) ) .List @@ -1154,10 +1001,10 @@ 0 - ( ( 0 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( 0 : ( ( VV0_n_114b9705:Int => 0 ) : ( 334 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) + ( ( 0 => selector ( "sum_N(uint256)" ) ) : ( ( 0 : ( VV0_n_114b9705:Int : ( 334 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) => .WordStack ) ) - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + ( b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" => b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" ) +Bytes ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) => #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) ) ... ... @@ -1324,10 +1171,31 @@ )))))))))) ensures ( VV0_n_114b9705:Int =/=K 0 andBool ( 0 @@ -1544,10 +1412,8 @@ rule [BASIC-BLOCK-9-TO-11]: - ( JUMP 1569 - ~> #pc [ JUMPI ] => #access [ JUMPDEST , JUMPDEST ] - ~> JUMPDEST - ~> #pc [ JUMPDEST ] ) + ( #end EVMC_SUCCESS => #halt ) + ~> #pc [ RETURN ] ~> #execute ~> _CONTINUATION @@ -1560,8 +1426,11 @@ - b"" + #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) + + ( _STATUSCODE => EVMC_SUCCESS ) + .List @@ -1584,10 +1453,10 @@ 0 - ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) : ( 0 : ( 0 : ( 334 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) + ( selector ( "sum_N(uint256)" ) : .WordStack ) - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) ... ... @@ -1751,12 +1620,32 @@ andBool ( ORIGIN_ID:Int @@ -1973,10 +1862,9 @@ rule [BASIC-BLOCK-11-TO-13]: - ( #access [ JUMPDEST , JUMPDEST ] - ~> JUMPDEST - ~> #pc [ JUMPDEST ] => .K ) - ~> #execute + #halt + ~> ( #pc [ RETURN ] + ~> #execute => .K ) ~> _CONTINUATION @@ -1988,8 +1876,11 @@ - b"" + #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) + + EVMC_SUCCESS + .List @@ -2012,10 +1903,10 @@ 0 - ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => 334 ) : ( 0 : ( 0 : ( ( 334 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) + ( selector ( "sum_N(uint256)" ) : .WordStack ) - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) ... ... @@ -2179,5046 +2070,33 @@ andBool ( ORIGIN_ID:Int - - - #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 334 => 0 ) : ( 0 : ( ( 0 => 334 ) : ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( .K => #access [ POP , POP 0 ] - ~> POP 0 - ~> #pc [ POP ] ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( 0 : ( ( 0 => 334 ) : ( ( 334 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - #access [ POP , POP 0 ] - ~> POP 0 - ~> #pc [ POP ] - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 0 => 334 ) : ( ( 334 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( #access [ POP , POP 0 ] - ~> POP 0 - ~> #pc [ POP ] => #access [ JUMP , JUMP 334 ] - ~> JUMP 334 - ~> #pc [ JUMP ] ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 334 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( #access [ JUMP , JUMP 334 ] - ~> JUMP 334 - ~> #pc [ JUMP ] => #access [ JUMPDEST , JUMPDEST ] - ~> JUMPDEST - ~> #pc [ JUMPDEST ] ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( #access [ JUMPDEST , JUMPDEST ] - ~> JUMPDEST - ~> #pc [ JUMPDEST ] => .K ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => 64 ) : ( ( selector ( "sum_N(uint256)" ) => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( .K => #access [ MLOAD , MLOAD 64 ] - ~> MLOAD 64 - ~> #pc [ MLOAD ] ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 64 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( #access [ MLOAD , MLOAD 64 ] - ~> MLOAD 64 - ~> #pc [ MLOAD ] => .K ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) : ( ( selector ( "sum_N(uint256)" ) => 128 ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => 128 ) : ( ( 128 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( selector ( "sum_N(uint256)" ) => 128 ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( .K => #access [ MSTORE , MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ] - ~> MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) - ~> #pc [ MSTORE ] ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( 128 : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( 128 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) => .WordStack ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( #access [ MSTORE , MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ] - ~> MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) - ~> #pc [ MSTORE ] => .K ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 128 => 32 ) : ( ( selector ( "sum_N(uint256)" ) => 128 ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) - - - ( b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" => b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" ) +Bytes ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) => #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 32 => 160 ) : ( ( 128 => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( .K => #access [ JUMPDEST , JUMPDEST ] - ~> JUMPDEST - ~> #pc [ JUMPDEST ] ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( 160 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( #access [ JUMPDEST , JUMPDEST ] - ~> JUMPDEST - ~> #pc [ JUMPDEST ] => .K ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 160 => 64 ) : ( ( selector ( "sum_N(uint256)" ) => 160 ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( .K => #access [ MLOAD , MLOAD 64 ] - ~> MLOAD 64 - ~> #pc [ MLOAD ] ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 64 => 160 ) : ( ( 160 => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( #access [ MLOAD , MLOAD 64 ] - ~> MLOAD 64 - ~> #pc [ MLOAD ] => .K ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 160 => 128 ) : ( ( selector ( "sum_N(uint256)" ) => 128 ) : ( .WordStack => ( 160 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 128 => 160 ) : ( 128 : ( ( 160 => 128 ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 160 => 32 ) : ( 128 : ( ( 128 => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - b"" - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 32 => 128 ) : ( ( 128 => 32 ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( .K => #end EVMC_SUCCESS - ~> #pc [ RETURN ] ) - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - ( b"" => #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) ) - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( ( 128 => selector ( "sum_N(uint256)" ) ) : ( ( 32 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) => .WordStack ) ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - ( #end EVMC_SUCCESS => #halt ) - ~> #pc [ RETURN ] - ~> #execute - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) - - - ( _STATUSCODE => EVMC_SUCCESS ) - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( selector ( "sum_N(uint256)" ) : .WordStack ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 - - - #halt - ~> ( #pc [ RETURN ] - ~> #execute => .K ) - ~> _CONTINUATION - - - NORMAL - - - SHANGHAI - - - - - #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) - - - EVMC_SUCCESS - - - .List - - - .List - - - ... - ... - - 728815563385977040452943777879061427756277306518 - - - CALLER_ID:Int - - - b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) - - - 0 - - - ( selector ( "sum_N(uint256)" ) : .WordStack ) - - - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) - - ... - ... - - 6 - - - 9079256848778916870 - - - false - - - 0 - - - - - .List - - - SetItem ( 645326474426547203313410069153905908525362434349 ) - - - .Map - - ... - - - ORIGIN_ID:Int - - - - NUMBER_CELL:Int - - ... - - ... - - - - ( - - 645326474426547203313410069153905908525362434349 - - - 0 - - ... - - .Map - - - .Map - - - 0 - - - - - 728815563385977040452943777879061427756277306518 - - - 0 - - ... - - .Map - - - .Map - - - 1 - - ) - - ... - - - ... - - - - - .Account - - - .Account - - - .Account - - - .Account - - - false - - - false - - ... - - - - false - - ... - - - - false - - - .Account - - - 0 - - - b"" - - - .OpcodeType - - - - - false - - - false - - ... - - - - false - - - false - - - .Set - - - .Set - - - - - requires ( VV0_n_114b9705:Int =/=K 0 - andBool ( 0 <=Int CALLER_ID:Int - andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( 0 <=Int NUMBER_CELL:Int - andBool ( 0 None: + test_with_version = f'{test}:0' proof_dict = {proof.id: proof for proof in prove_res} - proof = proof_dict[test] + proof = proof_dict[test_with_version] if not proof.passed: assert proof.failure_info is not None pytest.fail('\n'.join(proof.failure_info.print())) def assert_fail(test: str, prove_res: list[APRProof]) -> None: + test_with_version = f'{test}:0' proof_dict = {proof.id: proof for proof in prove_res} - proof = proof_dict[test] + proof = proof_dict[test_with_version] assert not proof.passed assert proof.failure_info is not None diff --git a/tests/foundry/lemmas.k b/tests/foundry/lemmas.k index 098f776a28..0aaebd541b 100644 --- a/tests/foundry/lemmas.k +++ b/tests/foundry/lemmas.k @@ -20,7 +20,7 @@ module SUM-TO-N-INVARIANT NORMAL - LONDON + SHANGHAI From 163f835585b07f64c994f6500cdeec5b0f88755f Mon Sep 17 00:00:00 2001 From: devops Date: Thu, 21 Sep 2023 00:37:08 +0000 Subject: [PATCH 32/44] Set Version: 1.0.300 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index ddfaaaeb51..9ad6ff907a 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.299" +version = "1.0.300" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index 1e62ca7792..d8b57e1431 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.299' +VERSION: Final = '1.0.300' diff --git a/package/version b/package/version index ea13f22270..f28324a86f 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.299 +1.0.300 From f41c9bba00c2e41cbddbc39e8ef198b4b52496bd Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Wed, 20 Sep 2023 20:15:20 -0500 Subject: [PATCH 33/44] Revert LoopsTest expected file --- .../show/LoopsTest.sum_N(uint256).expected | 5304 ++++++++++++++++- 1 file changed, 5213 insertions(+), 91 deletions(-) diff --git a/kevm-pyk/src/tests/integration/test-data/show/LoopsTest.sum_N(uint256).expected b/kevm-pyk/src/tests/integration/test-data/show/LoopsTest.sum_N(uint256).expected index 5e5ad959fb..496fd7086f 100644 --- a/kevm-pyk/src/tests/integration/test-data/show/LoopsTest.sum_N(uint256).expected +++ b/kevm-pyk/src/tests/integration/test-data/show/LoopsTest.sum_N(uint256).expected @@ -72,22 +72,176 @@ │ callDepth: 0 │ statusCode: STATUSCODE:StatusCode │ - │ (162 steps) + │ (1 step) ├─ 9 + │ k: JUMP 1569 ~> #pc [ JUMPI ] ~> #execute ~> CONTINUATION:K + │ pc: 1539 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (12 steps) + ├─ 11 + │ k: #access [ JUMPDEST , JUMPDEST ] ~> JUMPDEST ~> #pc [ JUMPDEST ] ~> #execute ~> C ... + │ pc: 1569 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (5 steps) + ├─ 13 + │ k: #execute ~> CONTINUATION:K + │ pc: 1571 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (2 steps) + ├─ 14 + │ k: #execute ~> CONTINUATION:K + │ pc: 1572 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (9 steps) + ├─ 15 + │ k: #access [ POP , POP 0 ] ~> POP 0 ~> #pc [ POP ] ~> #execute ~> CONTINUATION:K + │ pc: 1572 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (12 steps) + ├─ 16 + │ k: #access [ POP , POP 0 ] ~> POP 0 ~> #pc [ POP ] ~> #execute ~> CONTINUATION:K + │ pc: 1573 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (12 steps) + ├─ 17 + │ k: #access [ JUMP , JUMP 334 ] ~> JUMP 334 ~> #pc [ JUMP ] ~> #execute ~> CONTINUAT ... + │ pc: 1574 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (13 steps) + ├─ 18 + │ k: #access [ JUMPDEST , JUMPDEST ] ~> JUMPDEST ~> #pc [ JUMPDEST ] ~> #execute ~> C ... + │ pc: 334 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (5 steps) + ├─ 19 + │ k: #execute ~> CONTINUATION:K + │ pc: 337 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (12 steps) + ├─ 20 + │ k: #access [ MLOAD , MLOAD 64 ] ~> MLOAD 64 ~> #pc [ MLOAD ] ~> #execute ~> CONTINU ... + │ pc: 337 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (6 steps) + ├─ 21 + │ k: #execute ~> CONTINUATION:K + │ pc: 339 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (2 steps) + ├─ 22 + │ k: #execute ~> CONTINUATION:K + │ pc: 340 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (12 steps) + ├─ 23 + │ k: #access [ MSTORE , MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int + ... + │ pc: 340 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (5 steps) + ├─ 24 + │ k: #execute ~> CONTINUATION:K + │ pc: 343 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (2 steps) + ├─ 25 + │ k: #execute ~> CONTINUATION:K + │ pc: 344 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (9 steps) + ├─ 26 + │ k: #access [ JUMPDEST , JUMPDEST ] ~> JUMPDEST ~> #pc [ JUMPDEST ] ~> #execute ~> C ... + │ pc: 344 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (5 steps) + ├─ 27 + │ k: #execute ~> CONTINUATION:K + │ pc: 347 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (12 steps) + ├─ 28 + │ k: #access [ MLOAD , MLOAD 64 ] ~> MLOAD 64 ~> #pc [ MLOAD ] ~> #execute ~> CONTINU ... + │ pc: 347 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (6 steps) + ├─ 29 + │ k: #execute ~> CONTINUATION:K + │ pc: 349 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (2 steps) + ├─ 30 + │ k: #execute ~> CONTINUATION:K + │ pc: 350 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (2 steps) + ├─ 31 + │ k: #execute ~> CONTINUATION:K + │ pc: 351 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (2 steps) + ├─ 32 + │ k: #execute ~> CONTINUATION:K + │ pc: 352 + │ callDepth: 0 + │ statusCode: STATUSCODE:StatusCode + │ + │ (14 steps) + ├─ 33 │ k: #end EVMC_SUCCESS ~> #pc [ RETURN ] ~> #execute ~> CONTINUATION:K │ pc: 352 │ callDepth: 0 │ statusCode: STATUSCODE:StatusCode │ │ (1 step) - ├─ 11 + ├─ 34 │ k: #halt ~> #pc [ RETURN ] ~> #execute ~> CONTINUATION:K │ pc: 352 │ callDepth: 0 │ statusCode: EVMC_SUCCESS │ │ (2 steps) - ├─ 13 (terminal) + ├─ 35 (terminal) │ k: #halt ~> CONTINUATION:K │ pc: 352 │ callDepth: 0 @@ -962,9 +1116,8 @@ rule [BASIC-BLOCK-7-TO-9]: - ( JUMPI 1569 bool2Word ( VV0_n_114b9705:Int ==Int 0 ) - ~> #pc [ JUMPI ] => #end EVMC_SUCCESS - ~> #pc [ RETURN ] ) + ( JUMPI 1569 bool2Word ( VV0_n_114b9705:Int ==Int 0 ) => JUMP 1569 ) + ~> #pc [ JUMPI ] ~> #execute ~> _CONTINUATION @@ -977,7 +1130,7 @@ - ( b"" => #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) ) + b"" .List @@ -1001,10 +1154,10 @@ 0 - ( ( 0 => selector ( "sum_N(uint256)" ) ) : ( ( 0 : ( VV0_n_114b9705:Int : ( 334 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) => .WordStack ) ) + ( ( 0 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( 0 : ( ( VV0_n_114b9705:Int => 0 ) : ( 334 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) - ( b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" => b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" ) +Bytes ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) => #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) ) + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) ... ... @@ -1171,31 +1324,10 @@ )))))))))) ensures ( VV0_n_114b9705:Int =/=K 0 andBool ( 0 @@ -1412,8 +1544,10 @@ rule [BASIC-BLOCK-9-TO-11]: - ( #end EVMC_SUCCESS => #halt ) - ~> #pc [ RETURN ] + ( JUMP 1569 + ~> #pc [ JUMPI ] => #access [ JUMPDEST , JUMPDEST ] + ~> JUMPDEST + ~> #pc [ JUMPDEST ] ) ~> #execute ~> _CONTINUATION @@ -1426,11 +1560,8 @@ - #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) + b"" - - ( _STATUSCODE => EVMC_SUCCESS ) - .List @@ -1453,10 +1584,10 @@ 0 - ( selector ( "sum_N(uint256)" ) : .WordStack ) + ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) : ( 0 : ( 0 : ( 334 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) ... ... @@ -1620,32 +1751,12 @@ andBool ( ORIGIN_ID:Int @@ -1862,9 +1973,10 @@ rule [BASIC-BLOCK-11-TO-13]: - #halt - ~> ( #pc [ RETURN ] - ~> #execute => .K ) + ( #access [ JUMPDEST , JUMPDEST ] + ~> JUMPDEST + ~> #pc [ JUMPDEST ] => .K ) + ~> #execute ~> _CONTINUATION @@ -1876,11 +1988,8 @@ - #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) + b"" - - EVMC_SUCCESS - .List @@ -1903,10 +2012,10 @@ 0 - ( selector ( "sum_N(uint256)" ) : .WordStack ) + ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => 334 ) : ( 0 : ( 0 : ( ( 334 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) - b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) ... ... @@ -2070,33 +2179,5046 @@ andBool ( ORIGIN_ID:Int + + + #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 334 => 0 ) : ( 0 : ( ( 0 => 334 ) : ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( .K => #access [ POP , POP 0 ] + ~> POP 0 + ~> #pc [ POP ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( 0 : ( ( 0 => 334 ) : ( ( 334 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + #access [ POP , POP 0 ] + ~> POP 0 + ~> #pc [ POP ] + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 0 => 334 ) : ( ( 334 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( #access [ POP , POP 0 ] + ~> POP 0 + ~> #pc [ POP ] => #access [ JUMP , JUMP 334 ] + ~> JUMP 334 + ~> #pc [ JUMP ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 334 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( #access [ JUMP , JUMP 334 ] + ~> JUMP 334 + ~> #pc [ JUMP ] => #access [ JUMPDEST , JUMPDEST ] + ~> JUMPDEST + ~> #pc [ JUMPDEST ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( #access [ JUMPDEST , JUMPDEST ] + ~> JUMPDEST + ~> #pc [ JUMPDEST ] => .K ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => 64 ) : ( ( selector ( "sum_N(uint256)" ) => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( .K => #access [ MLOAD , MLOAD 64 ] + ~> MLOAD 64 + ~> #pc [ MLOAD ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 64 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( #access [ MLOAD , MLOAD 64 ] + ~> MLOAD 64 + ~> #pc [ MLOAD ] => .K ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) : ( ( selector ( "sum_N(uint256)" ) => 128 ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => 128 ) : ( ( 128 => ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) : ( ( selector ( "sum_N(uint256)" ) => 128 ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( .K => #access [ MSTORE , MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ] + ~> MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) + ~> #pc [ MSTORE ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( 128 : ( ( ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) => selector ( "sum_N(uint256)" ) ) : ( ( 128 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) => .WordStack ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" +Bytes #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( #access [ MSTORE , MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ] + ~> MSTORE 128 ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) + ~> #pc [ MSTORE ] => .K ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 128 => 32 ) : ( ( selector ( "sum_N(uint256)" ) => 128 ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) + + + ( b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Lc\xe5b" => b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" ) +Bytes ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) => #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 32 => 160 ) : ( ( 128 => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( .K => #access [ JUMPDEST , JUMPDEST ] + ~> JUMPDEST + ~> #pc [ JUMPDEST ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( 160 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( #access [ JUMPDEST , JUMPDEST ] + ~> JUMPDEST + ~> #pc [ JUMPDEST ] => .K ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 160 => 64 ) : ( ( selector ( "sum_N(uint256)" ) => 160 ) : ( .WordStack => ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( .K => #access [ MLOAD , MLOAD 64 ] + ~> MLOAD 64 + ~> #pc [ MLOAD ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 64 => 160 ) : ( ( 160 => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( #access [ MLOAD , MLOAD 64 ] + ~> MLOAD 64 + ~> #pc [ MLOAD ] => .K ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 160 => 128 ) : ( ( selector ( "sum_N(uint256)" ) => 128 ) : ( .WordStack => ( 160 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 128 => 160 ) : ( 128 : ( ( 160 => 128 ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 160 => 32 ) : ( 128 : ( ( 128 => selector ( "sum_N(uint256)" ) ) : ( ( selector ( "sum_N(uint256)" ) : .WordStack ) => .WordStack ) ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + b"" + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 32 => 128 ) : ( ( 128 => 32 ) : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( .K => #end EVMC_SUCCESS + ~> #pc [ RETURN ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + ( b"" => #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) ) + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( ( 128 => selector ( "sum_N(uint256)" ) ) : ( ( 32 : ( selector ( "sum_N(uint256)" ) : .WordStack ) ) => .WordStack ) ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + ( #end EVMC_SUCCESS => #halt ) + ~> #pc [ RETURN ] + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) + + + ( _STATUSCODE => EVMC_SUCCESS ) + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( selector ( "sum_N(uint256)" ) : .WordStack ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 + + + #halt + ~> ( #pc [ RETURN ] + ~> #execute => .K ) + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + + + #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) + + + EVMC_SUCCESS + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"~\x8e#\xd0" +Bytes #buf ( 32 , VV0_n_114b9705:Int ) + + + 0 + + + ( selector ( "sum_N(uint256)" ) : .WordStack ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" +Bytes #buf ( 32 , ( ( VV0_n_114b9705:Int *Int ( VV0_n_114b9705:Int +Int 1 ) ) /Int 2 ) ) +Bytes #range ( #buf ( 32 , bool2Word ( VV0_n_114b9705:Int <=Int 51816696836262767 ) ) , 28 , 4 ) + + ... + ... + + 6 + + + 9079256848778916870 + + + false + + + 0 + + + + + .List + + + SetItem ( 645326474426547203313410069153905908525362434349 ) + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( VV0_n_114b9705:Int =/=K 0 + andBool ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( 0 Date: Thu, 21 Sep 2023 10:22:36 -0500 Subject: [PATCH 34/44] Propogate generate_subproof_name to APRBMCProof constructor --- kevm-pyk/src/kontrolx/foundry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kevm-pyk/src/kontrolx/foundry.py b/kevm-pyk/src/kontrolx/foundry.py index a18fd92a60..1c150870ef 100644 --- a/kevm-pyk/src/kontrolx/foundry.py +++ b/kevm-pyk/src/kontrolx/foundry.py @@ -1279,6 +1279,7 @@ def _method_to_apr_proof( {}, bmc_depth, proof_dir=save_directory, + generate_subproof_name=generate_subproof_name, ) else: apr_proof = APRProof( From 42b298c2a49a2f663e24ffa5757d853bbfb025d2 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Thu, 21 Sep 2023 14:44:20 -0500 Subject: [PATCH 35/44] Update poetry lock --- kevm-pyk/poetry.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kevm-pyk/poetry.lock b/kevm-pyk/poetry.lock index fd99bdb506..3483c2c8c5 100644 --- a/kevm-pyk/poetry.lock +++ b/kevm-pyk/poetry.lock @@ -834,7 +834,7 @@ plugins = ["importlib-metadata"] [[package]] name = "pyk" -version = "0.1.446" +version = "0.1.448" description = "" category = "main" optional = false @@ -856,7 +856,7 @@ tomli = "^2.0.1" type = "git" url = "https://github.com/runtimeverification/pyk.git" reference = "noah/subproof-split" -resolved_reference = "0d95e58bcfa01b5f71109194225769dd97a36425" +resolved_reference = "78bfded5f6d80f3c256c43140efa643235e64c8f" [[package]] name = "pyperclip" @@ -1094,14 +1094,14 @@ files = [ [[package]] name = "xdg-base-dirs" -version = "6.0.0" +version = "6.0.1" description = "Variables defined by the XDG Base Directory Specification" category = "main" optional = false python-versions = ">=3.10,<4.0" files = [ - {file = "xdg_base_dirs-6.0.0-py3-none-any.whl", hash = "sha256:71b878d3b6c80923a8ddd7c4fb25f9f694c6796aa79214c3fe32dd49a13dcc82"}, - {file = "xdg_base_dirs-6.0.0.tar.gz", hash = "sha256:3bc8813e260a78acba2f718b48eb00b5ff82bd9f02688b54b9e4ccd8a65d42cc"}, + {file = "xdg_base_dirs-6.0.1-py3-none-any.whl", hash = "sha256:63f6ebc1721ced2e86c340856e004ef829501a30a37e17079c52cfaf0e1741b9"}, + {file = "xdg_base_dirs-6.0.1.tar.gz", hash = "sha256:b4c8f4ba72d1286018b25eea374ec6fbf4fddda3d4137edf50de95de53e195a6"}, ] [[package]] From 9cf86d89a52b22feaa26ba52b80cda72cc4b9b91 Mon Sep 17 00:00:00 2001 From: devops Date: Thu, 21 Sep 2023 20:18:11 +0000 Subject: [PATCH 36/44] Set Version: 1.0.302 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 8c5a3e5592..734b125e4f 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.301" +version = "1.0.302" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index e494927b83..3f728a5db9 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.301' +VERSION: Final = '1.0.302' diff --git a/package/version b/package/version index 3eb733d4c5..9667f83861 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.301 +1.0.302 From 440a553dd35f21fa71e3653e9d23bc1eeae06523 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Thu, 21 Sep 2023 17:31:58 -0500 Subject: [PATCH 37/44] Change test selection to use exact match --- kevm-pyk/src/kontrolx/foundry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kevm-pyk/src/kontrolx/foundry.py b/kevm-pyk/src/kontrolx/foundry.py index 1c150870ef..dc0f2ab6fa 100644 --- a/kevm-pyk/src/kontrolx/foundry.py +++ b/kevm-pyk/src/kontrolx/foundry.py @@ -384,7 +384,7 @@ def proofs_with_test(self, test: str) -> list[Proof]: proofs = [ self.get_optional_proof(pid) for pid in listdir(self.proofs_dir) - if re.search(single(self._escape_brackets([test])), pid.split(':')[0]) + if test == pid.split(':')[0] ] return [proof for proof in proofs if proof is not None] From 5b738a0cac1b25bc8882e4d1039836fa548a9641 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Thu, 21 Sep 2023 18:34:26 -0500 Subject: [PATCH 38/44] Try adding --subproof argument for selecting which subproof to use (including nested) --- kevm-pyk/src/kevm_pyk/cli.py | 11 +++ kevm-pyk/src/kontrolx/__main__.py | 36 ++++++-- kevm-pyk/src/kontrolx/foundry.py | 84 ++++++++++++------- .../tests/integration/test_foundry_prove.py | 9 +- 4 files changed, 97 insertions(+), 43 deletions(-) diff --git a/kevm-pyk/src/kevm_pyk/cli.py b/kevm-pyk/src/kevm_pyk/cli.py index 9dca17a01d..003b8bfdba 100644 --- a/kevm-pyk/src/kevm_pyk/cli.py +++ b/kevm-pyk/src/kevm_pyk/cli.py @@ -34,6 +34,10 @@ def node_id_like(s: str) -> NodeIdLike: return s +def _parse_subproof_path(value: str) -> list[int]: + return [int(node_id) for node_id in value.split(',')] + + class KEVMCLIArgs(KCLIArgs): @cached_property def target_args(self) -> ArgumentParser: @@ -168,6 +172,13 @@ def foundry_test_args(self) -> ArgumentParser: args = ArgumentParser(add_help=False) args.add_argument('test', type=str, help='Test to run') args.add_argument('--version', type=int, default=None, required=False, help='Version of the test to use') + args.add_argument( + '--subproof', + type=_parse_subproof_path, + default=None, + required=False, + help='Comma separated list of nodes to look up subproofs. --subproof 3,2,5 will look up ContractName.testName()_node_3_node_2_node_5.', + ) return args @cached_property diff --git a/kevm-pyk/src/kontrolx/__main__.py b/kevm-pyk/src/kontrolx/__main__.py index 0c05f142ac..8731afaa4d 100644 --- a/kevm-pyk/src/kontrolx/__main__.py +++ b/kevm-pyk/src/kontrolx/__main__.py @@ -230,6 +230,7 @@ def exec_foundry_show( failing: bool = False, failure_info: bool = False, counterexample_info: bool = False, + subproof_path: list[int] | None = None, **kwargs: Any, ) -> None: output = foundry_show( @@ -246,12 +247,15 @@ def exec_foundry_show( failing=failing, failure_info=failure_info, counterexample_info=counterexample_info, + subproof_path=subproof_path, ) print(output) -def exec_foundry_to_dot(foundry_root: Path, test: str, version: int | None, **kwargs: Any) -> None: - foundry_to_dot(foundry_root=foundry_root, test=test, version=version) +def exec_foundry_to_dot( + foundry_root: Path, test: str, version: int | None, subproof_path: list[int] | None = None, **kwargs: Any +) -> None: + foundry_to_dot(foundry_root=foundry_root, test=test, version=version, subproof_path=subproof_path) def exec_foundry_list(foundry_root: Path, **kwargs: Any) -> None: @@ -259,9 +263,11 @@ def exec_foundry_list(foundry_root: Path, **kwargs: Any) -> None: print('\n'.join(stats)) -def exec_foundry_view_kcfg(foundry_root: Path, test: str, version: int | None, **kwargs: Any) -> None: +def exec_foundry_view_kcfg( + foundry_root: Path, test: str, version: int | None, subproof_path: list[int] | None = None, **kwargs: Any +) -> None: foundry = Foundry(foundry_root) - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) contract_name, _ = test_id.split('.') proof = foundry.get_apr_proof(test_id) @@ -277,9 +283,14 @@ def _custom_view(elem: KCFGElem) -> Iterable[str]: def exec_foundry_remove_node( - foundry_root: Path, test: str, node: NodeIdLike, version: int | None, **kwargs: Any + foundry_root: Path, + test: str, + node: NodeIdLike, + version: int | None, + subproof_path: list[int] | None = None, + **kwargs: Any, ) -> None: - foundry_remove_node(foundry_root=foundry_root, test=test, version=version, node=node) + foundry_remove_node(foundry_root=foundry_root, test=test, version=version, node=node, subproof_path=subproof_path) def exec_foundry_simplify_node( @@ -294,6 +305,7 @@ def exec_foundry_simplify_node( smt_timeout: int | None = None, smt_retry_limit: int | None = None, trace_rewrites: bool = False, + subproof_path: list[int] | None = None, **kwargs: Any, ) -> None: if smt_timeout is None: @@ -313,6 +325,7 @@ def exec_foundry_simplify_node( smt_timeout=smt_timeout, smt_retry_limit=smt_retry_limit, trace_rewrites=trace_rewrites, + subproof_path=subproof_path, ) print(f'Simplified:\n{pretty_term}') @@ -328,6 +341,7 @@ def exec_foundry_step_node( smt_timeout: int | None = None, smt_retry_limit: int | None = None, trace_rewrites: bool = False, + subproof_path: list[int] | None = None, **kwargs: Any, ) -> None: if smt_timeout is None: @@ -346,6 +360,7 @@ def exec_foundry_step_node( smt_timeout=smt_timeout, smt_retry_limit=smt_retry_limit, trace_rewrites=trace_rewrites, + subproof_path=subproof_path, ) @@ -354,9 +369,12 @@ def exec_foundry_merge_nodes( test: str, version: int | None, nodes: Iterable[NodeIdLike], + subproof_path: list[int] | None = None, **kwargs: Any, ) -> None: - foundry_merge_nodes(foundry_root=foundry_root, node_ids=nodes, test=test, version=version) + foundry_merge_nodes( + foundry_root=foundry_root, node_ids=nodes, test=test, version=version, subproof_path=subproof_path + ) def exec_foundry_section_edge( @@ -370,6 +388,7 @@ def exec_foundry_section_edge( smt_timeout: int | None = None, smt_retry_limit: int | None = None, trace_rewrites: bool = False, + subproof_path: list[int] | None = None, **kwargs: Any, ) -> None: if smt_timeout is None: @@ -388,6 +407,7 @@ def exec_foundry_section_edge( smt_timeout=smt_timeout, smt_retry_limit=smt_retry_limit, trace_rewrites=trace_rewrites, + subproof_path=subproof_path, ) @@ -398,6 +418,7 @@ def exec_foundry_get_model( nodes: Iterable[NodeIdLike] = (), pending: bool = False, failing: bool = False, + subproof_path: list[int] | None = None, **kwargs: Any, ) -> None: output = foundry_get_model( @@ -407,6 +428,7 @@ def exec_foundry_get_model( nodes=nodes, pending=pending, failing=failing, + subproof_path=subproof_path, ) print(output) diff --git a/kevm-pyk/src/kontrolx/foundry.py b/kevm-pyk/src/kontrolx/foundry.py index dc0f2ab6fa..bcdc7157a2 100644 --- a/kevm-pyk/src/kontrolx/foundry.py +++ b/kevm-pyk/src/kontrolx/foundry.py @@ -304,22 +304,24 @@ def unique_sig(self, test: str) -> tuple[str, str]: test_sig = self.matching_sig(test).split('.')[1] return (contract_name, test_sig) - def get_test_id(self, test: str, id: int | None) -> str: - matching_proofs = self.proofs_with_test(test) - if not matching_proofs: - raise ValueError(f'Found no matching proofs for {test}.') - if id is None: - if len(matching_proofs) > 1: - raise ValueError( - f'Found {len(matching_proofs)} matching proofs for {test}. Use the --version flag to choose one.' - ) - test_id = single(matching_proofs).id - return test_id - else: - for proof in matching_proofs: - if proof.id.endswith(str(id)): - return proof.id - raise ValueError('No proof matching this predicate.') + def get_test_id(self, test: str, id: int | None, subproof_path: list[int] | None = None) -> str: + proof = self.proof_by_test_and_subproof_path(test, subproof_path=subproof_path) + return proof.id + + # if not matching_proofs: + # raise ValueError(f'Found no matching proofs for {test}.') + # if id is None: + # if len(matching_proofs) > 1: + # raise ValueError( + # f'Found {len(matching_proofs)} matching proofs for {test}. Use the --version flag to choose one.' + # ) + # test_id = single(matching_proofs).id + # return test_id + # else: + # for proof in matching_proofs: + # if proof.id.endswith(str(id)): + # return proof.id + # raise ValueError('No proof matching this predicate.') @staticmethod def success(s: KInner, dst: KInner, r: KInner, c: KInner, e1: KInner, e2: KInner) -> KApply: @@ -381,13 +383,23 @@ def help_info() -> list[str]: return res_lines def proofs_with_test(self, test: str) -> list[Proof]: - proofs = [ - self.get_optional_proof(pid) - for pid in listdir(self.proofs_dir) - if test == pid.split(':')[0] - ] + proofs = [self.get_optional_proof(pid) for pid in listdir(self.proofs_dir) if test == pid.split(':')[0]] return [proof for proof in proofs if proof is not None] + def proof_by_test_and_subproof_path(self, test: str, subproof_path: list[int] | None = None) -> Proof: + proofs = self.proofs_with_test(test) + suffix = '' + if subproof_path is None: + return single(proofs) + for node_id in subproof_path: + suffix += f'_node_{node_id}' + proofs = [proof for proof in proofs if proof.id.endswith(suffix)] + if len(proofs) > 1: + raise ValueError( + 'Given test {test} and subproof_path {subproof_path}, found more than one matching proof: {proofs}' + ) + return single(proofs) + def get_apr_proof(self, test_id: str) -> APRProof: proof = Proof.read_proof_data(self.proofs_dir, test_id) if not isinstance(proof, APRProof): @@ -880,10 +892,11 @@ def foundry_show( smt_timeout: int | None = None, smt_retry_limit: int | None = None, port: int | None = None, + subproof_path: list[int] | None = None, ) -> str: contract_name, _ = test.split('.') foundry = Foundry(foundry_root) - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) proof = foundry.get_apr_proof(test_id) if pending: @@ -931,10 +944,12 @@ def foundry_show( return '\n'.join(res_lines) -def foundry_to_dot(foundry_root: Path, test: str, version: int | None = None) -> None: +def foundry_to_dot( + foundry_root: Path, test: str, version: int | None = None, subproof_path: list[int] | None = None +) -> None: foundry = Foundry(foundry_root) dump_dir = foundry.proofs_dir / 'dump' - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) contract_name, _ = test.split('.') proof = foundry.get_apr_proof(test_id) @@ -966,9 +981,11 @@ def foundry_list(foundry_root: Path) -> list[str]: return lines -def foundry_remove_node(foundry_root: Path, test: str, node: NodeIdLike, version: int | None = None) -> None: +def foundry_remove_node( + foundry_root: Path, test: str, node: NodeIdLike, version: int | None = None, subproof_path: list[int] | None = None +) -> None: foundry = Foundry(foundry_root) - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) apr_proof = foundry.get_apr_proof(test_id) node_ids = apr_proof.prune(node) _LOGGER.info(f'Pruned nodes: {node_ids}') @@ -988,9 +1005,10 @@ def foundry_simplify_node( smt_retry_limit: int | None = None, trace_rewrites: bool = False, port: int | None = None, + subproof_path: list[int] | None = None, ) -> str: foundry = Foundry(foundry_root, bug_report=bug_report) - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) apr_proof = foundry.get_apr_proof(test_id) cterm = apr_proof.kcfg.node(node).cterm start_server = port is None @@ -1021,6 +1039,7 @@ def foundry_merge_nodes( version: int | None = None, bug_report: BugReport | None = None, include_disjunct: bool = False, + subproof_path: list[int] | None = None, ) -> None: def check_cells_equal(cell: str, nodes: Iterable[KCFG.Node]) -> bool: nodes = list(nodes) @@ -1035,7 +1054,7 @@ def check_cells_equal(cell: str, nodes: Iterable[KCFG.Node]) -> bool: return True foundry = Foundry(foundry_root, bug_report=bug_report) - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) apr_proof = foundry.get_apr_proof(test_id) if len(list(node_ids)) < 2: @@ -1072,6 +1091,7 @@ def foundry_step_node( smt_retry_limit: int | None = None, trace_rewrites: bool = False, port: int | None = None, + subproof_path: list[int] | None = None, ) -> None: if repeat < 1: raise ValueError(f'Expected positive value for --repeat, got: {repeat}') @@ -1079,7 +1099,7 @@ def foundry_step_node( raise ValueError(f'Expected positive value for --depth, got: {depth}') foundry = Foundry(foundry_root, bug_report=bug_report) - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) apr_proof = foundry.get_apr_proof(test_id) start_server = port is None @@ -1111,9 +1131,10 @@ def foundry_section_edge( smt_retry_limit: int | None = None, trace_rewrites: bool = False, port: int | None = None, + subproof_path: list[int] | None = None, ) -> None: foundry = Foundry(foundry_root, bug_report=bug_report) - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) apr_proof = foundry.get_apr_proof(test_id) source_id, target_id = edge start_server = port is None @@ -1143,9 +1164,10 @@ def foundry_get_model( pending: bool = False, failing: bool = False, port: int | None = None, + subproof_path: list[int] | None = None, ) -> str: foundry = Foundry(foundry_root) - test_id = foundry.get_test_id(test, version) + test_id = foundry.get_test_id(test, version, subproof_path=subproof_path) proof = foundry.get_apr_proof(test_id) if not nodes: diff --git a/kevm-pyk/src/tests/integration/test_foundry_prove.py b/kevm-pyk/src/tests/integration/test_foundry_prove.py index ee97084aab..104dd69ff8 100644 --- a/kevm-pyk/src/tests/integration/test_foundry_prove.py +++ b/kevm-pyk/src/tests/integration/test_foundry_prove.py @@ -7,7 +7,7 @@ from filelock import FileLock from pyk.kore.rpc import kore_server from pyk.proof import APRProof -from pyk.utils import run_process, single +from pyk.utils import run_process from kontrolx.foundry import ( Foundry, @@ -256,9 +256,8 @@ def test_foundry_merge_nodes(foundry_root: Path, bug_report: BugReport | None, s def check_pending(foundry_root: Path, test: str, pending: list[int]) -> None: foundry = Foundry(foundry_root) - proofs = foundry.proofs_with_test(test) - apr_proofs: list[APRProof] = [proof for proof in proofs if type(proof) is APRProof] - proof = single(apr_proofs) + proof = foundry.proof_by_test_and_subproof_path(test) + assert isinstance(proof, APRProof) assert [node.id for node in proof.pending] == pending @@ -319,7 +318,7 @@ def test_foundry_remove_node( node=4, ) - proof = single(foundry.proofs_with_test(test)) + proof = foundry.proof_by_test_and_subproof_path(test) assert type(proof) is APRProof assert proof.is_proof_pending From 830576e62f4c99d5c55cba0e5ac830171df1b037 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 22 Sep 2023 14:17:45 -0500 Subject: [PATCH 39/44] Fix subproof path selection --- kevm-pyk/src/kevm_pyk/cli.py | 3 + kevm-pyk/src/kontrolx/foundry.py | 58 +++++++------------ .../tests/integration/test_foundry_prove.py | 4 +- 3 files changed, 27 insertions(+), 38 deletions(-) diff --git a/kevm-pyk/src/kevm_pyk/cli.py b/kevm-pyk/src/kevm_pyk/cli.py index 003b8bfdba..815e1082f7 100644 --- a/kevm-pyk/src/kevm_pyk/cli.py +++ b/kevm-pyk/src/kevm_pyk/cli.py @@ -35,6 +35,8 @@ def node_id_like(s: str) -> NodeIdLike: def _parse_subproof_path(value: str) -> list[int]: + if ',' not in value: + return [int(value)] return [int(node_id) for node_id in value.split(',')] @@ -177,6 +179,7 @@ def foundry_test_args(self) -> ArgumentParser: type=_parse_subproof_path, default=None, required=False, + dest='subproof_path', help='Comma separated list of nodes to look up subproofs. --subproof 3,2,5 will look up ContractName.testName()_node_3_node_2_node_5.', ) return args diff --git a/kevm-pyk/src/kontrolx/foundry.py b/kevm-pyk/src/kontrolx/foundry.py index bcdc7157a2..f444dbdc86 100644 --- a/kevm-pyk/src/kontrolx/foundry.py +++ b/kevm-pyk/src/kontrolx/foundry.py @@ -304,24 +304,28 @@ def unique_sig(self, test: str) -> tuple[str, str]: test_sig = self.matching_sig(test).split('.')[1] return (contract_name, test_sig) - def get_test_id(self, test: str, id: int | None, subproof_path: list[int] | None = None) -> str: - proof = self.proof_by_test_and_subproof_path(test, subproof_path=subproof_path) - return proof.id - - # if not matching_proofs: - # raise ValueError(f'Found no matching proofs for {test}.') - # if id is None: - # if len(matching_proofs) > 1: - # raise ValueError( - # f'Found {len(matching_proofs)} matching proofs for {test}. Use the --version flag to choose one.' - # ) - # test_id = single(matching_proofs).id - # return test_id - # else: - # for proof in matching_proofs: - # if proof.id.endswith(str(id)): - # return proof.id - # raise ValueError('No proof matching this predicate.') + def get_test_id(self, test: str, version: int | None = None, subproof_path: list[int] | None = None) -> str: + proof_id = test + if subproof_path: + suffix = '' + for node_id in subproof_path: + suffix += f'_node_{node_id}' + proof_id += suffix + + if version: + proof_id += f':{version}' + else: + proof_id += f':{self.latest_proof_version(proof_id)}' + + matching_proofs = [pid for pid in listdir(self.proofs_dir) if pid == proof_id] + + if len(matching_proofs) == 0: + raise ValueError(f'Found no matching proofs for {test}.') + + if len(matching_proofs) > 1: + raise ValueError(f'Found {len(matching_proofs)} matching proofs for {test}: {matching_proofs}') + + return single(matching_proofs) @staticmethod def success(s: KInner, dst: KInner, r: KInner, c: KInner, e1: KInner, e2: KInner) -> KApply: @@ -382,24 +386,6 @@ def help_info() -> list[str]: ) return res_lines - def proofs_with_test(self, test: str) -> list[Proof]: - proofs = [self.get_optional_proof(pid) for pid in listdir(self.proofs_dir) if test == pid.split(':')[0]] - return [proof for proof in proofs if proof is not None] - - def proof_by_test_and_subproof_path(self, test: str, subproof_path: list[int] | None = None) -> Proof: - proofs = self.proofs_with_test(test) - suffix = '' - if subproof_path is None: - return single(proofs) - for node_id in subproof_path: - suffix += f'_node_{node_id}' - proofs = [proof for proof in proofs if proof.id.endswith(suffix)] - if len(proofs) > 1: - raise ValueError( - 'Given test {test} and subproof_path {subproof_path}, found more than one matching proof: {proofs}' - ) - return single(proofs) - def get_apr_proof(self, test_id: str) -> APRProof: proof = Proof.read_proof_data(self.proofs_dir, test_id) if not isinstance(proof, APRProof): diff --git a/kevm-pyk/src/tests/integration/test_foundry_prove.py b/kevm-pyk/src/tests/integration/test_foundry_prove.py index 104dd69ff8..444808033e 100644 --- a/kevm-pyk/src/tests/integration/test_foundry_prove.py +++ b/kevm-pyk/src/tests/integration/test_foundry_prove.py @@ -256,7 +256,7 @@ def test_foundry_merge_nodes(foundry_root: Path, bug_report: BugReport | None, s def check_pending(foundry_root: Path, test: str, pending: list[int]) -> None: foundry = Foundry(foundry_root) - proof = foundry.proof_by_test_and_subproof_path(test) + proof = foundry.get_apr_proof(foundry.get_test_id(test)) assert isinstance(proof, APRProof) assert [node.id for node in proof.pending] == pending @@ -318,7 +318,7 @@ def test_foundry_remove_node( node=4, ) - proof = foundry.proof_by_test_and_subproof_path(test) + proof = foundry.get_apr_proof(foundry.get_test_id(test)) assert type(proof) is APRProof assert proof.is_proof_pending From f56acab714fa0c98504b1c95e360619d838e5d51 Mon Sep 17 00:00:00 2001 From: devops Date: Fri, 22 Sep 2023 19:18:09 +0000 Subject: [PATCH 40/44] Set Version: 1.0.303 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 734b125e4f..4451b26091 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.302" +version = "1.0.303" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index 3f728a5db9..ef4ed549fe 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.302' +VERSION: Final = '1.0.303' diff --git a/package/version b/package/version index 9667f83861..da86f30c3b 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.302 +1.0.303 From 921541b791164fe55ef283282d16fdb7fbc9ee50 Mon Sep 17 00:00:00 2001 From: devops Date: Fri, 22 Sep 2023 21:57:46 +0000 Subject: [PATCH 41/44] Set Version: 1.0.304 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 4451b26091..3fbaeed0af 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.303" +version = "1.0.304" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index ef4ed549fe..83b038eb13 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.303' +VERSION: Final = '1.0.304' diff --git a/package/version b/package/version index da86f30c3b..337b234bea 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.303 +1.0.304 From 0881fb73bc789f9873a607804f8f313e80864814 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Mon, 25 Sep 2023 11:20:58 -0500 Subject: [PATCH 42/44] Update poetry.lock --- kevm-pyk/poetry.lock | 79 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 71 insertions(+), 8 deletions(-) diff --git a/kevm-pyk/poetry.lock b/kevm-pyk/poetry.lock index fbb256706f..7579dea745 100644 --- a/kevm-pyk/poetry.lock +++ b/kevm-pyk/poetry.lock @@ -1,9 +1,10 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. [[package]] name = "attrs" version = "23.1.0" description = "Classes Without Boilerplate" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -22,6 +23,7 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte name = "autoflake" version = "2.2.1" description = "Removes unused imports and unused variables" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -37,6 +39,7 @@ tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} name = "black" version = "23.9.1" description = "The uncompromising code formatter." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -83,6 +86,7 @@ uvloop = ["uvloop (>=0.15.2)"] name = "classify-imports" version = "4.2.0" description = "Utilities for refactoring imports in python-like syntax." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -94,6 +98,7 @@ files = [ name = "click" version = "8.1.7" description = "Composable command line interface toolkit" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -108,6 +113,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "cmd2" version = "2.4.3" description = "cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -130,6 +136,7 @@ validate = ["flake8", "mypy", "types-pkg-resources"] name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." +category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -141,6 +148,7 @@ files = [ name = "coloredlogs" version = "15.0.1" description = "Colored terminal output for Python's logging module" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -158,6 +166,7 @@ cron = ["capturer (>=2.4)"] name = "coverage" version = "7.3.1" description = "Code coverage measurement for Python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -225,6 +234,7 @@ toml = ["tomli"] name = "dill" version = "0.3.7" description = "serialize all of Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -239,6 +249,7 @@ graph = ["objgraph (>=1.7.2)"] name = "exceptiongroup" version = "1.1.3" description = "Backport of PEP 654 (exception groups)" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -253,6 +264,7 @@ test = ["pytest (>=6)"] name = "execnet" version = "2.0.2" description = "execnet: rapid multi-Python deployment" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -267,6 +279,7 @@ testing = ["hatch", "pre-commit", "pytest", "tox"] name = "filelock" version = "3.12.4" description = "A platform independent file lock." +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -283,6 +296,7 @@ typing = ["typing-extensions (>=4.7.1)"] name = "flake8" version = "6.1.0" description = "the modular source code checker: pep8 pyflakes and co" +category = "dev" optional = false python-versions = ">=3.8.1" files = [ @@ -299,6 +313,7 @@ pyflakes = ">=3.1.0,<3.2.0" name = "flake8-bugbear" version = "23.9.16" description = "A plugin for flake8 finding likely bugs and design problems in your program. Contains warnings that don't belong in pyflakes and pycodestyle." +category = "dev" optional = false python-versions = ">=3.8.1" files = [ @@ -317,6 +332,7 @@ dev = ["coverage", "hypothesis", "hypothesmith (>=0.2)", "pre-commit", "pytest", name = "flake8-comprehensions" version = "3.14.0" description = "A flake8 plugin to help you write better list/set/dict comprehensions." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -331,6 +347,7 @@ flake8 = ">=3.0,<3.2.0 || >3.2.0" name = "flake8-quotes" version = "3.3.2" description = "Flake8 lint for quotes." +category = "dev" optional = false python-versions = "*" files = [ @@ -344,6 +361,7 @@ flake8 = "*" name = "flake8-type-checking" version = "2.4.1" description = "A flake8 plugin for managing type-checking imports & forward references" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -359,6 +377,7 @@ flake8 = "*" name = "graphviz" version = "0.20.1" description = "Simple Python interface for Graphviz" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -375,6 +394,7 @@ test = ["coverage", "mock (>=4)", "pytest (>=7)", "pytest-cov", "pytest-mock (>= name = "humanfriendly" version = "10.0" description = "Human friendly output for text interfaces using Python" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -389,6 +409,7 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve name = "importlib-metadata" version = "6.8.0" description = "Read metadata from Python packages" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -408,6 +429,7 @@ testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -419,6 +441,7 @@ files = [ name = "isort" version = "5.12.0" description = "A Python utility / library to sort Python imports." +category = "dev" optional = false python-versions = ">=3.8.0" files = [ @@ -436,6 +459,7 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "linkify-it-py" version = "2.0.2" description = "Links recognition library with FULL unicode support." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -456,6 +480,7 @@ test = ["coverage", "pytest", "pytest-cov"] name = "markdown-it-py" version = "2.2.0" description = "Python port of markdown-it. Markdown parsing, done right!" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -482,6 +507,7 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] name = "mccabe" version = "0.7.0" description = "McCabe checker, plugin for flake8" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -493,6 +519,7 @@ files = [ name = "mdit-py-plugins" version = "0.4.0" description = "Collection of plugins for markdown-it-py" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -512,6 +539,7 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] name = "mdurl" version = "0.1.2" description = "Markdown URL utilities" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -523,6 +551,7 @@ files = [ name = "multiprocess" version = "0.70.15" description = "better multiprocessing and multithreading in Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -551,6 +580,7 @@ dill = ">=0.3.7" name = "mypy" version = "1.5.1" description = "Optional static typing for Python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -597,6 +627,7 @@ reports = ["lxml"] name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." +category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -608,6 +639,7 @@ files = [ name = "packaging" version = "23.1" description = "Core utilities for Python packages" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -619,6 +651,7 @@ files = [ name = "pathos" version = "0.3.1" description = "parallel graph management and execution in heterogeneous computing" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -636,6 +669,7 @@ ppft = ">=1.7.6.7" name = "pathspec" version = "0.11.2" description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -647,6 +681,7 @@ files = [ name = "pep8-naming" version = "0.13.3" description = "Check PEP-8 naming conventions, plugin for flake8" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -661,6 +696,7 @@ flake8 = ">=5.0.0" name = "platformdirs" version = "3.10.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -676,6 +712,7 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-co name = "pluggy" version = "1.3.0" description = "plugin and hook calling mechanisms for python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -691,6 +728,7 @@ testing = ["pytest", "pytest-benchmark"] name = "pox" version = "0.3.3" description = "utilities for filesystem exploration and automated builds" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -702,6 +740,7 @@ files = [ name = "ppft" version = "1.7.6.7" description = "distributed and parallel Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -716,6 +755,7 @@ dill = ["dill (>=0.3.7)"] name = "psutil" version = "5.9.5" description = "Cross-platform lib for process and system monitoring in Python." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -742,6 +782,7 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] name = "pybind11" version = "2.11.1" description = "Seamless operability between C++11 and Python" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -756,6 +797,7 @@ global = ["pybind11-global (==2.11.1)"] name = "pycodestyle" version = "2.11.0" description = "Python style guide checker" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -767,6 +809,7 @@ files = [ name = "pyflakes" version = "3.1.0" description = "passive checker of Python programs" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -778,6 +821,7 @@ files = [ name = "pygments" version = "2.16.1" description = "Pygments is a syntax highlighting package written in Python." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -790,8 +834,9 @@ plugins = ["importlib-metadata"] [[package]] name = "pyk" -version = "0.1.447" +version = "0.1.448" description = "" +category = "main" optional = false python-versions = "^3.10" files = [] @@ -810,13 +855,14 @@ tomli = "^2.0.1" [package.source] type = "git" url = "https://github.com/runtimeverification/pyk.git" -reference = "v0.1.447" -resolved_reference = "abed8298b54de758d33494d1b802a8869c728554" +reference = "noah/subproof-split" +resolved_reference = "a31554754f169b2cc6fb667e74e1a54c33c9048a" [[package]] name = "pyperclip" version = "1.8.2" description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" +category = "main" optional = false python-versions = "*" files = [ @@ -827,6 +873,7 @@ files = [ name = "pyreadline3" version = "3.4.1" description = "A python implementation of GNU readline." +category = "main" optional = false python-versions = "*" files = [ @@ -838,6 +885,7 @@ files = [ name = "pytest" version = "7.4.2" description = "pytest: simple powerful testing with Python" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -860,6 +908,7 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no name = "pytest-cov" version = "4.1.0" description = "Pytest plugin for measuring coverage." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -878,6 +927,7 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-mock" version = "3.11.1" description = "Thin-wrapper around the mock package for easier use with pytest" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -895,6 +945,7 @@ dev = ["pre-commit", "pytest-asyncio", "tox"] name = "pytest-timeout" version = "2.1.0" description = "pytest plugin to abort hanging tests" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -909,6 +960,7 @@ pytest = ">=5.0.0" name = "pytest-xdist" version = "3.3.1" description = "pytest xdist plugin for distributed testing, most importantly across multiple CPUs" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -927,13 +979,14 @@ testing = ["filelock"] [[package]] name = "pyupgrade" -version = "3.12.0" +version = "3.13.0" description = "A tool to automatically upgrade syntax for newer versions." +category = "dev" optional = false python-versions = ">=3.8.1" files = [ - {file = "pyupgrade-3.12.0-py2.py3-none-any.whl", hash = "sha256:c6f9c129560b9538e75b93fb0aee20508faae454714e8373d462e408985bd96a"}, - {file = "pyupgrade-3.12.0.tar.gz", hash = "sha256:defc292ffaf402942b8fccaa97491964063e343fc1993230e44890b971dc1234"}, + {file = "pyupgrade-3.13.0-py2.py3-none-any.whl", hash = "sha256:8add43ca1fea6eaeb6815b0b987d1f6ff49ec48085169b2a32e9a797e2d2f8fd"}, + {file = "pyupgrade-3.13.0.tar.gz", hash = "sha256:92220ef0408ff5898bce8ce7845c33bf7bb79c8ff852c5a1dc4305e6333cd60b"}, ] [package.dependencies] @@ -943,6 +996,7 @@ tokenize-rt = ">=5.2.0" name = "rich" version = "13.5.3" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +category = "main" optional = false python-versions = ">=3.7.0" files = [ @@ -961,6 +1015,7 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"] name = "textual" version = "0.27.0" description = "Modern Text User Interface framework" +category = "main" optional = false python-versions = ">=3.7,<4.0" files = [ @@ -981,6 +1036,7 @@ dev = ["aiohttp (>=3.8.1)", "click (>=8.1.2)", "msgpack (>=1.0.3)"] name = "tokenize-rt" version = "5.2.0" description = "A wrapper around the stdlib `tokenize` which roundtrips." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -992,6 +1048,7 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1003,6 +1060,7 @@ files = [ name = "tomlkit" version = "0.11.8" description = "Style preserving TOML library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1014,6 +1072,7 @@ files = [ name = "typing-extensions" version = "4.8.0" description = "Backported and Experimental Type Hints for Python 3.8+" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -1025,6 +1084,7 @@ files = [ name = "uc-micro-py" version = "1.0.2" description = "Micro subset of unicode data files for linkify-it-py projects." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1039,6 +1099,7 @@ test = ["coverage", "pytest", "pytest-cov"] name = "wcwidth" version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" +category = "main" optional = false python-versions = "*" files = [ @@ -1050,6 +1111,7 @@ files = [ name = "xdg-base-dirs" version = "6.0.1" description = "Variables defined by the XDG Base Directory Specification" +category = "main" optional = false python-versions = ">=3.10,<4.0" files = [ @@ -1061,6 +1123,7 @@ files = [ name = "zipp" version = "3.17.0" description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -1075,4 +1138,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "5c198aab6e1f8f04c6bab2d2f4c97cc629d31e2dacaa5e38b58f10b9a63959ac" +content-hash = "ccb91da97a2679a6935e754e2aa4f77ed57afa7ee8a5372ee7909206e8a5b524" From 4abac5423019b4a13d2db5a1b696eaf2315a80c9 Mon Sep 17 00:00:00 2001 From: devops Date: Mon, 25 Sep 2023 16:21:17 +0000 Subject: [PATCH 43/44] Set Version: 1.0.305 --- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 3fbaeed0af..83ea66d47f 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kevm-pyk" -version = "1.0.304" +version = "1.0.305" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index 83b038eb13..2d1849c21c 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.304' +VERSION: Final = '1.0.305' diff --git a/package/version b/package/version index 337b234bea..ef6675fd8e 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.304 +1.0.305 From 39596fcb19f50e41221b8b5c38f81625f095d448 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Mon, 25 Sep 2023 12:55:03 -0500 Subject: [PATCH 44/44] Update flake.nix to use branch --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index a7a0d1a09f..a6b71561ff 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ ethereum-legacytests.url = "github:ethereum/legacytests/d7abc42a7b352a7b44b1f66b58aca54e4af6a9d7"; ethereum-legacytests.flake = false; haskell-backend.follows = "k-framework/haskell-backend"; - pyk.url = "github:runtimeverification/pyk/v0.1.447"; + pyk.url = "github:runtimeverification/pyk/noah/subproof-split"; pyk.inputs.flake-utils.follows = "k-framework/flake-utils"; pyk.inputs.nixpkgs.follows = "k-framework/nixpkgs"; foundry.url = "github:shazow/foundry.nix/monthly"; # Use monthly branch for permanent releases